From 968bc59842cfb502e5e9cc4503efe27b4b4412b2 Mon Sep 17 00:00:00 2001 From: jprocter Date: Tue, 4 Sep 2012 09:57:19 +0100 Subject: [PATCH] off by one for sequence associated annotation --- src/jalview/ws/jws2/AADisorderClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jalview/ws/jws2/AADisorderClient.java b/src/jalview/ws/jws2/AADisorderClient.java index a5bb92d..e971746 100644 --- a/src/jalview/ws/jws2/AADisorderClient.java +++ b/src/jalview/ws/jws2/AADisorderClient.java @@ -215,7 +215,7 @@ public class AADisorderClient extends JabawsAlignCalcWorker implements AlignmentAnnotation annot = createAnnotationRowsForScores( ourAnnot, service.serviceType + " (" + scr.getMethod() + ")", service.getServiceTypeURI()+"/"+ scr.getMethod(), aseq, - base, scr); + base+1, scr); annot.graph = AlignmentAnnotation.LINE_GRAPH; annot.visible = (annotTypeMap==null || annotTypeMap.get(scr.getMethod())==null || annotTypeMap.get(scr.getMethod()).get(INVISIBLE) == null); double[] thrsh=(annotTypeMap==null || annotTypeMap.get(scr.getMethod())==null) ? null : (double[]) annotTypeMap.get(scr.getMethod()).get(THRESHOLD); -- 1.7.10.2