Bio.Var: Biological Variation.

Identifying and counting mutations

You can count the numbers of different types of mutations in a pairwise manner for a set of nucleotide sequences.

Different types of mutation

The types of mutations that can currently be counted are DifferentMutation,s TransitionMutations, and TransversionMutations.

# Bio.Var.AnyMutationType.

AnyMutation describes a site where two aligned nucleotides are not the same.

Every kind of difference is counted.

source

# Bio.Var.TransitionMutationType.

TransitionMutation describes a situation with two aligned nucleotides, where a purine has mutated into another purine, or a pyrimadine has mutated into another pyrimadine.

Possible transition mutations are: A <-> G C <-> T

source

# Bio.Var.TransversionMutationType.

TransversionMutation describes a situation with two aligned nucleotides, where a purine has mutated into a pyrimadine or vice versa.

Possible transversion mutations are: A <-> T C <-> G A <-> C T <-> G

source

The count_mutations method

Mutations are counted using the count_mutations method. The method outputs a tuple. The first value is the number of mutations counted. The second value is the number of sites examined. Sites which have gaps and uncertain nucleotides are not examined and so this second value will be less than the length of the two biological sequences.

count_mutations(DifferentMutation, [dna"ATCGATCG", dna"ACCGATCG"])

count_mutations(TransitionMutation, [dna"ATCGATCG", dna"ACCGATCG"])

count_mutations(TransversionMutation, [dna"ATCGATCG", dna"ACCGATCG"])

count_mutations(TransitionMutation, TransversionMutation, [dna"ATCGATCG", dna"ACCGATCG"])

count_mutations(DifferentMutation, [rna"AUCGAUCG", rna"ACCGAUCG"])

count_mutations(TransitionMutation, [rna"AUCGAUCG", rna"ACCGAUCG"])

count_mutations(TransversionMutation, [rna"AUCGAUCG", rna"ACCGAUCG"])

count_mutations(TransitionMutation, TransversionMutation, [rna"AUCGAUCG", rna"ACCGAUCG"])

The is_mutation method

# Bio.Var.is_mutationFunction.

is_mutation{T<:Nucleotide}(::Type{AnyMutation}, a::T, b::T)

Test if two nucleotides constitute a AnyMutation.

source

is_mutation{T<:Nucleotide}(::Type{TransitionMutation}, a::T, b::T)

Test if two nucleotides constitute a TransitionMutation.

source

is_mutation{T<:Nucleotide}(::Type{TransversionMutation}, a::T, b::T)

Test if two nucleotides constitute a TransversionMutation.

source

Computing evolutionary and genetic distances

Just as you can count the number of mutations between two nucleotide sequences, you can compute the evolutionary distance between two nucleotide sequences.

Different evolutionary distance measures

The types of distances that can currently be computed are described below.

# Bio.Var.CountType.

A distance which is the count of the mutations of type T that exist between the two sequences.

source

# Bio.Var.ProportionType.

Proportion{T} is a distance which is the count of the mutations of type T that exist between the two biological sequences, divided by the number of valid sites examined (sites which don't have gap or ambiguous symbols).

In other words this so called p-distance is simply the proportion of sites between each pair of sequences, that are mutated (again where T determines what kind of mutation).

source

# Bio.Var.JukesCantor69Type.

The JukesCantor69 distance is a p-distance adjusted/corrected by the substitution model developed by Jukes and Cantor in 1969.

The Jukes and Cantor model assumes that all substitutions (i.e. a change of a base by another one) have the same probability. This probability is the same for all sites along the DNA sequence.

source

# Bio.Var.Kimura80Type.

The Kimura80 distance uses a substitution model developed by Kimura in 1980. It is somtimes called Kimura's 2 parameter distance.

The model makes the same assumptions as Jukes and Cantor's model, but with a crucial difference: two-kinds of mutation are considered called Transitions and Transversions. Transitions and transversions can occur with different probabilities in this model, however, both transition and transversion rates/probabilities are the same for all sites along the DNA sequence.

source

The distance method

# Bio.Var.distanceFunction.

Compute the pairwise genetic distances for a set of aligned nucleotide sequences.

The distance measure to compute is determined by the type provided as the first parameter. The second parameter provides the set of nucleotide sequences.

source

# Bio.Var.distanceMethod.

distance{T<:MutationType,A<:NucleotideAlphabet}(::Type{Count{T}}, seqs::Vector{BioSequence{A}})

Compute the number of mutations of type T between a set of sequences in a pairwise manner.

This method of distance returns a tuple of the number of mutations of type T between sequences and the number of valid (i.e. non-ambiguous sites) counted by the function.

source

# Bio.Var.distanceMethod.

distance{T<:MutationType,A<:NucleotideAlphabet}(::Type{Proportion{T}}, seqs::Vector{BioSequence{A}})

This method of distance returns a tuple of a vector of the p-distances, and a vector of the number of valid (i.e. non-ambiguous sites) counted by the function.

source

# Bio.Var.distanceMethod.

distance{A<:NucleotideAlphabet}(::Type{JukesCantor69}, seqs::Vector{BioSequence{A}})

This method of distance returns a tuple of the expected JukesCantor69 distance estimate, and the computed variance.

source

# Bio.Var.distanceMethod.

distance{A<:NucleotideAlphabet}(::Type{Kimura80}, seqs::Vector{BioSequence{A}})

This method of distance returns a tuple of the expected Kimura80 distance estimate, and the computed variance.

source