Description Usage Arguments Value Author(s) Examples
getGeneInfo is a function to easily extract geneInfo out of a MEE.data or Pair object. By specifying geneID or symbol, geneInfo for the defined genes (geneID or symbol) will be extracted out of MEE.data or Pair object. When range is specified, the geneInfo falling into the range will be extracted.
1 2 3 4 | getGeneInfo(object, geneID, symbol, range)
## S4 method for signature 'ANY'
getGeneInfo(object, geneID, symbol, range)
|
object |
MEE.data or Pair object |
geneID |
A vector of genes' id. When specified, only these gene coordinates will be output. |
symbol |
A vector of genes' symbols . When specified, only these gene coordinates will be output. |
range |
A GRanges object. When specified, only the geneInfo locating within these loci will be output. |
Gene annotation information such as gene id, symbol and coordinates.
Lijing Yao (maintainer: lijingya@usc.edu)
1 2 3 4 5 | geneInfo <- txs()
mee <- fetch.mee(geneInfo=geneInfo)
Genes <- getGeneInfo(mee, geneID = "55811")
Genes <- getGeneInfo(mee, symbol ="ADCY10")
Genes <- getGeneInfo(mee, range = GRanges(seqnames="chr1", ranges=IRanges(1000000,1600000)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.