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

apply evalue threshold on mascot files

parent 710474f2
No related branches found
No related tags found
No related merge requests found
......@@ -99,8 +99,9 @@ void IdentificationMascotDatFile::parseTo(Project* p_project) {
qDebug() << "IdentificationMascotDatFile::parseTo end";
}
/*
const bool IdentificationMascotDatFile::isValid(const PeptideEvidence * p_peptide_evidence, const AutomaticFilterParameters & automatic_filter_parameters) const {
return true;
}
*/
......@@ -44,7 +44,7 @@ public:
virtual pappso::SpectrumSp getSpectrumSp(unsigned int scan_number) const override;
virtual void parseTo(Project* p_project) override;
virtual const bool isValid(const PeptideEvidence * p_peptide_evidence, const AutomaticFilterParameters & automatic_filter_parameters) const override;
//virtual const bool isValid(const PeptideEvidence * p_peptide_evidence, const AutomaticFilterParameters & automatic_filter_parameters) const override;
private:
const QFileInfo _mascot_dat_file;
......
......@@ -371,7 +371,7 @@ void MascotDatParser::parseSummaryLine(const QString & summary_line) {
void MascotDatParser::saveAndClearPeptide() {
qDebug() << "MascotDatParser::saveAndClearPeptide begin";
//qDebug() << "MascotDatParser::saveAndClearPeptide begin";
if (_current_peptide.query_index > 0) {
// save
if (_is_decoy_section) {
......@@ -387,7 +387,7 @@ void MascotDatParser::saveAndClearPeptide() {
_current_peptide.fasta_file_list.clear();
_current_peptide.query_index = 0;
_current_peptide.subst = "";
qDebug() << "MascotDatParser::saveAndClearPeptide end";
//qDebug() << "MascotDatParser::saveAndClearPeptide end";
}
......
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