git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5247711
)
JAL-1821 discarded sequence name truncation in summary table
author
tcofoegbu
<tcnofoegbu@dundee.ac.uk>
Wed, 29 Jul 2015 13:44:58 +0000
(14:44 +0100)
committer
tcofoegbu
<tcnofoegbu@dundee.ac.uk>
Wed, 29 Jul 2015 13:44:58 +0000
(14:44 +0100)
src/jalview/ws/uimodel/PDBRestResponse.java
patch
|
blob
|
history
diff --git
a/src/jalview/ws/uimodel/PDBRestResponse.java
b/src/jalview/ws/uimodel/PDBRestResponse.java
index
2814a46
..
0a33672
100644
(file)
--- 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;
}