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

all homol coords forward now so change code to handle this.

parent bd33ec2f
No related branches found
No related tags found
No related merge requests found
......@@ -29,9 +29,9 @@
* Exported functions: see zmapView_P.h
*
* HISTORY:
* Last edited: Jul 2 13:40 2009 (rds)
* Last edited: Aug 27 17:35 2009 (edgrif)
* Created: Thu Jun 28 18:10:08 2007 (edgrif)
* CVS info: $Id: zmapViewCallBlixem.c,v 1.18 2009-07-03 09:48:22 rds Exp $
* CVS info: $Id: zmapViewCallBlixem.c,v 1.19 2009-09-02 13:55:28 edgrif Exp $
*-------------------------------------------------------------------
*/
......@@ -1125,21 +1125,16 @@ static gboolean printAlignment(ZMapFeature feature, blixemData blixem_data)
{
qframe_strand = '-' ;
qframe = 1 + (((max - min + 1) - qstart) % 3) ;
sstart = feature->feature.homol.y2 ;
send = feature->feature.homol.y1 ;
}
else
{
qframe_strand = '+' ;
qframe = 1 + ((qstart - 1) % 3) ;
}
sstart = feature->feature.homol.y1 ;
send = feature->feature.homol.y2 ;
sstart = feature->feature.homol.y1 ;
send = feature->feature.homol.y2 ;
}
/* Not sure about this.... */
......
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