Overview
The Rank Sum Test, also known as Mann-Whitney-Wilcoxon U-test after its developers (who are variously credited in subsets and in different orders depending on the sources you read) is a statistical test that aims to determine whether there is significant difference in the values of two populations of data.
Theory
The Wikipedia article about the Rank Sum Test includes some very helpful information on the theoretical underpinnings of the test, as well as various examples of how it can be applied.
Use in GATK
This test is used by several GATK annotations, including two standard annotations that are used for variant recalibration in the Best Practices: MappingQualityRankSum and ReadPosRankSum. In all cases, the idea is to check, for a given candidate variant, whether the properties of the data that support the reference allele are similar to those of the data that support a variant allele. If they are not similar, we conclude that there may be some technical bias and that the candidate variant may be an artifact.
Example: BaseQualityRankSumTest
Note: this example applies Method 2 from the Wikipedia article linked above.
In this example, we have a set of 20 reads, 10 of which support the reference allele and 10 of which support the alternate allele. At first glance, that looks like a clear heterozygous 0/1 site. But to be thorough in our analysis and to account for any technical bias, we want to determine if there is a significant difference in the base qualities of the bases that support the reference allele vs. the bases that support the alternate allele.
Before we proceed, we must define our null hypothesis and alternate hypothesis.
Null hypothesis: There is no difference in the base qualities that support the reference allele and the base qualities that support the alternate allele.
Alternate hypothesis: There is a difference in the base qualities that support the reference allele and the base qualities that support the alternate allele.
Step 1: List the relevant observations
Reference allele base qualities: 20, 25, 26, 30, 32, 40, 47, 50, 53, 60
Alternate allele base qualities: 0, 7, 10, 17, 20, 21, 30, 34, 40, 45
Step 2: Rank the observations
First, we arrange all the observations (base qualities) into a list of values ordered from lowest to highest (reference bases are in bold).
0, 7, 10, 17, 20, 20, 21, 25, 26, 30, 30, 32, 34, 40, 40, 45, 47, 50, 53, 60
Next we determine the ranks of the values. Since there are 20 observations (the base qualities), we have 20 ranks to assign. Whenever there are ties between observations for the rank, we take the rank to be equal to the midpoint of the ranks. For example, for 20(ref) and 20(alt), we have a tie in values, so we assign each observation a rank of (5+6)/2 = 5.5.
The ranks from the above list are (reference ranks are in bold):
1, 2, 3, 4, 5.5, 5.5, 7, 8, 9, 10.5, 10.5, 12, 13, 14.5, 14.5, 16, 17, 18, 19, 20
Step 3: Add up the ranks for each group
We now need to add up the ranks for the base qualities that came from the reference allele and the alternate allele.
Step 4: Calculate U for each group
U is a statistic that tells us the difference between the two rank totals. We can use the U statistic to calculate the z-score (explained below), which will give us our p-value.
Calculate U for each group (n = number of observations in each sample)
Step 5: Calculate the overall z-score
Next, we need to calculate the z-score which will allow us to get the p-value. The z-score is a normalized score that allows us to compare the probability of the U score occurring in our distribution. https://statistics.laerd.com/statistical-guides/standard-score.php
The equation to get the z-score is:
Breaking this equation down:
To calculate our z:
So altogether we have:
Step 6: Calculate and interpret the p-value
The p-value is the probability of obtaining a z-score at least as extreme as the one we got, assuming the null hypothesis is true. In our example, the p-value gives us the probability that there is no difference in the base qualities that support the reference allele and the base qualities that support the alternate allele. The lower the p-value, the less likely it is that there is no difference in the base qualities.
Going to the z-score table, or just using a p-value calculator, we find the p-value to be 0.0312.
This means there is a .0312 chance that the base quality scores of the reference allele and alternate allele are the same. Assuming a p-value cutoff of 0.05, meaning there is less than 5% chance there is no difference in the two groups, and greater than or equal to 95% chance that there is a difference between the two groups, we have enough evidence to reject our null hypothesis that there is no difference in the base qualities of the reference and alternate allele. This indicates there is some bias and that the alternate allele is less well supported by the data than the allele counts suggest.
0 comments
Please sign in to leave a comment.