JAL-1821 discarded sequence name truncation in summary table
authortcofoegbu <tcnofoegbu@dundee.ac.uk>
Wed, 29 Jul 2015 13:44:58 +0000 (14:44 +0100)
committertcofoegbu <tcnofoegbu@dundee.ac.uk>
Wed, 29 Jul 2015 13:44:58 +0000 (14:44 +0100)
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;
       }