X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2Ffeatures%2FFeatureStore.java;h=fe575e0186e0ee76ed8cd259effc80c8b38d99f9;hb=99b6c1ca13af92cd8867971986a05664b0cd787c;hp=6be33ef1b50d03615a3abe506419a7e8c1022c24;hpb=8f8c3ca7ac8630c75b76fcbab825444c5c672b86;p=jalview.git diff --git a/src/jalview/datamodel/features/FeatureStore.java b/src/jalview/datamodel/features/FeatureStore.java index 6be33ef..fe575e0 100644 --- a/src/jalview/datamodel/features/FeatureStore.java +++ b/src/jalview/datamodel/features/FeatureStore.java @@ -1,27 +1,135 @@ +/* + * 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.datamodel.features; import jalview.datamodel.SequenceFeature; import java.util.ArrayList; +import java.util.Collection; import java.util.Collections; -import java.util.Comparator; import java.util.HashSet; import java.util.List; import java.util.Set; -/** - * A data store for a set of sequence features that supports efficient lookup of - * features overlapping a given range. Intended for (but not limited to) storage - * of features for one sequence and feature type. - * - * @author gmcarstairs - * - */ -public class FeatureStore +public abstract class FeatureStore implements FeatureStoreI { - Comparator startOrdering = new RangeComparator(true); - Comparator endOrdering = new RangeComparator(false); + /** + * Answers the 'length' of the feature, counting 0 for non-positional features + * and 1 for contact features + * + * @param feature + * @return + */ + protected static int getFeatureLength(SequenceFeature feature) + { + if (feature.isNonPositional()) + { + return 0; + } + if (feature.isContactFeature()) + { + return 1; + } + return 1 + feature.getEnd() - feature.getBegin(); + } + + /** + * Answers true if the list contains the feature, else false. This method is + * optimised for the condition that the list is sorted on feature start + * position ascending, and will give unreliable results if this does not hold. + * + * @param features + * @param feature + * @return + */ + @Override + public boolean listContains(List features, + SequenceFeature feature) + { + if (features == null || feature == null) + { + return false; + } + + /* + * locate the first entry in the list which does not precede the feature + */ + int pos = findFirstBegin(features, feature.begin); + int len = features.size(); + while (pos < len) + { + SequenceFeature sf = features.get(pos); + if (sf.getBegin() > feature.getBegin()) + { + return false; // no match found + } + if (sf.equals(feature)) + { + return true; + } + pos++; + } + return false; + } + + /** + * A helper method to return the maximum of two floats, where a non-NaN value + * is treated as 'greater than' a NaN value (unlike Math.max which does the + * opposite) + * + * @param f1 + * @param f2 + */ + protected static float max(float f1, float f2) + { + if (Float.isNaN(f1)) + { + return Float.isNaN(f2) ? f1 : f2; + } + else + { + return Float.isNaN(f2) ? f1 : Math.max(f1, f2); + } + } + + /** + * A helper method to return the minimum of two floats, where a non-NaN value + * is treated as 'less than' a NaN value (unlike Math.min which does the + * opposite) + * + * @param f1 + * @param f2 + */ + protected static float min(float f1, float f2) + { + if (Float.isNaN(f1)) + { + return Float.isNaN(f2) ? f1 : f2; + } + else + { + return Float.isNaN(f2) ? f1 : Math.min(f1, f2); + } + } /* * Non-positional features have no (zero) start/end position. @@ -30,14 +138,6 @@ public class FeatureStore List nonPositionalFeatures; /* - * An ordered list of features, with the promise that no feature in the list - * properly contains any other. This constraint allows bounded linear search - * of the list for features overlapping a region. - * Contact features are not included in this list. - */ - List nonNestedFeatures; - - /* * contact features ordered by first contact position */ List contactFeatureStarts; @@ -48,30 +148,83 @@ public class FeatureStore List contactFeatureEnds; /* - * Nested Containment List is used to hold any features that are nested - * within (properly contained by) any other feature. This is a recursive tree - * which supports depth-first scan for features overlapping a range. - * It is used here as a 'catch-all' fallback for features that cannot be put - * into a simple ordered list without invalidating the search methods. + * IntervalStore holds remaining features and provides efficient + * query for features overlapping any given interval + */ + Collection features; + + /* + * Feature groups represented in stored positional features + * (possibly including null) */ - NCList nestedFeatures; + Set positionalFeatureGroups; /* - * Feature groups represented in the stored features + * Feature groups represented in stored non-positional features * (possibly including null) */ - Set featureGroups; + Set nonPositionalFeatureGroups; + + /* + * the total length of all positional features; contact features count 1 to + * the total and 1 to size(), consistent with an average 'feature length' of 1 + */ + int totalExtent; + + float positionalMinScore; + + float positionalMaxScore; + + float nonPositionalMinScore; + + float nonPositionalMaxScore; /** * Constructor */ public FeatureStore() { - nonNestedFeatures = new ArrayList(); - featureGroups = new HashSet(); + positionalFeatureGroups = new HashSet<>(); + nonPositionalFeatureGroups = new HashSet<>(); + positionalMinScore = Float.NaN; + positionalMaxScore = Float.NaN; + nonPositionalMinScore = Float.NaN; + nonPositionalMaxScore = Float.NaN; + + // we only construct nonPositionalFeatures, contactFeatures if we need to + } + + /** + * Add a contact feature to the lists that hold them ordered by start (first + * contact) and by end (second contact) position, ensuring the lists remain + * ordered, and returns true. This method allows duplicate features to be + * added, so test before calling to avoid this. + * + * @param feature + * @return + */ + protected synchronized boolean addContactFeature(SequenceFeature feature) + { + if (contactFeatureStarts == null) + { + contactFeatureStarts = new ArrayList<>(); + contactFeatureEnds = new ArrayList<>(); + } + + /* + * insert into list sorted by start (first contact position): + * binary search the sorted list to find the insertion point + */ + contactFeatureStarts.add( + findFirstBegin(contactFeatureStarts, feature.begin), feature); + /* + * insert into list sorted by end (second contact position): + * binary search the sorted list to find the insertion point + */ + contactFeatureEnds.add(findFirstEnd(contactFeatureEnds, feature.end), + feature); - // we only construct nonPositionalFeatures, contactFeatures - // or the NCList if we need to + return true; } /** @@ -82,442 +235,391 @@ public class FeatureStore * * @param feature */ + + @Override public boolean addFeature(SequenceFeature feature) { - featureGroups.add(feature.getFeatureGroup()); + if (contains(feature)) + { + return false; + } - boolean added = false; + /* + * keep a record of feature groups + */ + if (!feature.isNonPositional()) + { + positionalFeatureGroups.add(feature.getFeatureGroup()); + } if (feature.isContactFeature()) { - added = addContactFeature(feature); + addContactFeature(feature); } else if (feature.isNonPositional()) { - added = addNonPositionalFeature(feature); + addNonPositionalFeature(feature); } else { - if (!nonNestedFeatures.contains(feature)) + addNestedFeature(feature); + } + + /* + * record the total extent of positional features, to make + * getTotalFeatureLength possible; we count the length of a + * contact feature as 1 + */ + totalExtent += getFeatureLength(feature); + + /* + * record the minimum and maximum score for positional + * and non-positional features + */ + float score = feature.getScore(); + if (!Float.isNaN(score)) + { + if (feature.isNonPositional()) { - added = addNonNestedFeature(feature); - if (!added) - { - /* - * detected a nested feature - put it in the NCList structure - */ - added = addNestedFeature(feature); - } + nonPositionalMinScore = min(nonPositionalMinScore, score); + nonPositionalMaxScore = max(nonPositionalMaxScore, score); + } + else + { + positionalMinScore = min(positionalMinScore, score); + positionalMaxScore = max(positionalMaxScore, score); } } - return added; + return true; } - /** - * Adds the feature to the list of non-positional features (with lazy - * instantiation of the list if it is null), and returns true. If the - * non-positional features already include the new feature (by equality test), - * then it is not added, and this method returns false. - * - * @param feature - */ - protected boolean addNonPositionalFeature(SequenceFeature feature) + private void addFeaturesForGroup(String group, + Collection sfs, List result) { - if (nonPositionalFeatures == null) + if (sfs == null) { - nonPositionalFeatures = new ArrayList(); + return; } - if (nonPositionalFeatures.contains(feature)) + for (SequenceFeature sf : sfs) { - return false; + String featureGroup = sf.getFeatureGroup(); + if (group == null && featureGroup == null + || group != null && group.equals(featureGroup)) + { + result.add(sf); + } } - nonPositionalFeatures.add(feature); - return true; } /** - * Adds one feature to the NCList that can manage nested features (creating - * the NCList if necessary), and returns true. If the feature is already - * stored in the NCList (by equality test), then it is not added, and this - * method returns false. + * Adds one feature to the IntervalStore that can manage nested features + * (creating the IntervalStore if necessary) */ - protected synchronized boolean addNestedFeature(SequenceFeature feature) + protected synchronized void addNestedFeature(SequenceFeature feature) { - if (nestedFeatures == null) - { - nestedFeatures = new NCList(feature); - return true; - } - return nestedFeatures.add(feature, false); + features.add(feature); } /** - * Add a feature to the list of non-nested features, maintaining the ordering - * of the list. A check is made for whether the feature is nested in (properly - * contained by) an existing feature. If there is no nesting, the feature is - * added to the list and the method returns true. If nesting is found, the - * feature is not added and the method returns false. - *

- * Contact features are added at the position of their first contact point + * Adds the feature to the list of non-positional features (with lazy + * instantiation of the list if it is null), and returns true. The feature + * group is added to the set of distinct feature groups for non-positional + * features. This method allows duplicate features, so test before calling to + * prevent this. * * @param feature - * @return */ - protected boolean addNonNestedFeature(SequenceFeature feature) + protected boolean addNonPositionalFeature(SequenceFeature feature) { - synchronized (nonNestedFeatures) + if (nonPositionalFeatures == null) { - int insertPosition = binarySearchForAdd(nonNestedFeatures, feature); + nonPositionalFeatures = new ArrayList<>(); + } - /* - * fail if we detect feature enclosure - of the new feature by - * the one preceding it, or of the next feature by the new one - */ - if (insertPosition > 0) - { - if (encloses(nonNestedFeatures.get(insertPosition - 1), feature)) - { - return false; - } - } - if (insertPosition < nonNestedFeatures.size()) - { - if (encloses(feature, nonNestedFeatures.get(insertPosition))) - { - return false; - } - } + nonPositionalFeatures.add(feature); - /* - * checks passed - add or append the feature - */ - if (insertPosition == nonNestedFeatures.size()) - { - nonNestedFeatures.add(feature); - } - else - { - nonNestedFeatures.add(insertPosition, feature); - } - return true; - } + nonPositionalFeatureGroups.add(feature.getFeatureGroup()); + + return true; } /** - * Answers true if range1 properly encloses range2, else false + * Answers true if this store contains the given feature (testing by + * SequenceFeature.equals), else false * - * @param range1 - * @param range2 + * @param feature * @return */ - protected boolean encloses(ContiguousI range1, ContiguousI range2) + @Override + public boolean contains(SequenceFeature feature) { - int begin1 = range1.getBegin(); - int begin2 = range2.getBegin(); - int end1 = range1.getEnd(); - int end2 = range2.getEnd(); - if (begin1 == begin2 && end1 > end2) + if (feature.isNonPositional()) { - return true; + return nonPositionalFeatures == null ? false + : nonPositionalFeatures.contains(feature); } - if (begin1 < begin2 && end1 >= end2) + + if (feature.isContactFeature()) { - return true; + return contactFeatureStarts != null + && listContains(contactFeatureStarts, feature); } - return false; + + return features == null ? false : features.contains(feature); } /** - * Answers the index of the first element in the given list which follows or - * matches the given feature in the sort order. If no such element, answers - * the length of the list. - * - * @param list - * @param feature + * Deletes the given feature from the store, returning true if it was found + * (and deleted), else false. This method makes no assumption that the feature + * is in the 'expected' place in the store, in case it has been modified since + * it was added. * - * @return + * @param sf */ - protected int binarySearchForAdd(List list, SequenceFeature feature) + + @Override + public synchronized boolean delete(SequenceFeature sf) { - // TODO binary search! - int i = 0; - while (i < list.size()) + boolean removed = false; + + /* + * try contact positions (and if found, delete + * from both lists of contact positions) + */ + if (!removed && contactFeatureStarts != null) { - if (startOrdering.compare(nonNestedFeatures.get(i), feature) >= 0) + removed = contactFeatureStarts.remove(sf); + if (removed) { - break; + contactFeatureEnds.remove(sf); } - i++; } - return i; - } - /** - * Add a contact feature to the lists that hold them ordered by start (first - * contact) and by end (second contact) position, ensuring the lists remain - * ordered, and returns true. If the contact feature lists already contain the - * given feature (by test for equality), does not add it and returns false. - * - * @param feature - * @return - */ - protected synchronized boolean addContactFeature(SequenceFeature feature) - { - if (contactFeatureStarts == null) + boolean removedNonPositional = false; + + /* + * if not found, try non-positional features + */ + if (!removed && nonPositionalFeatures != null) { - contactFeatureStarts = new ArrayList(); + removedNonPositional = nonPositionalFeatures.remove(sf); + removed = removedNonPositional; } - if (contactFeatureEnds == null) + + /* + * if not found, try nested features + */ + if (!removed && features != null) { - contactFeatureEnds = new ArrayList(); + removed = features.remove(sf); } - // TODO binary search for insertion points! - if (contactFeatureStarts.contains(feature)) + if (removed) { - return false; + rescanAfterDelete(); } - contactFeatureStarts.add(feature); - Collections.sort(contactFeatureStarts, startOrdering); - contactFeatureEnds.add(feature); - Collections.sort(contactFeatureEnds, endOrdering); - - return true; + return removed; } - /** - * Returns a (possibly empty) list of entries whose range overlaps the given - * range. The returned list is not ordered. Contact features are included if - * either of the contact points lies within the range. - * - * @param start - * start position of overlap range (inclusive) - * @param end - * end position of overlap range (inclusive) - * @return - */ - public List findOverlappingFeatures(long start, long end) - { - List result = new ArrayList(); + abstract protected void findContactFeatures(long from, long to, + List result); - findNonNestedFeatures(start, end, result); + abstract protected int findFirstBegin(List list, + long pos); - findContactFeatures(start, end, result); + abstract protected int findFirstEnd(List list, long pos); - if (nestedFeatures != null) - { - result.addAll(nestedFeatures.findOverlaps(start, end)); - } + @Override + public List findOverlappingFeatures(long start, long end) + { + return findOverlappingFeatures(start, end, null); + } - return result; + @Override + public List getContactFeatures() + { + return getContactFeatures(new ArrayList<>()); } /** - * Adds contact features to the result list where either the second or the - * first contact position lies within the target range. + * Answers a list of all contact features. If there are none, returns an + * immutable empty list. * - * @param from - * @param to - * @param result + * @return */ - protected void findContactFeatures(long from, long to, + + @Override + public List getContactFeatures( List result) { if (contactFeatureStarts != null) { - findContactStartFeatures(from, to, result); - } - if (contactFeatureEnds != null) - { - findContactEndFeatures(from, to, result); + result.addAll(contactFeatureStarts); } + return result; } /** - * @param from - * @param to - * @param result + * Answers the number of positional (or non-positional) features stored. + * Contact features count as 1. + * + * @param positional + * @return */ - protected void findContactEndFeatures(long from, long to, - List result) + + @Override + public int getFeatureCount(boolean positional) { - // TODO binary search for startPosition - for (int startPosition = 0; startPosition < contactFeatureEnds.size(); startPosition++) + if (!positional) { - SequenceFeature sf = contactFeatureEnds.get(startPosition); - if (!sf.isContactFeature()) - { - System.err.println("Error! non-contact feature type " - + sf.getType() + " in contact features list"); - continue; - } - int begin = sf.getBegin(); - if (begin >= from && begin <= to) - { - /* - * this feature's first contact position lies in the search range - * so we don't include it in results a second time - */ - continue; - } - int end = sf.getEnd(); - if (end >= from && end <= to) - { - result.add(sf); - } + return nonPositionalFeatures == null ? 0 + : nonPositionalFeatures.size(); } + + return (contactFeatureStarts == null ? 0 : contactFeatureStarts.size()) + + features.size(); + } /** - * Returns the index of the first contact feature found whose end (second - * contact position) is not before the given start position. If no such - * feature is found, returns the length of the contact features list. + * Answers the set of distinct feature groups stored, possibly including null, + * as an unmodifiable view of the set. The parameter determines whether the + * groups for positional or for non-positional features are returned. * - * @param start + * @param positionalFeatures * @return */ - protected int contactsBinarySearch(long start) + + @Override + public Set getFeatureGroups(boolean positionalFeatures) { - // TODO binary search!! - int i = 0; - while (i < contactFeatureEnds.size()) + if (positionalFeatures) { - if (contactFeatureEnds.get(i).getEnd() >= start) - { - break; - } - i++; + return Collections.unmodifiableSet(positionalFeatureGroups); } + else + { + return nonPositionalFeatureGroups == null + ? Collections. emptySet() + : Collections.unmodifiableSet(nonPositionalFeatureGroups); + } + } - return i; + @Override + public Collection getFeatures() + { + return features; } /** - * Adds features to the result list that are at a single position which lies - * within the target range. Non-positional features (start=end=0) and contact - * features are excluded. + * Answers a list of all either positional or non-positional features whose + * feature group matches the given group (which may be null) * - * @param from - * @param to - * @param result + * @param positional + * @param group + * @return */ - protected void findNonNestedFeatures(long from, long to, - List result) + + @Override + public List getFeaturesForGroup(boolean positional, + String group) { - int startIndex = binarySearch(nonNestedFeatures, from); - findNonNestedFeatures(startIndex, from, to, result); + List result = new ArrayList<>(); + + /* + * if we know features don't include the target group, no need + * to inspect them for matches + */ + if (positional && !positionalFeatureGroups.contains(group) + || !positional && !nonPositionalFeatureGroups.contains(group)) + { + return result; + } + + if (positional) + { + addFeaturesForGroup(group, contactFeatureStarts, result); + addFeaturesForGroup(group, features, result); + } + else + { + addFeaturesForGroup(group, nonPositionalFeatures, result); + } + return result; } /** - * Scans the list of non-nested features, starting from startIndex, to find - * those that overlap the from-to range, and adds them to the result list. - * Returns the index of the first feature whose start position is after the - * target range (or the length of the whole list if none such feature exists). + * Answers the maximum score held for positional or non-positional features. + * This may be Float.NaN if there are no features, are none has a non-NaN + * score. * - * @param startIndex - * @param from - * @param to - * @param result + * @param positional * @return */ - protected int findNonNestedFeatures(final int startIndex, long from, - long to, - List result) + + @Override + public float getMaximumScore(boolean positional) { - int i = startIndex; - while (i < nonNestedFeatures.size()) - { - SequenceFeature sf = nonNestedFeatures.get(i); - if (sf.getBegin() > to) - { - break; - } - int start = sf.getBegin(); - int end = sf.getEnd(); - if (start <= to && end >= from) - { - result.add(sf); - } - i++; - } - return i; + return positional ? positionalMaxScore : nonPositionalMaxScore; } /** - * Performs a binary search of the (sorted) list to find the index of the - * first entry whose end position is not less than the target position (i.e. - * skip all features that properly precede the given position) + * Answers the minimum score held for positional or non-positional features. + * This may be Float.NaN if there are no features, are none has a non-NaN + * score. * - * @param features - * @param target + * @param positional * @return */ - protected int binarySearch(List features, long target) + + @Override + public float getMinimumScore(boolean positional) { - int width = features.size() / 2; - int lastpos = width; - while (width > 0) - { - int end = features.get(lastpos).getEnd(); - width = width / 2; - if (end > target) - { - lastpos -= width; - } - else - { - lastpos += width; - } - } - // todo correct binary search - return lastpos > 1 ? lastpos - 2 : 0; - // return lastpos; + return positional ? positionalMinScore : nonPositionalMinScore; + } + + @Override + public List getNonPositionalFeatures() + { + return getNonPositionalFeatures(new ArrayList<>()); } /** - * Adds contact features whose start position lies in the from-to range to the - * result list + * Answers a list of all non-positional features. If there are none, returns + * an immutable empty list. * - * @param from - * @param to - * @param result + * @return */ - protected void findContactStartFeatures(long from, long to, + + @Override + public List getNonPositionalFeatures( List result) { - // TODO binary search for startPosition - for (int startPosition = 0; startPosition < contactFeatureStarts.size(); startPosition++) + if (nonPositionalFeatures != null) { - SequenceFeature sf = contactFeatureStarts.get(startPosition); - if (!sf.isContactFeature()) - { - System.err.println("Error! non-contact feature type " - + sf.getType() + " in contact features list"); - continue; - } - int begin = sf.getBegin(); - if (begin >= from && begin <= to) - { - result.add(sf); - } + result.addAll(nonPositionalFeatures); } + return result; + } + + @Override + public List getPositionalFeatures() + { + return getPositionalFeatures(new ArrayList<>()); } /** - * Answers a list of all features stored (including any non-positional - * features), in no guaranteed order + * Answers a list of all positional features stored, in no guaranteed order * * @return */ - public List getFeatures() + + @Override + public List getPositionalFeatures( + List result) { - /* - * add non-nested features (may be all features for many cases) - */ - List result = new ArrayList(); - result.addAll(nonNestedFeatures); /* * add any contact features - from the list by start position @@ -528,160 +630,140 @@ public class FeatureStore } /* - * add any non-positional features - */ - if (nonPositionalFeatures != null) - { - result.addAll(nonPositionalFeatures); - } - - /* * add any nested features */ - if (nestedFeatures != null) + if (features != null) { - result.addAll(nestedFeatures.getEntries()); + result.addAll(features); } return result; } /** - * Answers a list of all contact features. If there are none, returns an - * immutable empty list. + * Answers the total length of positional features (or zero if there are + * none). Contact features contribute a value of 1 to the total. * * @return */ - public List getContactFeatures() + + @Override + public int getTotalFeatureLength() { - if (contactFeatureStarts == null) - { - return Collections.emptyList(); - } - return new ArrayList(contactFeatureStarts); + return totalExtent; } /** - * Answers a list of all non-positional features. If there are none, returns - * an immutable empty list. + * Answers true if this store has no features, else false * * @return */ - public List getNonPositionalFeatures() + + @Override + public boolean isEmpty() { - if (nonPositionalFeatures == null) - { - return Collections.emptyList(); - } - return new ArrayList(nonPositionalFeatures); + boolean hasFeatures = (contactFeatureStarts != null + && !contactFeatureStarts.isEmpty()) + || (nonPositionalFeatures != null + && !nonPositionalFeatures.isEmpty()) + || features.size() > 0; + + return !hasFeatures; } /** - * Deletes the given feature from the store, returning true if it was found - * (and deleted), else false. This method makes no assumption that the feature - * is in the 'expected' place in the store, in case it has been modified since - * it was added. - * - * @param sf + * Rescan all features to recompute any cached values after an entry has been + * deleted. This is expected to be an infrequent event, so performance here is + * not critical. */ - public synchronized boolean delete(SequenceFeature sf) + protected synchronized void rescanAfterDelete() { + positionalFeatureGroups.clear(); + nonPositionalFeatureGroups.clear(); + totalExtent = 0; + positionalMinScore = Float.NaN; + positionalMaxScore = Float.NaN; + nonPositionalMinScore = Float.NaN; + nonPositionalMaxScore = Float.NaN; /* - * try the non-nested positional features first - */ - boolean removed = nonNestedFeatures.remove(sf); - - /* - * if not found, try contact positions (and if found, delete - * from both lists of contact positions) + * scan non-positional features for groups and scores */ - if (!removed && contactFeatureStarts != null) + if (nonPositionalFeatures != null) { - removed = contactFeatureStarts.remove(sf); - if (removed) + for (SequenceFeature sf : nonPositionalFeatures) { - contactFeatureEnds.remove(sf); + nonPositionalFeatureGroups.add(sf.getFeatureGroup()); + float score = sf.getScore(); + nonPositionalMinScore = min(nonPositionalMinScore, score); + nonPositionalMaxScore = max(nonPositionalMaxScore, score); } } /* - * if not found, try non-positional features + * scan positional features for groups, scores and extents */ - if (!removed && nonPositionalFeatures != null) - { - removed = nonPositionalFeatures.remove(sf); - } - /* - * if not found, try nested features - */ - if (!removed && nestedFeatures != null) + rescanPositional(contactFeatureStarts); + rescanPositional(features); + } + + private void rescanPositional(Collection sfs) + { + if (sfs == null) { - removed = nestedFeatures.delete(sf); + return; } - - if (removed) + for (SequenceFeature sf : sfs) { - /* - * if this was the only feature for its feature group, - * remove the group from the stored set - */ - String featureGroup = sf.getFeatureGroup(); - if (!findFeatureGroup(featureGroup)) - { - featureGroups.remove(featureGroup); - } + positionalFeatureGroups.add(sf.getFeatureGroup()); + float score = sf.getScore(); + positionalMinScore = min(positionalMinScore, score); + positionalMaxScore = max(positionalMaxScore, score); + totalExtent += getFeatureLength(sf); } - - return removed; } /** - * Scans all features to check whether the given feature group is found, and - * returns true if found, else false + * Adds the shift amount to the start and end of all positional features whose + * start position is at or after fromPosition. Returns true if at least one + * feature was shifted, else false. * - * @param featureGroup + * @param fromPosition + * @param shiftBy * @return */ - protected boolean findFeatureGroup(String featureGroup) + + @Override + public synchronized boolean shiftFeatures(int fromPosition, int shiftBy) { - for (SequenceFeature sf : getFeatures()) + /* + * Because begin and end are final fields (to ensure the data store's + * integrity), we have to delete each feature and re-add it as amended. + * (Although a simple shift of all values would preserve data integrity!) + */ + boolean modified = false; + for (SequenceFeature sf : getPositionalFeatures()) { - String group = sf.getFeatureGroup(); - if (group == featureGroup - || (group != null && group.equals(featureGroup))) + if (sf.getBegin() >= fromPosition) { - return true; + modified = true; + int newBegin = sf.getBegin() + shiftBy; + int newEnd = sf.getEnd() + shiftBy; + + /* + * sanity check: don't shift left of the first residue + */ + if (newEnd > 0) + { + newBegin = Math.max(1, newBegin); + SequenceFeature sf2 = new SequenceFeature(sf, newBegin, newEnd, + sf.getFeatureGroup(), sf.getScore()); + addFeature(sf2); + } + delete(sf); } } - return false; - } - - /** - * Answers true if this store has no features, else false - * - * @return - */ - public boolean isEmpty() - { - boolean hasFeatures = !nonNestedFeatures.isEmpty() - || (contactFeatureStarts != null && !contactFeatureStarts - .isEmpty()) - || (nonPositionalFeatures != null && !nonPositionalFeatures - .isEmpty()) - || (nestedFeatures != null && nestedFeatures.size() > 0); - - return !hasFeatures; + return modified; } - /** - * Answers the set of distinct feature groups stored, possibly including null, - * as an unmodifiable view of the set. - * - * @return - */ - public Set getFeatureGroups() - { - return Collections.unmodifiableSet(featureGroups); - } }