| org.Rn.egPROSITE {org.Rn.eg.db} | R Documentation |
org.Rn.egPROSITE is an R object that provides mappings between a entrez gene identifier and the associated PROSITE identifiers.
Each entrez gene identifier maps to a named vector of PROSITE identifiers. The name for each PROSITE identifier is the IPI accession numbe where this PROSITE identifier is found.
If the PROSITE is a named NA, it means that the associated Entrez Gene id of this entrez gene identifier is found in an IPI entry of the IPI database, but there is no PROSITE identifier in the entry.
If the PROSITE is a non-named NA, it means that the associated Entrez Gene id of this entrez gene identifier is not found in any IPI entry of the IPI database.
Mappings were based on data provided by: Uniprot http://www.UniProt.org/ With a date stamp from the source of: Mon Sep 16 12:11:23 2013
x <- org.Rn.egPROSITE
# Get the entrez gene identifiers that are mapped to any PROSITE ID
mapped_genes <- mappedkeys(x)
# Convert to a list
xxx <- as.list(x[mapped_genes])
# randomly display 10 genes
xxx[sample(1:length(xxx), 10)]