Description Usage Arguments Value Author(s) References Examples
A reimplementation of the UCSC liftover tool for lifting features from one genome build to another. In our preliminary tests, it is significantly faster than the command line tool. Like the UCSC tool, a chain file is required input.
1 |
x |
The intervals to lift-over, usually
a |
chain |
A |
... |
Arguments for methods. |
A GRangesList
object. Each element contains the ranges mapped
from the corresponding element in the input (may be one-to-many).
Michael Lawrence
http://genome.ucsc.edu/cgi-bin/hgLiftOver
1 2 3 4 5 6 7 | ## Not run:
chain <- import.chain("hg19ToHg18.over.chain")
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
tx_hg19 <- transcripts(TxDb.Hsapiens.UCSC.hg19.knownGene)
tx_hg18 <- liftOver(tx_hg19, chain)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.