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

wip : protein store

parent 5d56f9dc
No related branches found
No related tags found
No related merge requests found
......@@ -28,3 +28,18 @@
******************************************************************************/
#include "proteinstore.h"
ProteinXtpSp & ProteinStore::getInstance(ProteinXtpSp & peptide_in) {
std::pair<std::unordered_map< QString, ProteinXtpSp>::iterator,bool> ret = _map_accession_protein_list.insert(std::pair<QString, ProteinXtpSp>(peptide_in.get()->getAccession(),peptide_in));
if (ret.second) {
setProteinInformations(ret.first->second);
}
return ret.first->second;
}
void ProteinStore::setProteinInformations(ProteinXtpSp & peptide_in) {
}
......@@ -32,8 +32,21 @@
#ifndef PROTEINSTORE_H
#define PROTEINSTORE_H
#include "../core/proteinxtp.h"
#include <QString>
#include <unordered_map>
class ProteinStore
{
ProteinXtpSp & getInstance(ProteinXtpSp & protein_in);
private :
void setProteinInformations(ProteinXtpSp & protein_in);
private :
std::unordered_map<QString, ProteinXtpSp> _map_accession_protein_list;
};
#endif // PROTEINSTORE_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