getBaseFreqs.K81: Get the base frequency parameters
Description
Get the base frequency parameters.
The order of the frequency parameters must match with the order of symbols
in the NucleotideAlphabet objects. The K81 model has equal base frequencies.
Usage
# S3 method for K81
getBaseFreqs(this, ...)
Arguments
this
A K81 object.
...
Not used.
Value
A matrix containing the base frequency parameters.
# NOT RUN {# construct object p<-K81()
# get base frequency parameters getBaseFreqs(p) # uniform# set/get base frequency parameters via virtual field p$baseFreqs # uniform# }