genePlot(generanges, islandid, genomeDB, reads, exp, names.arg, xlab='',
ylab='', xlim, cex=1, yaxt='n', col, ...)
generanges
is not specified, transcripts are
obtained from island islandid
from the annotated genome genomeDB
.pbam
object with aligned reads. This is an
optional argument.ExpressionSet
object with expression values, as
returned by calcExp
. This is an optional argument.plot
.signature(generanges="CompressedIRangesList", islandid="ANY", genomeDB="ANY", reads="ANY", exp="ANY")
generanges
corresponds to a
transcript. Each transcript should contain exon start/end positions.
signature(generanges="IRanges", islandid="ANY", genomeDB="ANY", reads="ANY", exp="ANY")
signature(generanges="IRangesList", islandid="ANY", genomeDB="ANY", reads="ANY", exp="ANY")
generanges
corresponds to a
transcript. Each transcript should contain exon start/end positions.
signature(generanges="GRangesList", islandid="ANY",
genomeDB="ANY", reads="ANY", exp="ANY")
generanges
corresponds to a
transcript. Each transcript should contain exon start/end
positions.
signature(generanges="GRanges", islandid="ANY", genomeDB="ANY", reads="ANY", exp="ANY")
generanges
corresponds to a
transcript. Each transcript should contain exon start/end positions.
signature(generanges="missing", islandid="character", genomeDB="annotatedGenome", reads="GRanges", exp="ExpressionSet")
genomeDB
for island with
identifier islandid
. Individual reads are added to the plot
(reads
contains start/end of individual read fragments).
signature(generanges="missing", islandid="character", genomeDB="annotatedGenome", reads="missing", exp="missing")
genomeDB
for island with identifier islandid
.
signature(generanges="missing", islandid="character", genomeDB="annotatedGenome", reads="procBam", exp="missing")
genomeDB
for island with
identifier islandid
. Individual reads are added to the plot
(reads
contains start/end of individual read fragments).
signature(generanges="missing", islandid="character", genomeDB="annotatedGenome", reads="procBam", exp="ExpressionSet")
genomeDB
for island with
identifier islandid
. Individual reads and estimated
expression are added to the plot
(reads
contains start/end of individual read fragments).
data(hg19DB)
#Plot an IRangesList
txs <- transcripts(txid="NM_005158",genomeDB=hg19DB)
genePlot(txs)
#Equivalently, indicate islandid
islandid <- getIsland(txid="NM_005158",genomeDB=hg19DB)
genePlot(islandid=islandid, genomeDB=hg19DB)
Run the code above in your browser using DataLab