Skip to content
Snippets Groups Projects
Commit 0d8c62dc authored by edgrif's avatar edgrif
Browse files

minor change to info panel to keep subparts label even when none are present.

parent 9de07084
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,9 @@
*
* Exported functions: See zmapControl_P.h
* HISTORY:
* Last edited: Feb 14 14:08 2008 (edgrif)
* Last edited: Feb 22 10:45 2008 (edgrif)
* Created: Tue Jul 18 10:02:04 2006 (edgrif)
* CVS info: $Id: zmapControlWindowInfoPanel.c,v 1.15 2008-02-14 15:12:45 edgrif Exp $
* CVS info: $Id: zmapControlWindowInfoPanel.c,v 1.16 2008-02-22 11:33:36 edgrif Exp $
*-------------------------------------------------------------------
*/
......@@ -160,6 +160,11 @@ void zmapControlInfoPanelSetText(ZMap zmap, ZMapFeatureDesc feature_desc)
(feature_desc->sub_feature_query_start ? ", " : ""),
(feature_desc->sub_feature_query_end ? feature_desc->sub_feature_query_end : ""),
feature_desc->sub_feature_length) ;
else if (feature_desc->type == ZMAPSTYLE_MODE_ALIGNMENT)
text[3] = g_strdup("<UNGAPPED ALIGNMENT>") ;
else if (feature_desc->type == ZMAPSTYLE_MODE_TRANSCRIPT)
text[3] = g_strdup("<NO INTRONS>") ;
text[4] = feature_desc->feature_frame ;
text[5] = feature_desc->feature_score ;
text[6] = feature_desc->feature_type ;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment