BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOSIF_H 00002 #define BIOSIF_H 00003 00004 #include <iostream> 00005 #include <fstream> 00006 #include <vector> 00007 #include <algorithm> 00008 #include "BioUtilities.h" 00009 #include "BioSifInteraction.h" 00010 00011 using namespace std; 00012 00013 class BioSif 00014 { 00015 vector<BioSifInteraction> bsi_; 00016 public: 00017 BioSif(); 00018 BioSif(string fn); 00019 BioSifInteraction getSifInteraction(int ind); 00020 long getNumberOfInteractions(); 00021 }; 00022 00023 #endif