|
'ElMo-Knock'
|
00001 #include <vector> 00002 #include <string> 00003 #include "metabolicnetwork.h" 00004 00005 using namespace std; 00006 00007 #ifndef UFES_H 00008 #define UFES_H 00009 class UFES { 00010 private: 00011 vector<long> efm_indices; //indices of efms for the matrix in metab_network 00012 string key; 00013 MetabolicNetwork *metab_network; 00014 public: 00015 UFES(); 00016 UFES(const UFES &ufes); 00017 UFES(vector<long> efm_indices); 00018 00019 string get_key() { return this->key;} 00020 vector<long>& get_efm_indices() { return this->efm_indices;} 00021 //int is_ufes(); 00022 00023 }; 00024 00025 #endif