X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FSequenceAnnotationReport.java;h=613c01fa62d841ce74eed4a49c8a4acab4cee28e;hb=3d0101179759ef157b088ea135423cd909512d9f;hp=6c8f40f9bf3ba9b9b5e1a1e1e854fa327dd7b74e;hpb=7c70cb09e9de68ab567e38520d6d09f0c17a3939;p=jalview.git diff --git a/src/jalview/io/SequenceAnnotationReport.java b/src/jalview/io/SequenceAnnotationReport.java index 6c8f40f..613c01f 100644 --- a/src/jalview/io/SequenceAnnotationReport.java +++ b/src/jalview/io/SequenceAnnotationReport.java @@ -77,14 +77,14 @@ public class SequenceAnnotationReport { return 1; } - int comp = s1 == null ? -1 : (s2 == null ? 1 : s1 - .compareToIgnoreCase(s2)); + int comp = s1 == null ? -1 + : (s2 == null ? 1 : s1.compareToIgnoreCase(s2)); if (comp == 0) { String a1 = ref1.getAccessionId(); String a2 = ref2.getAccessionId(); - comp = a1 == null ? -1 : (a2 == null ? 1 : a1 - .compareToIgnoreCase(a2)); + comp = a1 == null ? -1 + : (a2 == null ? 1 : a1.compareToIgnoreCase(a2)); } return comp; } @@ -150,8 +150,7 @@ public class SequenceAnnotationReport sb.append("
"); } sb.append(feature.getType()).append(" ").append(feature.getBegin()) - .append(":") - .append(feature.getEnd()); + .append(":").append(feature.getEnd()); } } else @@ -223,8 +222,8 @@ public class SequenceAnnotationReport // check score should be shown if (!Float.isNaN(feature.getScore())) { - float[][] rng = (minmax == null) ? null : minmax.get(feature - .getType()); + float[][] rng = (minmax == null) ? null + : minmax.get(feature.getType()); if (rng != null && rng[0] != null && rng[0][0] != rng[0][1]) { sb.append(" Score=").append(String.valueOf(feature.getScore())); @@ -268,21 +267,19 @@ public class SequenceAnnotationReport { for (List urllink : createLinksFrom(null, urlstring)) { - sb.append("
" + sb.append("
" + (urllink.get(0).toLowerCase() - .equals(urllink.get(1).toLowerCase()) ? urllink - .get(0) : (urllink.get(0) + ":" + urllink - .get(1))) + .equals(urllink.get(1).toLowerCase()) + ? urllink.get(0) + : (urllink.get(0) + ":" + + urllink.get(1))) + "
"); } } catch (Exception x) { - System.err.println("problem when creating links from " - + urlstring); + System.err.println( + "problem when creating links from " + urlstring); x.printStackTrace(); } } @@ -456,8 +453,8 @@ public class SequenceAnnotationReport SequenceI sequence, boolean showDbRefs, boolean showNpFeats, Map minmax) { - int maxWidth = createSequenceAnnotationReport(tip, sequence, - showDbRefs, showNpFeats, minmax, true); + int maxWidth = createSequenceAnnotationReport(tip, sequence, showDbRefs, + showNpFeats, minmax, true); if (maxWidth > 60) {