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 BIOFTQANTICODON_H 00011 #define BIOFTQANTICODON_H 00012 00013 00014 using namespace std; 00015 #include <string> 00016 #include <iostream> 00017 #include <vector> 00018 00019 00020 class BioFTQAntiCodon 00021 { 00022 string aminoacid_; 00023 int finalBasePosition_; 00024 int initialBasePosition_; 00025 00026 protected: 00027 void setBioFTQAntiCodon(const string& bou_); 00028 00029 public: 00030 BioFTQAntiCodon(){} 00031 BioFTQAntiCodon(const string& bou_); 00032 00033 int getInitialBasePosition(); 00034 int getFinalBasePosition(); 00035 00036 string getAntiCodonAminoAcid(); 00037 void showAntiCodon(ostream & = cout,string x= " "); 00038 bool findAntiCodon(const string& ); 00039 }; 00040 00041 00042 #endif