This function compares two haplotypes and returns a summary of the
differences.
Usage
diffHaplo(h, a = 1, b = 2)
Arguments
h
an object of class "haplotype".
a, b
two integers (or character strings) giving the indices (or
labels) of the two haplotypes to be compared.
Value
a data frame with three columns named pos (position of the
differences) and the labels of the two haplotypes compared.
Details
This function prints the number of transitions and transversions
between both sequences, and returns a data frame with three columns
giving the positions of the differences and the nucleotides in each
sequence at these positions.
# NOT RUN {data(woodmouse)
h <- haplotype(woodmouse)
diffHaplo(h) # compares the 1st and 2nd haplotypesdiffHaplo(h, 1, 3)
diffHaplo(h, "I", "III") # same than above but using labels# }