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