callLength | R Documentation |
Computes distribution of fragment sizes from BAM/GRanges data. Optionally integrates mutational data, normalizes fragment counts, and adjusts for specific reference types.
callLength(
frag_obj,
isize_min = 1L,
isize_max = 1000L,
integrate_mut = FALSE,
ref_type = "locus_fragment",
downsample_ref = FALSE,
...
)
frag_obj |
GRanges object containing DNA fragment information. |
isize_min |
Minimum insert size for filtering (default 1). |
isize_max |
Maximum insert size for filtering (default 1000). |
integrate_mut |
Logical, TRUE integrates mutational data. |
ref_type |
Specifies the type of reference fragments for comparison with MUT fragments: 'locus_fragment' refers to fragments/read-pairs overlapping specific mutation loci, 'outer_fragment' refers to fragments/read-pairs that do not overlap indicated mutation loci. |
downsample_ref |
Logical, TRUE to match REF and MUT fragment counts. |
... |
Additional arguments for downstream functions. |
Returns a tibble with summarized fragment data, optionally including mutational analysis.
callLength(frag_obj = myFragData, isize_min = 1L, isize_max = 1000L,
integrate_mut = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.