Description Usage Arguments Details Value Author(s) See Also Examples
RNA-seq coverage profiles for both forward and reverse DNA strand can
be visualized separately in the
UCSC genome browser using exportCoverage
.
This function can generate tracks in
BigWig and
bedGraph formats,
which can be uploaded to the genome browser as custom tracks.
1 2 3 4 5 6 7 8 | exportCoverage(object, file, type, strand, color,
filter.by.coverage.cutoff = FALSE, coverage.cutoff = NULL, rpm = FALSE,
total.reads)
## S4 method for signature 'TranscriptionDataSet'
exportCoverage(object, file, type, strand,
color, filter.by.coverage.cutoff = FALSE, coverage.cutoff = NULL,
rpm = FALSE, total.reads)
|
object |
A |
file |
|
type |
|
strand |
|
color |
Object of class "integer" representing the track color (as from col2rgb). Only works with tracks of type "bedGraph". Default: c(0L, 0L, 255L). |
filter.by.coverage.cutoff |
|
coverage.cutoff |
|
rpm |
|
total.reads |
|
There is an option to filter coverage profiles by the coverage cutoff
value, either estimated for a specific FDR via
estimateBackground
or a user specified value. By default, the
coverage cutoff value stored in the TranscriptionDataSet
object
is used. In order to make an informed decision about a proper FDR level, it
is useful to explore the output at different FDR levels and determine the
optimal cutoff value.
A file in either BigWig or bedGraph format.
Armen R. Karapetyan
estimateBackground
UCSC genome browser
BigWig
1 2 3 4 5 6 7 8 9 10 | ### Load TranscriptionDataSet object
data(tds)
### Look at the coverage profile of the regions expressed above the background level
# exportCoverage(object = tds, file = "plus.bg", type = "bedGraph", strand = "+",
# filter.by.coverage.cutoff = TRUE, coverage.cutoff = 3, rpm = FALSE)
### Or check the raw coverage (all expressed regions)
# exportCoverage(object = tds, file = "plus_raw.bg", type = "bedGraph",
# strand = "+", filter.by.coverage.cutoff = FALSE, rpm = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.