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 BIOCODONLIBRARY_H 00011 #define BIOCODONLIBRARY_H 00012 00013 using namespace std; 00014 #include <string> 00015 #include <map> 00016 #include <iostream> 00017 #include <cstdlib> 00018 #include <cstdio> 00019 00020 class BioCodonLibrary 00021 { 00022 static bool codonInitialized_; 00023 public: 00024 static map< const string ,string> StdCodon; 00025 00026 static void Initialize(); 00027 static void Clear(); 00028 00029 static string getStdCodon(const unsigned int& i); 00030 static unsigned int getNumberOfStdCodons(); 00031 }; 00032 00033 #endif