toRRDNA {Rqc} | R Documentation |
This function receives a vector of strings (character vector) containing DNA sequences and returns a vector of strings containing codified DNA.
toRRDNA(dnas)
dnas |
Vector of DNA sequences (character vector). |
Vector of DNA converted to reduced representation format (character vector).
This function is used internally to compute top over-represented reads and to store in RqcResultSet objects (per file top reads).
Welliton Souza
dna <- "ATCGNATCGTA" dna.converted <- toRRDNA(dna) nchar(dna) nchar(dna.converted)