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 BIOGENBANKSEQUENCE_H 00011 #define BIOGENBANKSEQUENCE_H 00012 00013 using namespace std; 00014 00015 #include <string> 00016 #include <vector> 00017 #include <fstream> 00018 #include "BioDnaSequence.h" 00019 00020 class BioGenBankSequence : public BioDnaSequence 00021 { 00022 00023 protected: 00024 void setSequence(string, vector <string> ); 00025 public: 00026 BioGenBankSequence(); 00027 BioGenBankSequence(const string& de_); 00028 void showSequence(ostream & =cout); 00029 00030 }; 00031 00032 #endif