add annot and motif classes to python interface
[mussa.git] / py / module.cpp
1 #include <boost/python.hpp>
2 using namespace boost::python;
3
4 void export_annot();
5 void export_annotation_colors();
6 void export_conserved_path();
7 void export_glsequence();
8 void export_mussa();
9 void export_nway_paths();
10 void export_sequence();
11 void export_mussa_window();
12
13 BOOST_PYTHON_MODULE(mussa)
14 {
15   export_annot();
16   export_annotation_colors();
17   export_conserved_path();
18   export_glsequence();
19   export_mussa();
20   export_nway_paths();
21   export_sequence();
22   export_mussa_window();
23 }