Description Format Details Source Examples
Each trait is associated to one or several genes. Only genes associated to OMIM disease with a "Pathogenic" clinical status and one of the follwing origins: "germline", "de novo", "inherited", "maternal", "paternal", "biparental", "uniparental".
A data frame with 4569 rows and 3 columns:
Entrez gene IDs.
Trait database: always "OMIM" here.
Trait ID: OMI IDs here
These data are used to examplify the different functions of the package. More data are available in the MultiHumanPhenoDB package.
ftp://ftp.ncbi.nlm.nih.gov/pub/clinvar/xml/ClinVarFullRelease_2015-05.xml.gz
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(geneByTrait, traitDef, geneDef, package="PCAN")
omim <- "612285"
traitDef[which(traitDef$id==omim),]
# Gene associated to this disease
entrez <- geneByTrait[which(geneByTrait$id==omim), "entrez"]
geneDef[which(geneDef$entrez %in% entrez),]
# All diseases associated to this gene
traitDef[
which(
traitDef$id %in%
geneByTrait[which(geneByTrait$entrez==entrez), "id"]
),
]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.