Description Usage Arguments Details Value Examples
View source: R/read_NGS_intervals.R
read_intervals
handles inputs of data used as the markers in CNVs
calling/segmentation using NGS data (WES or WGS)
1 2 3 4 5 6 | read_NGS_intervals(
DT_path,
chr_col = "CONTIG",
start_col = "START",
end_col = "END"
)
|
DT_path, |
path to the input file. |
chr_col, |
name of the column containing the chromosome information in the input file. |
start_col, |
name of the column containing the start information in the input file. |
end_col, |
name of the column containing the end information in the input file. |
This function is used to load data in interval list or BED like formats into
a data.table
that integrates with the other functions of the package.
This is usually done at the beginning of a project involving CNVs
calling/segmentation on NGS data (WES or WGS) pipelines' results analysis.
The function should automatically skip any eventual header.
The parameters default values are for file in GATK interval list like format.
a data.table
, will be of Markers
class in future
versions.
1 2 | read_NGS_intervals(DT_path = system.file("extdata", "markers_WES_example.tsv",
package = "CNVgears"), chr_col = "chr", start_col = "start", end_col = "end")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.