X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fjalview%2Fanalysis%2FAlignmentSorterTest.java;h=b1f0edc097c1258204353e572018affc91cc0b61;hb=7bf12085343eb53718fc159b281823243f2c9f9b;hp=0255f666bff7a03517b57f995126a8242bcde4b0;hpb=45715055c536e1c31020b8ab7ce30b2e28f3aafd;p=jalview.git diff --git a/test/jalview/analysis/AlignmentSorterTest.java b/test/jalview/analysis/AlignmentSorterTest.java index 0255f66..b1f0edc 100644 --- a/test/jalview/analysis/AlignmentSorterTest.java +++ b/test/jalview/analysis/AlignmentSorterTest.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.analysis; import static org.testng.Assert.assertSame; @@ -31,7 +51,7 @@ public class AlignmentSorterTest /* * sort with no score features does nothing */ - PA.setValue(AlignmentSorter.class, "lastSortByFeatureScore", null); + PA.setValue(AlignmentSorter.class, "sortByFeatureCriteria", null); AlignmentSorter.sortByFeature(null, null, 0, al.getWidth(), al, AlignmentSorter.FEATURE_SCORE); @@ -47,24 +67,25 @@ public class AlignmentSorterTest * seq3 KD(-4), KD(3.0) average -0.5 * seq4 Helix(NaN) - should sort as if largest score */ - seq1.addSequenceFeature(new SequenceFeature("Cath", "", 2, 3, 2.0f, - "g1")); - seq1.addSequenceFeature(new SequenceFeature("Pfam", "", 4, 5, 4.0f, - "g2")); - seq2.addSequenceFeature(new SequenceFeature("Cath", "", 2, 3, 2.5f, - "g3")); - seq2.addSequenceFeature(new SequenceFeature("Metal", "", 2, 3, - Float.NaN, "g4")); + seq1.addSequenceFeature( + new SequenceFeature("Cath", "", 2, 3, 2.0f, "g1")); + seq1.addSequenceFeature( + new SequenceFeature("Pfam", "", 4, 5, 4.0f, "g2")); + seq2.addSequenceFeature( + new SequenceFeature("Cath", "", 2, 3, 2.5f, "g3")); + seq2.addSequenceFeature( + new SequenceFeature("Metal", "", 2, 3, Float.NaN, "g4")); seq3.addSequenceFeature(new SequenceFeature("kD", "", 2, 3, -4f, "g5")); - seq3.addSequenceFeature(new SequenceFeature("kD", "", 5, 6, 3.0f, "g6")); - seq4.addSequenceFeature(new SequenceFeature("Helix", "", 2, 3, - Float.NaN, "g7")); + seq3.addSequenceFeature( + new SequenceFeature("kD", "", 5, 6, 3.0f, "g6")); + seq4.addSequenceFeature( + new SequenceFeature("Helix", "", 2, 3, Float.NaN, "g7")); /* * sort by ascending score, no filter on feature type or group - * NB sort order for the same feature set (none) is toggled so descending + * NB sort order for the same feature set (none) gets toggled, so descending */ - PA.setValue(AlignmentSorter.class, "sortByFeatureScoreAscending", true); + PA.setValue(AlignmentSorter.class, "sortByFeatureAscending", true); AlignmentSorter.sortByFeature(null, null, 0, al.getWidth(), al, AlignmentSorter.FEATURE_SCORE); assertSame(al.getSequenceAt(3), seq3); // -0.5 @@ -100,8 +121,9 @@ public class AlignmentSorterTest * seq3 average is now 3.0 * next sort is ascending (not toggled) as for a different group spec */ - List groups = Arrays.asList(new String[] { "g1", "g2", "g3", - "g6" }); + List groups = Arrays + .asList(new String[] + { "g1", "g2", "g3", "g6" }); AlignmentSorter.sortByFeature(types, groups, 0, al.getWidth(), al, AlignmentSorter.FEATURE_SCORE); assertSame(al.getSequenceAt(0), seq1); // 2.0 @@ -114,7 +136,7 @@ public class AlignmentSorterTest * seq1 is now 2.0, seq3 is now -4 */ // fails because seq1.findPosition(4) returns 4 - // although residue 4 is in column 5! + // although residue 4 is in column 5! - JAL-2544 AlignmentSorter.sortByFeature(null, null, 0, 4, al, AlignmentSorter.FEATURE_SCORE); assertSame(al.getSequenceAt(0), seq3); // -4