convert_rle_to_df {iimi} | R Documentation |
convert_rle_to_df
Description
Converts a list of run-length encodings (RLEs) into a data frame with 16 features after mappability profiling and nucleotide filtering.
Usage
convert_rle_to_df(
covs,
unreliable_region_df = unreliable_regions,
unreliable_region_enabled = TRUE,
additional_nucleotide_info = data.frame()
)
Arguments
covs |
A list of Coverage profile(s) in RLE format. Can be one or more samples. |
unreliable_region_df |
The unreliable regions of the virus segments.
Default is |
unreliable_region_enabled |
Default is |
additional_nucleotide_info |
Additional nucleotide information for virus
segments that are not included in |
Value
A data frame object that contains the mapping result for each virus segment that the plant sample reads are aligned to and a RLE list of coverage information.
Examples
## Not run:
df <- convert_rle_to_df(example_cov)
## End(Not run)