basic wrapping of Annotations
[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_annotations();
8 void export_container_exceptions();
9 void export_conserved_path();
10 void export_flps();
11 void export_glsequence();
12 void export_mussa();
13 void export_nway_paths();
14 void export_seq_span();
15 void export_sequence();
16 void export_mussa_window();
17
18 BOOST_PYTHON_MODULE(mussa)
19 {
20   export_container_exceptions();
21   export_alphabet();
22   export_annot();
23   export_annotation_colors();
24   export_annotations();
25   export_conserved_path();
26   export_flps();
27   export_seq_span();
28   export_sequence();
29   export_glsequence();
30   export_mussa();
31   export_nway_paths();
32 }