Skip to content
Snippets Groups Projects
Commit 97777e6a authored by Langella Olivier's avatar Langella Olivier
Browse files

new filter parameter for peprepro

parent 24512329
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,8 @@ AutomaticFilterParameters::AutomaticFilterParameters(
_filter_minimum_peptide_per_match = other._filter_minimum_peptide_per_match;
_filter_is_cross_sample_peptide_number =
other._filter_is_cross_sample_peptide_number;
_filter_peptide_observed_in_more_samples_than =
other._filter_peptide_observed_in_more_samples_than;
}
AutomaticFilterParameters::~AutomaticFilterParameters()
......
......@@ -49,7 +49,11 @@ class AutomaticFilterParameters
pappso::pappso_double _filter_minimum_peptide_evalue = 1;
pappso::pappso_double _filter_minimum_protein_evalue = 1;
unsigned int _filter_minimum_peptide_per_match = 1;
bool _filter_is_cross_sample_peptide_number = false;
/** @brief peprepro filter
* consider a peptide only when it is observed in more than n samples
*/
unsigned int _filter_peptide_observed_in_more_samples_than = 1;
bool _filter_is_cross_sample_peptide_number = false;
};
#endif // AUTOMATICFILTERPARAMETERS_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment