BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /**************************************************************************** 00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 The BioBhasha : A Programming Language for Biologist 00004 Version 1.0 (19th December 2001) 00005 Dr. Prasad, B.V.L.S. 00006 Contact: prasadbvls@helixgenomics.com 00007 Version 1.1 (23th January 2003) 00008 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00009 *****************************************************************************/ 00010 #ifndef BIOGENBANKACCESSION_H 00011 #define BIOGENBANKACCESSION_H 00012 00013 using namespace std; 00014 00015 #include <string> 00016 #include <iostream> 00017 00018 00019 class BioGenBankAccession 00020 { 00021 00022 string accession_; 00023 00024 public: 00025 BioGenBankAccession(); 00026 00027 BioGenBankAccession(const string& de_); 00028 00029 void setAccession(const string& ); 00030 00031 string getAccession(); 00032 00033 string getPrimaryAccessionNumber(); 00034 00035 bool findAccession(const string& ); 00036 00037 void showAccession(ostream& os = cout); 00038 00039 }; 00040 00041 #endif