X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FColumnSelection.java;h=4a38ec0f5b76a4263457fdc980ecce2daf33d83d;hb=6c36212c1e16557e6afb1b4dba9c28864d52ad4a;hp=309aabfce991073fa492acc5a47826bc8d64c7a1;hpb=2a49f71b0cf62de3942ad625995244db3f291dc6;p=jalview.git diff --git a/src/jalview/datamodel/ColumnSelection.java b/src/jalview/datamodel/ColumnSelection.java index 309aabf..4a38ec0 100644 --- a/src/jalview/datamodel/ColumnSelection.java +++ b/src/jalview/datamodel/ColumnSelection.java @@ -278,6 +278,27 @@ public class ColumnSelection } /** + * add a series of start,end (inclusive) ranges to the column selection + * + * @param rng + * [start_0, end_0, start_1, end_1, ... ] + * @param baseOne + * - when true, ranges are base 1 and will be mapped to base 0 + */ + public void addRangeOfElements(int[] rng, boolean baseOne) + { + int base = baseOne ? -1 : 0; + for (int c = 0; c < rng.length; c += 2) + { + for (int p = rng[c]; p <= rng[c + 1]; p++) + { + selection.add(base + p); + } + } + + } + + /** * clears column selection */ public void clear() @@ -566,6 +587,45 @@ public class ColumnSelection // JBPNote - this method needs to be refactored to become independent of // viewmodel package this.clear(); + + if (ann_row.graph == AlignmentAnnotation.CONTACT_MAP && (filterParams + .getThresholdType() == AnnotationFilterParameter.ThresholdType.ABOVE_THRESHOLD + || filterParams + .getThresholdType() == AnnotationFilterParameter.ThresholdType.BELOW_THRESHOLD)) + { + float tVal = filterParams.getThresholdValue(); + if (ann_row.sequenceRef != null) + { + // TODO - get ContactList from AlignmentView for non-seq-ref associatd + for (int column = 0; column < annotations.length; column++) + { + if (ann_row.annotations[column] == null) + { + continue; + } + + int cpos = ann_row.sequenceRef.findPosition(column) - 1; + ContactListI clist = ann_row.sequenceRef + .getContactListFor(ann_row, cpos); + for (int row = column + 8, rowEnd = clist + .getContactHeight(); row < rowEnd; row++) + { + if (filterParams + .getThresholdType() == AnnotationFilterParameter.ThresholdType.ABOVE_THRESHOLD + ? (clist.getContactAt(row) > tVal) + : (clist.getContactAt(row) < tVal)) + { + addElement(column); + break; + // int column_forrowpos = ann_row.sequenceRef.findIndex(row + 1); + // addElement(column_forrowpos); + } + } + } + } + return selection.size(); + } + int addedCount = 0; int column = 0; do @@ -580,19 +640,6 @@ public class ColumnSelection * filter may have multiple conditions - * these are or'd until a match is found */ - if (ann_row.graph == AlignmentAnnotation.CUSTOMRENDERER) - { - if (ann_row.sequenceRef != null) - { - int cpos = ann_row.sequenceRef.findPosition(column) - 1; - ContactListI clist = ann_row.sequenceRef - .getContactListFor(ann_row, cpos); - ContactRange crange = clist.getRangeFor(0, - clist.getContactHeight()); - value = (float) crange.getMean(); - } - } - if (filterParams .getThresholdType() == AnnotationFilterParameter.ThresholdType.ABOVE_THRESHOLD && value > filterParams.getThresholdValue())