BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /**************************************************************************** 00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 The BioBhasha : The Biologist's Programming Language 00004 Version 1.0 (19th December 2001) 00005 Prasad, B.V.L.S. 00006 Contact: burrashiva@yahoo.com 00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 *****************************************************************************/ 00009 #ifndef BIOEMBLSV_H 00010 #define BIOEMBLSV_H 00011 00012 00013 using namespace std; 00014 #include <string> 00015 #include <fstream> 00016 #include <sstream> 00017 #include <iostream> 00018 00019 00020 class BioEmblSv 00021 { 00022 string sv_; 00023 00024 public: 00025 BioEmblSv(); 00026 BioEmblSv(const string&); 00027 00028 void setSv(string&); 00029 00030 string getCompoundAccessionNumber(); 00031 long getNcbiIdentifier(); 00032 void showSv(ostream& = cout); 00033 }; 00034 00035 00036 #endif