Does xiSearch consider substitutions by default? #127
|
Hi, |
Replies: 3 comments 4 replies
|
Hi, |
|
Also- you are currently defining modifications twice in your config both inside the crosslinker as fully variable (searched on everything) and in separate lines as linear only. So you are searching them twice with different names. The definition inside the crosslinker is sufficient and you can remove the linear modification lines. |
|
The reason you see this is, that xiSEARCH does it's best to keep a equivalent target and decoy database. The basic "problem" is that a peptide should be either target or decoy (just makes FDR so much easier). However when generating decoy peptides (by digesting decoy proteins) it does happen that a decoy peptide sequence does already exist as a target peptide. Now the simplest resolution would be to drop the decoy - however that means your decoy DB gets smaller. To address that xiSEARCH actually generates permutations of these peptides and if it finds one not seen as target yet, accepts that one. Mainly happens for short peptides and if you database size increases the smaller becomes the chance to find a novel permutation. Hence for very large databases the target decoy equivalence for short peptides becomes problematic. This is by the way one reason why xiFDR excludes short peptides from results before filtering. |

The reason you see this is, that xiSEARCH does it's best to keep a equivalent target and decoy database.
The basic "problem" is that a peptide should be either target or decoy (just makes FDR so much easier). However when generating decoy peptides (by digesting decoy proteins) it does happen that a decoy peptide sequence does already exist as a target peptide. Now the simplest resolution would be to drop the decoy - however that means your decoy DB gets smaller.
To address that xiSEARCH actually generates permutations of these peptides and if it finds one not seen as target yet, accepts that one.
Mainly happens for short peptides and if you database size increases the smaller becomes the …