BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOPDBREMARK465_H 00002 #define BIOPDBREMARK465_H 00003 00004 #include "BioUtilities.h" 00005 using namespace std; 00006 class BioPdbRemark465 00007 { 00008 vector<string> remark465_; 00009 vector<string> res_name; 00010 vector<int> seq_num; 00011 vector<char> chain_id; 00012 public: 00013 BioPdbRemark465(); 00014 BioPdbRemark465(const string& fi_); 00015 int getNumberOfMissingResidues(); 00016 int getNumberOfMissingResidues(int i); //i is the index of chain 00017 int getNumberOfMissingResidues(char ch); 00018 void showRemark465(ostream& = cout); 00019 vector<string> getMissingResidues(); 00020 vector<string> getMissingResidues(char ch); 00021 string getMissingResidue(int i); //i is the index of chain 00022 int getMissingResiduePosition(int i); //i is the index of chain 00023 vector<int> getMissingResiduePositions(); 00024 vector<int> getMissingResiduePositions(char ch); 00025 }; 00026 00027 #endif