From 89160a272b5de4feda8a2adf3f45eb288950c513 Mon Sep 17 00:00:00 2001 From: tva Date: Wed, 3 Jul 2019 11:12:48 +0100 Subject: [PATCH 1/1] JAL-2629 removed empty line produced under sequence report --- src/jalview/io/SequenceAnnotationReport.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/jalview/io/SequenceAnnotationReport.java b/src/jalview/io/SequenceAnnotationReport.java index d3191f9..cb30cc7 100644 --- a/src/jalview/io/SequenceAnnotationReport.java +++ b/src/jalview/io/SequenceAnnotationReport.java @@ -395,9 +395,10 @@ public class SequenceAnnotationReport } } - sb.append("
"); + if (sequence.getAnnotation("Search Scores") != null) { + sb.append("
"); String eValue = " E-Value: " + sequence.getAnnotation("Search Scores")[0].getEValue(); String bitScore = " Bit Score: " -- 1.7.10.2