Description Usage Format Source Examples
These data catalog chemical-gene interactions curated from the literature. Each interaction in this database contains useful information about the source of this knowledge and the type of interaction observed.
1 |
A data.frame
with >1,000,000 chemical-gene interactions (rows)
and 11 annotations (columns). Retrieved on April 9, 2019.
http://ctdbase.org/reports/CTD_chem_gene_ixns.csv.gz
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
library(miSciTools)
data(ctd)
head(ctd[, c("GeneID", "ChemicalName")])
genes <- ctd$GeneID[ctd$ChemicalName == "Platinum"]
pvals <-
simpliGSEA(genes = genes, # Test "Platinum" interactions
universe = unique(ctd$GeneID),
annot.genes = ctd$GeneID,
annot.terms = ctd$ChemicalName)
head(sort(p.adjust(pvals)))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.