show where the Ns are
[mussa.git] / alg / glseqbrowser.cpp
index 03afaf56c4fac3707735f9afa90752d96fea19ab..5accb2cd0dc2bc89342b977c6e810a66409d5306 100644 (file)
@@ -308,14 +308,14 @@ double GlSeqBrowser::zoom() const
   return zoom_level;
 }
 
-void GlSeqBrowser::setColorMapper(boost::shared_ptr<AnnotationColors> cm)
+void GlSeqBrowser::setColorMapper(AnnotationColorsRef cm)
 {
   color_mapper = cm;
 }
 
-const AnnotationColors& GlSeqBrowser::colorMapper()
+const AnnotationColorsRef GlSeqBrowser::colorMapper()
 {
-  return *color_mapper;
+  return color_mapper;
 }
 
 void GlSeqBrowser::clear()
@@ -355,6 +355,9 @@ void GlSeqBrowser::push_sequence(GlSequence gs)
 void GlSeqBrowser::push_sequence(GlSequenceRef gs)
 {
   GlSequenceRef new_gs(new GlSequence(gs));
+  // mark where the undefined sequence is
+  new_gs->add_annotations_for_undefined_sequence(draw_narrow_track);
+  
   clear_links();
   track_container.push_back(new_gs);
   update_layout();
@@ -362,7 +365,7 @@ void GlSeqBrowser::push_sequence(GlSequenceRef gs)
     path_segments.push_back(pair_segment_map());
 }
 
-const std::vector<boost::shared_ptr<GlSequence> >& GlSeqBrowser::sequences() const
+const std::vector<GlSequenceRef >& GlSeqBrowser::sequences() const
 {
   return track_container;
 }