Description Usage Arguments Value Author(s) Examples
This function imports GenomicRanges to be used with recoup from a local GTF file.
1 2 | importCustomAnnotation(gtfFile, metadata,
type = c("gene", "exon", "utr"))
|
gtfFile |
a GTF file containing the gene structure of the organism to be imported. |
metadata |
a list with additional information about
the annotation to be imported. The same as in the
|
type |
one of the |
The function returns a GenomicRanges
object with
the requested annotation.
Panagiotis Moulos
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Dummy GTF as example
chromInfo <- data.frame(length=c(1000L,2000L,1500L),
row.names=c("A","B","C"))
# Build with the metadata list filled (you can also provide a version)
myGenes <- importCustomAnnotation(
gtfFile=file.path(system.file(package="recoup"),"dummy.gtf"),
metadata=list(
organism="dummy",
source="dummy_db",
version=1,
chromInfo=chromInfo
),
type="gene"
)
## Real data!
## Gene annotation dump from Ensembl
#download.file(paste0("ftp://ftp.ensembl.org/pub/release-98/gtf/",
# "dasypus_novemcinctus/Dasypus_novemcinctus.Dasnov3.0.98.gtf.gz"),
# file.path(tempdir(),"Dasypus_novemcinctus.Dasnov3.0.98.gtf.gz"))
## Build with the metadata list filled (you can also provide a version)
#dasGenes <- importCustomAnnotation(
# gtfFile=file.path(tempdir(),"Dasypus_novemcinctus.Dasnov3.0.98.gtf.gz"),
# metadata=list(
# organism="dasNov3_test",
# source="ensembl_test"
# ),
# type="gene"
#)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.