f9e6b4fdc339b1d2c5ca0916f234055ba77bc397
[mussa.git] / py / module.cpp
1 #include "stl_container_adapter.hpp"
2 #include <boost/python.hpp>
3
4 void export_alphabet();
5 void export_annot();
6 void export_annotation_colors();
7 void export_container_exceptions();
8 void export_conserved_path();
9 void export_flps();
10 void export_glsequence();
11 void export_mussa();
12 void export_nway_paths();
13 void export_seq_span();
14 void export_sequence();
15 void export_mussa_window();
16
17 BOOST_PYTHON_MODULE(mussa)
18 {
19   export_container_exceptions();
20   export_alphabet();
21   export_annot();
22   export_annotation_colors();
23   export_conserved_path();
24   export_flps();
25   export_seq_span();
26   export_sequence();
27   export_glsequence();
28   export_mussa();
29   export_nway_paths();
30 }