X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fanalysis%2FAlignmentSorter.java;h=a3493f7d69363c7b7a274b84f3a44aaeb419e584;hb=198a4921d78d176afc0cb709bdbcb4627afd1e8b;hp=cde4b4ffee0d4c25f4d2f869773ec1386217d04c;hpb=055eda0580313a9449ec41004f26e5b06ebdfc07;p=jalview.git diff --git a/src/jalview/analysis/AlignmentSorter.java b/src/jalview/analysis/AlignmentSorter.java index cde4b4f..a3493f7 100755 --- a/src/jalview/analysis/AlignmentSorter.java +++ b/src/jalview/analysis/AlignmentSorter.java @@ -25,7 +25,12 @@ import jalview.util.*; /** * Routines for manipulating the order of a multiple sequence alignment - * TODO: this class retains some global states concerning sort-order which should be made attributes for the caller's alignment visualization. + * TODO: this class retains some global states concerning sort-order which should be made attributes for the caller's alignment visualization. + * TODO: refactor to allow a subset of selected sequences to be sorted within the context of a whole alignment. + * Sort method template is: SequenceI[] tobesorted, [ input data mapping to each tobesorted element to use ], Alignment context of tobesorted that are to be re-ordered, boolean sortinplace, [special data - ie seuqence to be sorted w.r.t.]) + * sortinplace implies that the sorted vector resulting from applying the operation to tobesorted should be mapped back to the original positions in alignment. + * Otherwise, normal behaviour is to re order alignment so that tobesorted is sorted and grouped together starting from the first tobesorted position in the alignment. + * e.g. (a,tb2,b,tb1,c,tb3 becomes a,tb1,tb2,tb3,b,c) */ public class AlignmentSorter { @@ -39,12 +44,13 @@ public class AlignmentSorter private static String lastSortByScore; /** - * Sort by Percentage Identity + * Sort by Percentage Identity w.r.t. s * * @param align AlignmentI * @param s SequenceI + * @param tosort sequences from align that are to be sorted. */ - public static void sortByPID(AlignmentI align, SequenceI s) + public static void sortByPID(AlignmentI align, SequenceI s, SequenceI[] tosort) { int nSeq = align.getHeight();