chr_uniform {CNVgears} | R Documentation |
This is a function for internal use in the package, it handles the standardize process of chromosome notation within the other functions.
chr_uniform(DT_in)
DT_in, |
a |
the same data.table
in input with the "chr" uniformed to the
notation "1", "2", ... , "23", "24" for the chromosomes 1:22, X and Y
DT <- data.table::data.table(chr= c("chr1", "chrX", "chr20")) DT <- chr_uniform(DT) DT