Skip to main content
Scientific Reports logoLink to Scientific Reports
. 2018 Sep 6;8:13355. doi: 10.1038/s41598-018-31688-9

SeesawPred: A Web Application for Predicting Cell-fate Determinants in Cell Differentiation

András Hartmann 1, Satoshi Okawa 1, Gaia Zaffaroni 1, Antonio del Sol 1,2,
PMCID: PMC6127256  PMID: 30190516

Abstract

Cellular differentiation is a complex process where a less specialized cell evolves into a more specialized cell. Despite the increasing research effort, identification of cell-fate determinants (transcription factors (TFs) determining cell fates during differentiation) still remains a challenge, especially when closely related cell types from a common progenitor are considered. Here, we develop SeesawPred, a web application that, based on a gene regulatory network (GRN) model of cell differentiation, can computationally predict cell-fate determinants from transcriptomics data. Unlike previous approaches, it allows the user to upload gene expression data and does not rely on pre-compiled reference data sets, enabling its application to novel differentiation systems. SeesawPred correctly predicted known cell-fate determinants on various cell differentiation examples in both mouse and human, and also performed better compared to state-of-the-art methods. The application is freely available for academic, non-profit use at http://seesaw.lcsb.uni.lu.

Subject terms: Computational models, Gene regulatory networks, Software

Introduction

Cellular differentiation is a complex biological process, where pluripotent, multipotent or progenitor cells evolve into more specialized cells. Although the detailed mechanism of the underlying process and the pathways involved are not fully understood, it is generally accepted that a few TFs play a crucial role in determining cell fates. The key challenge of computational methods predicting cell-fate determinants from molecular profiling data is how to select a small, but meaningful subset of candidate TFs driving the process. Several valuable data-driven approaches have been proposed for the inference of cell-fate determinants, see for example1 and references therein. CellNet is a network biology approach applied to stem cell engineering2. The input of the method is gene expression profiles and it predicts similarity to the training samples (basis), the best matching networks from the basis and the importance of the TFs to target for dysregulation. Mogrify3 was developed in order to predict combinations of TFs capable of inducing direct conversions between 173 human tissue and cell types. The approach of D’alessio systematically identifies candidate core TFs that represent cell-type identity. It was also demonstrated that these predictions can identify factors capable of converting cell identity. Another data-driven approach was implemented by Heinäniemi et al.4 to identify putative determinants of cell fate based on the concept of gene expression reversal of gene pairs, such as those participating in toggle-switch circuits.

However, as shown in the comparative summary of the methods (Table 1), current tools require a comprehensive cell/tissue library as training- or background data sets, preventing users from inputting new transcriptomics data and not all of them provide publicly accessible source code. To the best of our knowledge, no general tool exists for the identification of candidate cell-fate determinants for any given differentiation event, even though the importance of such tools is evident in cell engineering, regenerative medicine and cancer therapeutics5,6. Here we developed SeesawPred, a publicly available web-based application framework that can systematically predict cell-fate determinants based on a GRN model of cell differentiation. As it allows the users to upload their own transcriptomics data and does not rely on pre-compiled reference data sets, it is well-suited for identifying cell-fate determinants in novel differentiation systems.

Table 1.

Comparison of major properties between different methods for predicting cell-fate determinants.

SeesawPred Mogrify D’Alessio CellNet
GRN requirement Yes Yes No Yes
Cell/tissue library requirement No Yes Yes Yes
Accepts user input data Yes No No Yes/No*
Model of differentiation Yes No No No
Source availability Yes No No Yes

*Only starting cell/tissue type.

Methods

Here we extended the framework introduced by7 and built a web-based application. Conceptually, the method is based on a GRN model, where cell-fate determinants (lineage specifying TFs) reside in a general class of a network motif, strongly connected component (SCC) and govern the gene expression programme that stabilizes three phenotypes (stem/progenitor cell type and two daughter cell types from the stem/progenitor cell). Moreover, opposing cell-fate determinants are assumed to be differentially expressed between the two daughter cell types, but in the stem/progenitor cell they show a balanced gene expression pattern. This assumption also corresponds to the “seesaw” model of stem cell differentiation810 and can be formally expressed with the measure of normalized ratio difference (NRD)7, for each TF pair Ci, Cj, i ≠ j as

NRDi,j=CiPCjPCiDCjDCiPCjP, 1

where C represents the gene expression and the upper index shows if the TF i and j are from the Stem/Progenitor (P) or Daughter (D), respectively.

The building blocks of the application are shown in Fig. 1. The input consists of the gene expression profiles of the stem/progenitor and two daughter cell types and a prior knowledge network (PKN). In case a PKN is not readily available, the application also includes built-in human and mouse general-purpose transcriptional regulatory networks retrieved from MetaCore11 on 02/26/2018 (see Supplementary Table S3), which can be used for limited-size applications (<1000 records). All these interactions are reported in literature and no predicted interactions are included. First, differentially expressed TFs between the two daughter cell types are derived and the NRD is calculated for each daughter cell type and for each TF pair. The NRD pairs are then tested for significance and filtered. The criteria for keeping a TF are that it has to:

  1. be differentially expressed between the two daughter cell types,

  2. constitute significant NRD pairs on significance test among all TFs and

  3. show high absolute NRD values in both daughter cell types (|NRD| > 0.5).

Figure 1.

Figure 1

Schematic pipeline of the SeesawPred application.

In the next step, the PKN is subset with only the TFs that meet the above criteria. In addition, the low-degree nodes are filtered out from the network by only keeping the nodes with out-degree larger than six. Although TFs with out-degree less than equal six could potentially be cell-fate determinants, this cutoff is chosen, because all experimentally validated cell-fate determinants we found for the differentiation events used in this study have out-degrees larger than six and setting this cutoff was found to reduce the run time without decreasing the overall performance of the method (see the sensitivity analysis in Supplementary Figure S4). Then, the network is pruned using the Boolean GRN formalism, such that the GRN is a sub-network of the PKN, where the edges do not conflict with the differential gene expression states between the two daughter cell types.

Different GRN solutions are generated, since the differential gene expression states can be explained by topologically different GRNs. The number of the different GRN solutions is a user-defined parameter, with an upper limit of 10.000 networks. Finally, SCCs are detected in each GRN solution. The final score for a TF pair is calculated by multiplying the following three factors:

  1. Fraction of SCCs they are present in.

  2. Fraction of SCCs where they are directly connected.

  3. Minimum out-degree.

Implementation

SeesawPred was implemented in R statistical language and the web interface has been developed using the Shiny web technology, with all major browsers supported. The algorithm has been optimized in order to provide response time adequate for practical applications. The source code is available under the terms of the Affero GPL license v3 together with the deployed webtool at http://seesaw.lcsb.uni.lu.

The required input of SeesawPred is a tab separated value file where columns represent gene expression (microarray or RNA-Seq) replicates of the progenitor cell type and the two daughter cell types labeled as “Progenitor”, “Daughter1”, “Daughter2”, respectively, and the rows are labeled according to the gene symbols. The user-defined PKN is also a tab separated value file containing the list of TF - TF interactions that serve as potential links in the network. The first and the third columns correspond to source and target TFs, respectively, and the second column describes the interaction type which can be “Activation”, “Inhibition” or “Unspecified”. For this study, we used a literature-based, curated PKN consisting of edges that describe direct interactions of binding, transcriptional regulation and influence on expression as retrieved from MetaCore. However, users can input any interactions of their interest, such as those originated from genome-wide ChIP-seq experiments or computational predictions. Example input files are contained in the help section of the application.

Results

Validation of the method

The validity of SeesawPred is tested against various binary cell differentiation examples in both human and mouse, for which transcriptomics data and known cell-fate determinants are available (Table 2). The example data are directly accessible from SeesawPred. The predicted cell-fate determinants in these examples are consistent with literature evidence and the most representative, predicted TF pairs are listed in Table 2. For example, well-known toggle switches, GATA1__SPI1 and PPARG__RUNX2 are predicted for the HSC and MSC differentiation events, respectively. Another example is GATA3__STAT1 that specifies either Th2 or Th1 cells from CD4+ helper T cells. Besides known cell-fate determinants, additional TFs are predicted, which constitute putative, novel cell-fate determinants that can be prioritized for experimental validation.

Table 2.

Example data set with representative known cell-fate determinants predicted by SeesawPred.

Example Description Representative pair
hDE DE to PF and MG/HG CDX2__PAX6; SOX2__TBX3
hDE 2 DE to PF and MG/HG CDX2__SOX2
hHSC HSC to GMP and MEP GATA1__SPI1
mCBC CBC to SP and AP FOXA1__MYC; KLF4__MYC
mHSC FDCP-mix to RBC and MYC GATA1__SPI1
mMEP MEP to RBC and MK ETS2__SP1; FOXO3__RUNX2
mMONO MONO to MDDC and MACRO CEBPA__IRF8
mMSC MSC to OST and AD PPARG__RUNX2
mNSC NSC to NEU and ASTRO ESR1__RUNX2
mTHC Th to Th1 and Th2 cells GATA3__STAT1

Abbreviations: definitive endoderm (DE), posterior foregut (PF), midgut (MG), hindgut (HG), hematopoietic stem cell (HSC), granulocyte-macrophage progenitor (GMP), megakaryocyte-erythroid progenitor (MEP), crypt base columnar cell (CBC), secretory progenitor (SP), absorptive progenitor (AP), erythrocyte (RBC), myeloid cell (MYC), megakaryocyte (MK), monocyte (MONO), monocyte-derived dendritic cell (MDDC), macrophage (MACRO), mesenchymal stem cell (MSC), osteoblast (OST), adipocyte (AD) neuronal stem cell (NSC), neuron (NEU), astrocyte (ASTRO), T helper cell (Th).

Comparison with other methods

In order to quantify the performance of SeesawPred, we benchmarked it against three other methods that can predict TFs for cellular transitions: Mogrify3, CellNet2 and the method of D’Alessio et al.12. Supplementary Table S2 compares ranked lists of predicted TFs for eight cell differentiation examples, for which predictions from both Mogrify and D’Alessio et al. are available. CellNet results are shown wherever the target cell type is available in its built-in data set. In some cases, the exact same cell type is not available and these cases are either completely excluded, or close cell/tissue types are used as surrogates (e.g. Mogrify does not contain erythrocytes and myeloid cells and “blood - adult” is used instead and CellNet has only three matching cell types out of eight used cases) (Supplementary Table S2). The comparison is based on how many known (experimentally validated) cell-fate determinants are recovered in the top predictions of each method. Results are trimmed to maximum eight predicted TFs, as Mogrify only reports up to eight predictions. Since Mogrify, CellNet and the method of D’Alessio et al. are not designed only for cell differentiation, TFs that are known for cellular reprogramming to respective target cell types are included in the benchmarking. The complete list of used cell-fate determinants with literature evidence is shown in Supplementary Table S1.

The result indicates that in both average recovery rate and total number of recovered cell-fate determinants SeesawPred performs the best at each rank cutoff in comparison to the other three individual methods (Fig. 2). Although CellNet ranks the 2nd best in the average recovery rate as an individual method (Fig. 2a), this result is based only on three cases, as it does not have the target cell types for the other five cases. For this reason, the performance of CellNet drops when the total number of recovered cell-fate determinants is considered (Fig. 2b) and the method of D’Alessio et al. performs the 2nd best as an individual method. Next, we aggregate the predictions from all the four methods, including SeesawPred, to see if this results in an increased performance. To this end, we use the reciprocal rank fusion13, that sorts based on the formula:

RRFscore(dD)=rR1k+r(d), 2

where D is a set of TFs to be ranked based on a set of rankings R, which are permutations on 1..|D|. The constant k = 10 is fixed a priori. New top eight TFs are taken based on this new ranking (also in Supplementary Table S2, “Aggregate” rows). This rank aggregation shows a slightly better performance than SeesawPred at some rank cutoffs (“Aggregate” method in Fig. 2), however, it does not result in any significant improvement in the overall performance: an improvement in three cases, one tie, a decrease in performance in four cases.

Figure 2.

Figure 2

Comparison of different tools in recovering known cell-fate determinants at different rank cutoffs (x-axis) against (a) recovery rate calculated by the number of recovered known cell-fate determinants divided by the number of total known cell fate determinants, and (b) the number of recovered known cell-fate determinants. Values are based on eight differentiation cases (HSC to erythrocyte, HSC to myeloid cell, monocyte to monocyte-derived dendritic cell, monocyte to macrophage, MSC to osteoblast, MSC to adipocyte, NSC to neuron, and NSC to astrocyte). Since CellNet does not have target cell/tissue types for five cases, recovery rate is calculated based only on the other three cases for (a) and the number of recovered known cell-fate determinants is considered zero for these five cases for (b). Aggregated rankings are computed from the ranked lists of all the four methods including SeesawPred by reciprocal rank fusion. For more details, see also Supplementary Table S2.

Note, in some cases the other individual methods perform better than SeesawPred. For example, in the cases of monocyte-to-macrophage and NSC-to-neuron differentiation, the method of D’Alessio et al. and CellNet recover more known cell-fate determinants than SeesawPred. In addition, MITF and/or TFEC are predicted by the other methods for macrophage and these TFs are indeed implicated in the macrophage lineage1416. However, we could not find direct evidence that they can induce macrophage differentiation or reprogramming and therefore, they are not counted as known cell-fate determinants. In general, it is not straightforward to directly compare on these broad categories of cell types, since many subtypes are known to exist (e.g., different subtypes of neurons and macrophages). Therefore, the used gene expression data likely come from different subtypes among the methods that do not accept user input data. These examples also indicate that no single method performs the best every time and further development of better prediction methods is still necessary.

Sensitivity analysis

Finally, in order to quantitatively assess the robustness of SeesawPred to the PKN, we perturb the original PKN by randomly masking out or adding new regulatory edges and then computing the fraction of top 10 predicted TFs that are also present in the top 10 predictions made from the original PKN. More formally, this fraction is expressed as:

|TFs(PKN)TFs(PKN)||TFs(PKN)|, 3

where |·| is the cardinality operator, TFs(x) represent the TFs predicted with the PKN x, the perturbed network is denoted with PKN’. The range of the perturbation is set to ±25% with 5% steps. 10 independent PKNs are generated for each step and each differentiation example contained in Supplementary Table S2, and the fraction of common predicted TFs is computed (Fig. 3). As expected, subsampling or extending the PKN causes some differences in predictions. As the (absolute) percentage of difference between PKNs increases, the median fraction of identical predictions decreases with increasing spread. We observe that this effect is stronger if new edges are added compared to when edges are removed. Nevertheless, the statistics show that removing/adding 5% (≈600) edges maintain the median fraction of 0.9 (90%) of the original SeesawPred predictions. Moreover, even the 25% (≈3000) removal/addition of edges still maintain the median fractions of 0.8/0.5 of the original SeesawPred predictions, respectively.

Figure 3.

Figure 3

Sensitivity of SeesawPred predictions to randomly removing from (a) and adding new edges to the PKN (b). The fraction of identical predictions (See Eq. 2) is plotted against the amount of edges removed/added with respect to the size of the original PKN. Each boxplot represents 10 independent trials for each of the eight examples in Supplementary Table S2 (i.e., 80 total trials).

Given that any GRN-based method is, by construction, supposed to be sensitive to changes in the network topology to a certain degree, SeesawPred seems to be reasonably robust to changes in the PKN. Note, in this sensitivity analysis, for the sake of completeness, we test up to 25% random removals/additions of network edges. However, a (random) change of this extent is unlikely to occur in already comprehensive and well-curated databases.

Discussion

We present SeesawPred, a web application for predicting cell-fate determinants from transcriptomics data. SeesawPred relies on the assumption that the stem/progenitor cell phenotype is maintained in a metastable state by the opposing cell-fate determinants, which are part of interconnected feedback loops known as SCCs (e.g. toggle switches)7. During binary cell-fate decisions, the equilibrium is shifted towards either of the two cell-fate determinants and the gene expression profile stabilizes in the corresponding daughter cell type. This is in line with the “seesaw” model of cell reprogramming810 that was proposed to illustrate the balanced equilibrium of the cell-fate determinants in the pluripotent state.

An inherent advantage of SeesawPred is that it can predict cell-fate determinants based on user input transcriptomics data without the need for background or training data set (Table 1). Therefore, it is well-suited for identifying cell-fate determinants in novel differentiation systems, for which no previous data are available. Indeed, among the 18 unique differentiation events we collected (Table 2), only eight of them could be handled by the other methods. As functionally distinct, novel subtypes of cell types have been increasingly identified, we believe SeesawPred will be valuable in guiding differentiation experiments of such novel cell types.

The performance of SeesawPred was also found better than the other existing methods2,3,12 in recapitulating known cell-fate determinants based on the eight cell differentiation systems (Fig. 2, Supplementary Table S2). This could be explained by the underlying model of SeesawPred, which is a generalized extension of the experimentally observed GRN model9,10,1719 specifically designed for binary cell differentiation. However, such performance comparisons are not always straightforward, since the other methods are designed more for any type of cell conversions and are not specific for binary cell differentiation. In fact, in the monocyte-to-macrophage and NSC-to-neuron differentiation cases SeesawPred was not the best performing (Supplementary Table S2), possibly because not all cell-fate determinants comply with our cell differentiation model and also possibly because different methods use different gene expression data which may come from different subtypes of broad cell-type categories, such as “neuron” and “macrophage”. In the light of the different predictions from the individual methods, we aggregated the predictions of the four methods, including SeesawPred, using a reciprocal rank fusion. However, this did not result in any significant improvement in the overall performance in comparison to SeesawPred alone (Fig. 2). Thus, development of more sophisticated aggregation methods may be another avenue for better prediction methods.

Finally, the performance comparison was conducted solely on the current knowledge of experimentally validated cell-fate determinants, which is far from complete and makes the accurate calculation of false positive rate impossible. Further experimental efforts to characterize true positive/negative cell-fate determinants are needed for comprehensive performance comparisons. It should also be noted that none of the methods discussed in this study, including SeesawPred, systematically addresses the problem of differentiation efficiency and fidelity. We consider this a general future challenge for the field.

Conclusion

SeesawPred recapitulated known cell-fate determinants in a number of diverse examples, underscoring the validity of this approach. Moreover, the comparison with already published methods showed a superior performance of SeesawPred. Further validation both computationally and experimentally will reinforce the generalizability of the method. SeesawPred is made publicly available for academic non-profit use in order to guide differentiation experiments in stem cell research and regenerative medicine.

Electronic supplementary material

Sensitivity (64.8KB, pdf)
Examples (15.2KB, xlsx)
Benchmark (60.8KB, xlsx)
Network (37.7KB, xlsx)

Acknowledgements

This work was supported by the Fonds National de la Recherche Luxembourg [C15/BM/10397420 to S.O., 10035087 to G.Z.].

Author Contributions

A.d.S. conceived and supervised the project A.H. and S.O. developed the software S.O., A.H. and G.Z. compiled the data set and performed the benchmarking tests A.H., S.O., G.Z. and A.d.S. wrote the manuscript.

Data Availability

All transcriptomics data analysed in this study are publicly available (see Supplementary Table S1 for accession numbers). The PKNs that support the findings of this study are included in the application for reproducibility purposes, and are available from Clarivate Analytics (MetaCore) but restrictions apply to the availability of these data, which were used under license for the current study, and so are not publicly available. Data are however available from the authors upon reasonable request and with permission of Clarivate Analytics.

Competing Interests

The authors declare no competing interests.

Footnotes

Publisher's note: Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Electronic supplementary material

Supplementary information accompanies this paper at 10.1038/s41598-018-31688-9.

References

  • 1.Bian Q, Cahan P. Computational Tools for Stem Cell Biology. Trends Biotechnol. 2016;34:993–1009. doi: 10.1016/j.tibtech.2016.05.010. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 2.Cahan P, et al. CellNet: Network Biology Applied to Stem Cell Engineering. Cell. 2014;158:903–915. doi: 10.1016/j.cell.2014.07.020. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 3.Rackham OJL, et al. A predictive computational framework for direct reprogramming between human cell types. Nat. Genet. 2016;48:331–335. doi: 10.1038/ng.3487. [DOI] [PubMed] [Google Scholar]
  • 4.Heinäniemi M, et al. Gene-pair expression signatures reveal lineage control. Nat. Methods. 2013;10:577–583. doi: 10.1038/nmeth.2445. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 5.Cohen DE, Melton D. Turning straw into gold: Directing cell fate for regenerative medicine. Nat. Rev. Genet. 2011;12:243–252. doi: 10.1038/nrg2938. [DOI] [PubMed] [Google Scholar]
  • 6.Ebrahimi B. Biological computational approaches: New hopes to improve (re)programming robustness, regenerative medicine and cancer therapeutics. Differ. 2016;92:35–40. doi: 10.1016/j.diff.2016.03.001. [DOI] [PubMed] [Google Scholar]
  • 7.Okawa S, Nicklas S, Zickenrott S, Schwamborn JC, del Sol A. A Generalized Gene-Regulatory Network Model of Stem Cell Differentiation for Predicting Lineage Specifiers. Stem Cell Reports. 2016;7:307–315. doi: 10.1016/j.stemcr.2016.07.014. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 8.Shu J, Deng H. Lineage Specifiers: New Players in the Induction of Pluripotency. Genomics, Proteomics & Bioinforma. 2013;11:259–263. doi: 10.1016/j.gpb.2013.09.005. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 9.Shu J, et al. Induction of Pluripotency in Mouse Somatic Cells with Lineage Specifiers. Cell. 2013;153:963–975. doi: 10.1016/j.cell.2013.05.001. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 10.Montserrat N, et al. Reprogramming of Human Fibroblasts to Pluripotency with Lineage Specifiers. Cell Stem Cell. 2013;13:341–350. doi: 10.1016/j.stem.2013.06.019. [DOI] [PubMed] [Google Scholar]
  • 11.Nikolsky Y, Ekins S, Nikolskaya T, Bugrim A. A novel method for generation of signature networks as biomarkers from complex high throughput data. Toxicol. letters. 2005;158:20–29. doi: 10.1016/j.toxlet.2005.02.004. [DOI] [PubMed] [Google Scholar]
  • 12.D’Alessio AC, et al. A Systematic Approach to Identify Candidate Transcription Factors that Control Cell Identity. Stem Cell Reports. 2015;5:763–775. doi: 10.1016/j.stemcr.2015.09.016. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 13. Cormack, G. V., Clarke, C. L. A. & Buettcher, S. Reciprocal rank fusion outperforms condorcet and individual rank learning methods. In Proceedings of the 32nd International ACM SIGIR Conference on Research and Development in Information Retrieval, 758, 10.1145/1571941.1572114 (ACM Press, 2009).
  • 14.Rehli M, Lichanska A, Cassady AI, Ostrowski MC, Hume DA. TFEC is a macrophage-restricted member of the microphthalmia-TFE subfamily of basic helix-loop-helix leucine zipper transcription factors. J. Immunol. (Baltimore, Md.: 1950) 1999;162:1559–1565. [PubMed] [Google Scholar]
  • 15.Zanocco-Marani T, et al. TFE3 transcription factor regulates the expression of MAFB during macrophage differentiation. Exp. Cell Res. 2009;315:1798–1808. doi: 10.1016/j.yexcr.2009.03.018. [DOI] [PubMed] [Google Scholar]
  • 16.Hume DA. The Many Alternative Faces of Macrophage Activation. Front. Immunol. 2015;6:370. doi: 10.3389/fimmu.2015.00370. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 17.Graf T. Differentiation plasticity of hematopoietic cells. Blood. 2002;99:3089–3101. doi: 10.1182/blood.V99.9.3089. [DOI] [PubMed] [Google Scholar]
  • 18.Huang S, Guo Y-P, May G, Enver T. Bifurcation dynamics in lineage-commitment in bipotent progenitor cells. Dev. Biol. 2007;305:695–713. doi: 10.1016/j.ydbio.2007.02.036. [DOI] [PubMed] [Google Scholar]
  • 19.Lin YF, et al. Identification of osteo-adipo progenitor cells in fat tissue. Cell Prolif. 2008;41:803–812. doi: 10.1111/j.1365-2184.2008.00542.x. [DOI] [PMC free article] [PubMed] [Google Scholar]

Associated Data

This section collects any data citations, data availability statements, or supplementary materials included in this article.

Supplementary Materials

Sensitivity (64.8KB, pdf)
Examples (15.2KB, xlsx)
Benchmark (60.8KB, xlsx)
Network (37.7KB, xlsx)

Data Availability Statement

All transcriptomics data analysed in this study are publicly available (see Supplementary Table S1 for accession numbers). The PKNs that support the findings of this study are included in the application for reproducibility purposes, and are available from Clarivate Analytics (MetaCore) but restrictions apply to the availability of these data, which were used under license for the current study, and so are not publicly available. Data are however available from the authors upon reasonable request and with permission of Clarivate Analytics.


Articles from Scientific Reports are provided here courtesy of Nature Publishing Group

RESOURCES