plotTranscriptsFromUCSC: Plot transcripts directly from UCSC OrgDb and TxDb objects.

Description Usage Arguments Value Examples

Description

A wrapper around the plotTranscripts function. See the documentation for (plotTranscripts) for more information. Note that this function is much slower than (plotTranscripts) or (plotTranscriptsFromEnsembldb) functions, because indivudally extracting exon coordinates from txdb objects is quite inefficient.

Usage

1
2
plotTranscriptsFromUCSC(orgdb, txdb, gene_names, transcript_ids = NULL,
  ...)

Arguments

orgdb

UCSC OrgDb object.

txdb

UCSC TxDb obejct.

gene_names

List of gene genaes to be plot.

transcript_ids

Optional list of transcript ids to be plot. (default = NULL)

...

Additional parameters to be passed to plotTranscripts

Value

Transcript plot.

Examples

1
2
3
4
5
6
7
#Load OrgDb and TxDb objects with UCSC gene annotations
require("org.Hs.eg.db")
require("TxDb.Hsapiens.UCSC.hg38.knownGene")
orgdb = org.Hs.eg.db
txdb = TxDb.Hsapiens.UCSC.hg38.knownGene

plotTranscriptsFromUCSC(orgdb, txdb, "NCOA7", transcript_ids = c("ENST00000438495.6", "ENST00000368357.7"))

wiggleplotr documentation built on Nov. 8, 2020, 5:39 p.m.