JAL-1821 discarded sequence name truncation in summary table
[jalview.git] / src / jalview / ws / uimodel / PDBRestResponse.java
index 2814a46..0a33672 100644 (file)
@@ -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;
       }