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

WIP : broken

parent e44804ad
No related branches found
No related tags found
No related merge requests found
...@@ -39,24 +39,12 @@ Project::~Project() ...@@ -39,24 +39,12 @@ Project::~Project()
} }
} }
void Project::updateAutomaticFilters() {
}
ProjectSp Project::makeProjectSp() const { ProjectSp Project::makeProjectSp() const {
return std::make_shared<Project>(*this); return std::make_shared<Project>(*this);
} }
void Project::setFilterPeptideEvalue( pappso::pappso_double evalue) {
_filter_minimum_peptide_evalue = evalue;
}
void Project::setFilterProteinEvalue( pappso::pappso_double evalue) {
_filter_minimum_protein_evalue = evalue;
}
void Project::setFilterMinimumPeptidePerMatch(unsigned int number) {
_filter_minimum_peptide_per_match = number;
}
void Project::setFilterCrossSamplePeptideNumber(bool cross) {
_filter_is_cross_sample_peptide_number = cross;
}
IdentificationGroup* Project::newIdentificationGroup() { IdentificationGroup* Project::newIdentificationGroup() {
_p_current_identification_group = new IdentificationGroup(this); _p_current_identification_group = new IdentificationGroup(this);
_identification_goup_list.push_back(_p_current_identification_group); _identification_goup_list.push_back(_p_current_identification_group);
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include<memory> #include<memory>
#include "identificationgroup.h" #include "identificationgroup.h"
#include <pappsomspp/types.h> #include "automaticfilterparameters.h"
class Project; class Project;
typedef std::shared_ptr<Project> ProjectSp; typedef std::shared_ptr<Project> ProjectSp;
...@@ -33,8 +33,9 @@ typedef std::shared_ptr<Project> ProjectSp; ...@@ -33,8 +33,9 @@ typedef std::shared_ptr<Project> ProjectSp;
class PeptideMatch; class PeptideMatch;
class ProteinMatch; class ProteinMatch;
class Project class Project : public QObject
{ {
Q_OBJECT
public: public:
Project(); Project();
~Project(); ~Project();
...@@ -49,20 +50,22 @@ public: ...@@ -49,20 +50,22 @@ public:
/** @brief is it valid regarding threshold and project rules /** @brief is it valid regarding threshold and project rules
*/ */
bool isValid(ProteinMatch* p_protein_match) const; bool isValid(ProteinMatch* p_protein_match) const;
/** @brief validate or invalidate peptides and proteins based automatic filters and manual checks
* */
void updateAutomaticFilters(const AutomaticFilterParameters & automatic_filter_parameters);
void setFilterPeptideEvalue( pappso::pappso_double evalue); signals:
void setFilterProteinEvalue( pappso::pappso_double evalue); /** @brief signal when automatic filters are applied and project is ready
void setFilterMinimumPeptidePerMatch(unsigned int number); * */
void setFilterCrossSamplePeptideNumber(bool cross); void projectReady();
private : private :
std::vector<IdentificationGroup *> _identification_goup_list; std::vector<IdentificationGroup *> _identification_goup_list;
IdentificationGroup* _p_current_identification_group = nullptr; IdentificationGroup* _p_current_identification_group = nullptr;
pappso::pappso_double _filter_minimum_peptide_evalue=1; AutomaticFilterParameters _automatic_filter_parameters;
pappso::pappso_double _filter_minimum_protein_evalue=1;
unsigned int _filter_minimum_peptide_per_match=1;
bool _filter_is_cross_sample_peptide_number=false;
}; };
#endif // PROJECT_H #endif // PROJECT_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