From a9252f4b00202399f793718bfb2bf4b3203c4c71 Mon Sep 17 00:00:00 2001 From: tcofoegbu Date: Wed, 29 Jul 2015 14:44:58 +0100 Subject: [PATCH] JAL-1821 discarded sequence name truncation in summary table --- src/jalview/ws/uimodel/PDBRestResponse.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/jalview/ws/uimodel/PDBRestResponse.java b/src/jalview/ws/uimodel/PDBRestResponse.java index 2814a46..0a33672 100644 --- a/src/jalview/ws/uimodel/PDBRestResponse.java +++ b/src/jalview/ws/uimodel/PDBRestResponse.java @@ -140,8 +140,7 @@ public class PDBRestResponse .size() + 1 : diplayFields.size()]; if (associatedSeq != null) { - this.associatedSequence = (associatedSeq.length() > 18) ? associatedSeq - .substring(0, 18) : associatedSeq; + this.associatedSequence = associatedSeq; summaryRowData[0] = associatedSequence; colCounter = 1; } -- 1.7.10.2