JAL-2738 update spikes/mungo
[jalview.git] / src / jalview / datamodel / SequenceFeature.java
index 0352918..4208ce1 100755 (executable)
@@ -563,6 +563,10 @@ public class SequenceFeature implements FeatureLocationI
     {
       sb.append(String.format("%s %d-%d %s", type, begin, end, description));
     }
+    if (!Float.isNaN(score) && score != 0f)
+    {
+      sb.append(" score=").append(score);
+    }
     if (featureGroup != null)
     {
       sb.append(" (").append(featureGroup).append(")");