Rev Language Reference


fnF1x4 - The F1x4 codon frequency model

This treats codon frequencies as a product of independent nucleotide frequencies. Since stop codons are removed from the codon alphabet, frequencies are renormalized so that the frequencies of non-stop codons sum to 1.0.

Usage

fnF1x4(Simplex baseFrequencies)

Arguments

baseFrequencies : Simplex (pass by const reference)
The stationary frequencies of the nucleotides.

Return Type

Example

kappa ~ dnLognormal(0,1)
omega ~ dnUniform(0,1)
pi ~ dnDirichlet( v(2.0, 2.0, 2.0, 2.0) )
Q := fnCodonGY94( kappa, omega, fnF1x4(pi) )

See Also