View source: R/Process_nascent_data.R
call_transcribed_intervals | R Documentation |
Call continuous intervals of nascent transcription from NET-seq or GRO-seq data
call_transcribed_intervals(
cov,
min_signal = 3,
max_gapwidth = 250,
min_width = 500
)
cov |
|
min_signal |
Positive integer. |
max_gapwidth |
Non-negative integer. |
min_width |
Positive integer. |
List of length 2:
GRanges
object containing merged intervals of nascent transcription.
GRanges
object containing low coverage sub-intervals (gaps) within the merged transcribed intervals.
The input file is expected to be returned by the load_BAM_files(mode = "nascent")
function. It contains sequencing coverage
of the chromosomes by nascent RNA-seq reads. Continuous intervals of coverage (with values not less than min_signal
)
are merged if the distance between them does not exceed max_gapwidth
bp.
Finally, the merged intervals are filtered to have length not less than min_width
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.