BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOPPINETWORK_H 00002 #define BIOPPINETWORK_H 00003 00004 #include <algorithm> 00005 #include "BioGraph.h" 00006 #include "BioUtilities.h" 00007 #include "BioPsimiTab.h" 00008 #include "BioSif.h" 00009 00010 class BioPPINetwork: public BioGraph 00011 { 00012 public: 00013 BioPPINetwork(); 00014 BioPPINetwork(string& fn); //File with two columns having protein ids 00015 BioPPINetwork(BioPsimiTab psit); 00016 BioPPINetwork(BioSif sif); 00017 }; 00018 00019 #endif