Description Usage Arguments Value Examples
prase txdb, gene annotation from local gtf file
1 2 3 4 5 6 7 8 9 10 | pharse_gtf(
gtf,
species = "hs",
geonme = "GRCh38",
datasource = "Ensembl",
version = "Ensembl v95",
server = "asia.ensembl.org",
fp = c("EGFP", "mCherry", "tdTomato", "ZsGreen", "turboGFP", "mNeonGreen",
"mScarleti", "WPRE")
)
|
gtf |
character, file path to GTF file |
species |
character, one of hs, mm |
geonme |
character, genome build version like "GRCh38" |
datasource |
character, source of data |
version |
character, data source version |
server |
character, data source links |
fp |
character vector, add fluoresecent proteins info |
a list, contains txdb, tx2gene, annotation
1 2 3 4 5 | GRCh38 <- gtf_to_annotation("Homo_sapiens.GRCh38.95.gtf", species="hs", geonme="GRCh38")
GRCh38_txdb <- GRCh38$txdb
AnnotationDbi::saveDb(GRCh38_txdb, "txdb.ensembl.95.GRCh38.sqlite")
GRCh38_tx2gene <- GRCh38$tx2gene
GRCh38_annotation <- GRCh38$annotation
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.