Learn R Programming

RamiGO (version 1.18.0)

c5.go.mapping: MSigDB C5 GO term to GO ID mapping

Description

This object provides a mapping for MSigDB GO terms for the bp, mf and cc GO categories to official GO ID's.

Arguments

Format

A data frame with 1454 observations on the following 2 variables.
description
a character vector of MSigDB GO terms
goid
a character vector of official GO ID's

References

Subramanian A, Tamayo P, Mootha VK, Mukherjee S, Ebert BL, Gillette MA, Paulovich A, Pomeroy SL, Golub TR, Lander ES, Mesirov JP. Gene set enrichment analysis: A knowledge-based approach for interpreting genome-wide expression profiles. Proceedings of the National Academy of Sciences of the United States of America 2005 Oct;102(43):15545 -15550.

Examples

Run this code
## load the mapping
data(c5.go.mapping)

## look at the object
str(c5.go.mapping)

## create go term vector
terms <- c("CHROMATIN_REMODELING_COMPLEX",
	"RNA_POLYMERASE_COMPLEX",
	"CYTOKINESIS","CELL_RECOGNITION")
id <- sapply(terms,function(x)c5.go.mapping[
  match(x,c5.go.mapping[,1]),2])
id

Run the code above in your browser using DataLab