Exercises marked with (*) require further reading/search beyond the suggested texts.
3. What is the minimum number of reversals that have to be applied to the first genome below in order to obtain the second genome below?
Answer:
Three reversals can be applied to the first genome to get the second one:
Argument:
We need at least 3 reversals to obtain the second genome from the first. To see this, let G1 and G2 be the adjacency sets for the first and second genomes, respectively.
G1 = {
ND3hND4Lt,
ND4LhND4t,
ND4hND5t,
ND5hND6h,
ND6tCYTBt,
CYTBh12St,
12Sh16St,
16ShND1t,
ND1hND2t
}
G2 = {
ND3hND5h,
ND5tND4h,
ND4tND4Lh,
ND4LtND6t,
ND6hCYTBt,
CYTBhND1h,
ND1t16Sh,
16St12Sh,
12StND2t
}
The adjacencies that are in both sets are highlighted. There are 5 adjacencies present in each genome but not in the other. Two genomes with a reversal distance of 1 differ in at most 2 adjacencies, while when the distance is 2, they differ in at most 4 adjacencies, and so on.
Since there are 5 adjacencies unique to each of our genomes, the reversal distance between them cannot be less than 3. So, a series of three reversals is optimal.
© 2015 Joao Meidanis