Hi,
Thanks for choosing CTK.
The count(>m, k) is the number of clustered mutation sites with k tags and have >=m mutation frequency. We calculated to cumulative number to estimate the FDR.
For example, if the site has k=15 and m=2, then count(>m, k) is the total sites number with m>=2 and k=15. You can get the same results using this command:
awk '{if($7>15&&$8>=2)print}' cims.output | wc -l
For more information, you can refer to the examples here:
Please let me know if you have more questions.
Thanks!