BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOSCOPFOLD_H 00002 #define BIOSCOPFOLD_H 00003 00004 00005 #include <iostream> 00006 #include <vector> 00007 #include <string> 00008 #include <fstream> 00009 #include "BioScopSuperFamily.h" 00010 00011 using namespace std; 00012 00013 class BioScopFold 00014 { 00015 int sunId_; 00016 vector <BioScopSuperFamily> superFamilies_; 00017 string description_; 00018 int foldId_; 00019 00020 public: 00021 BioScopFold(); 00022 BioScopFold(const string& ); // Filename == dir.des.scop...txt 00023 00024 void setFold(vector <string> ); 00025 00026 int getScopUniqueId(); 00027 int getFoldId(); 00028 int getNumberOfSuperFamilies(); 00029 string getDescription(); 00030 BioScopSuperFamily getSuperFamily(int); 00031 // bool findFold(const string& ); 00032 // bool findDescription( const string & ); 00033 }; 00034 00035 00036 #endif 00037