From: tcofoegbu Date: Wed, 29 Jul 2015 13:44:58 +0000 (+0100) Subject: JAL-1821 discarded sequence name truncation in summary table X-Git-Tag: Release_2_10_0~561 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=a9252f4b00202399f793718bfb2bf4b3203c4c71;p=jalview.git JAL-1821 discarded sequence name truncation in summary table --- 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; }