matdist {Rqc} | R Documentation |
This function receives a vector of strings representing codified DNA sequences and returns a integer matrix representing the similarities between all sequences from input vectors.
matdist(rrdnas)
rrdnas |
Vector of codified DNA sequences (character vector). |
Matrix n x n, where n is the length of the largest original DNA sequence.
This function is used internally to compute data for rqcFileHeatmap function.
Welliton Souza
dna1 <- toRRDNA("atcgn") dna2 <- toRRDNA("atcga") matdist(c(dna1, dna2))