load and display a motif list
[mussa.git] / py / glsequence.cpp
index 213ce63fee3499f46ccb25deedde40e092e1582e..cd432443db3849cb52d33951ef8118d5b38798cb 100644 (file)
@@ -1,12 +1,13 @@
 #include <boost/python.hpp>
 using namespace boost::python;
 
+#include "alg/annotation_colors.hpp"
 #include "alg/glsequence.hpp"
 #include "alg/sequence.hpp"
 
 void export_glsequence()
 {
-  class_<GlSequence>("GlSequence", init<Sequence &>())
+  class_<GlSequence>("GlSequence", init<Sequence &, AnnotationColors &>())
     .def(init<GlSequence &>())
     .def("draw", &GlSequence::draw)
     .def("sequence", &GlSequence::sequence,