95// Goal is to test that we can catch all of the six ways in which we can be wrong or right in identifying a match:
96
97// Ways to be right:
98// A) Only one peptide within search radius of feature; peptide is correct and we call it correct; TP
99// B) No peptides within search radius of feature; next nearest peptide is incorrect and we call it incorrect; TN
100// C) More than one peptide within search radius of feature; one peptide is correct and we call it correct; TP; the rest are incorrect and we've called them incorrect; TN
101
102// Ways to be wrong:
103// D) Only one peptide within search radius of feature; peptide is incorrect and we call it correct; FP
104// E) No peptides within search radius of feature; next nearest peptide is correct and we call it incorrect; FN;
105// F) More than one peptide within search radius of feature; one peptide is correct and we call it incorrect; FN; the rest are incorrect and we've called one of them correct; FP