MODE | R Documentation |
Calculates the nucleotide sequence that occurs most often in a matrix of sequences.
MODE(freq, seqlength)
freq |
Frequenct matrix for nucleotides. |
seqlength |
Length of nucleotide sequence. |
The argument freq can be calculated using the function ffrequency.matrix.function.
A vector containing the first modal sequence.
Taryn B. T. Athey and Paul D. McNicholas
## Not run: data(birds)
species.names <- birds[,2]
specimen.Number <- nrow(birds)
rownames(birds) <- species.names
Nuc.count <- count.function(birds, specimen.Number, 648)
frequency.matrix <- ffrequency.matrix.function(Nuc.count, 648)
birdSpec.freq <- specimen.frequencies(frequency.matrix, birds, specimen.Number, species.names, 648)
nucleotide.modalSequence <- MODE(frequency.matrix, 648)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.