Learn R Programming

PCAN (version 1.0.2)

geneByHp: Entrez gene IDs associated to HP terms (Example data)

Description

Each entrez gene IDs is associated to one or several HP terms

Arguments

Format

A data frame with 67989 rows and 2 columns:
entrez
entrez gene IDs
hp
HP terms

Source

Two ressources were used in May 27 2015:

Details

These data are used to examplify the different functions of the package. More data are available in the MultiHumanPhenoDB package.

Examples

Run this code
###########################################
## Compute information content of each HP according to associated genes
data(geneByHp, hp_descendants, package="PCAN")
geneByHp <- unstack(geneByHp, entrez~hp)
ic <- computeHpIC(geneByHp, hp_descendants)
hist(
    ic,
    breaks=100, col="grey",
    main="Distribution of Information Content",
    xlab="IC base on genes associated to HP"
)

Run the code above in your browser using DataLab