-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
70 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
### Comet parameter: fragindex_max_fragmentmass | ||
|
||
- This parameter defines the maximum fragment ion mass to include in the fragment ion index | ||
- This parameter defines the maximum fragment ion mass to include | ||
in the fragment ion index. | ||
- The mass is the singly charged fragment mass. | ||
- A smaller value will use less memory and generate the fragment ion | ||
index faster as less fragment ions will be added to the index. | ||
- Specifying too small a value may remove fragment ions | ||
from consideration that would otherwise aid in peptides passing the | ||
fragment ion index filter. | ||
- If this value is not specified, the default value is 2000.0. | ||
- Valid values are a positive decimal number. | ||
|
||
Example: | ||
``` | ||
fragindex_max_fragmentmass = 1500.0 | ||
fragindex_max_fragmentmass = 2000.0 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 13 additions & 5 deletions
18
parameters/parameters_202402/fragindex_num_spectrumpeaks.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
### Comet parameter: fragindex_num_spectrumpeaks | ||
|
||
- This parameter defines the number of mass/intensity pairs query against the | ||
- This parameter defines the number of mass/intensity pairs that would be | ||
queried against the fragment ion index. | ||
- Raw peaks are parsed and stored. The mass dimension is binned per the | ||
[fragment_bin_tol](fragment_bin_tol.html) and the most intense binned peaks | ||
are used to query the fragment ion index. | ||
- The larger this value is, the slower a search will be as each additional | ||
peak, from every query spectra, will need to be searched against the | ||
fragment ion index. | ||
- Raw peaks from the query spectrum are stored, starting from the most intense peak. | ||
- The larger this value is set, the slower a search will be as each additional | ||
peak will need to be queried against the fragment ion index. | ||
- Valid value is a positive integer. | ||
- Note that specifying too small a value can be detrimental as, for some | ||
spectra, correct peptides may not pass the fragment ion index filter | ||
if there are not enough peaks queried. | ||
- Valid values are integers, 1 or larger. | ||
|
||
Example: | ||
``` | ||
fragindex_num_spectrumpeaks = 100 | ||
fragindex_num_spectrumpeaks = 150 | ||
fragindex_num_spectrumpeaks = 200 | ||
``` |
14 changes: 11 additions & 3 deletions
14
parameters/parameters_202402/fragindex_skipreadprecursors.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters