Store Sequence sequence location in a shared_ptr class
[mussa.git] / py / module.cpp
index 632b117fd5f5498f7832dbd14f57942aaf2fb476..a36c573e1ae1b26c1096f1b7318b87afb63157e3 100644 (file)
@@ -1,8 +1,10 @@
 #include <boost/python.hpp>
 using namespace boost::python;
 
+void export_annot();
 void export_annotation_colors();
 void export_conserved_path();
+void export_flps();
 void export_glsequence();
 void export_mussa();
 void export_nway_paths();
@@ -11,11 +13,13 @@ void export_mussa_window();
 
 BOOST_PYTHON_MODULE(mussa)
 {
+  export_annot();
   export_annotation_colors();
   export_conserved_path();
+  export_flps();
+  export_sequence();
   export_glsequence();
   export_mussa();
   export_nway_paths();
-  export_sequence();
-  export_mussa_window();
+  //export_mussa_window();
 }