X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fanalysis%2FAlignmentAnnotationUtils.java;h=194ef80354b4d32827db3c08ce40ce7c5b2c9477;hb=c7bc2d0abe568732fd9249c56b98370944a6e43f;hp=ca618e3dff5a3ce759c5c485334eec6ed65f80f1;hpb=17e77c3f2949a0729322b4a8d907f3f34b6a9914;p=jalview.git diff --git a/src/jalview/analysis/AlignmentAnnotationUtils.java b/src/jalview/analysis/AlignmentAnnotationUtils.java index ca618e3..194ef80 100644 --- a/src/jalview/analysis/AlignmentAnnotationUtils.java +++ b/src/jalview/analysis/AlignmentAnnotationUtils.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -91,9 +91,8 @@ public class AlignmentAnnotationUtils { continue; } - if (forSequences != null - && (aa.sequenceRef != null && forSequences - .contains(aa.sequenceRef))) + if (forSequences != null && (aa.sequenceRef != null + && forSequences.contains(aa.sequenceRef))) { String calcId = aa.getCalcId(); @@ -114,8 +113,8 @@ public class AlignmentAnnotationUtils .get(calcId); if (groupLabelsForCalcId.containsKey(aa.graphGroup)) { - if (!groupLabelsForCalcId.get(aa.graphGroup).contains( - displayLabel)) + if (!groupLabelsForCalcId.get(aa.graphGroup) + .contains(displayLabel)) { groupLabelsForCalcId.get(aa.graphGroup).add(displayLabel); } @@ -240,4 +239,42 @@ public class AlignmentAnnotationUtils return (anns == null ? Collections. emptyList() : Arrays.asList(anns)); } + + /** + * replace an existing sequence associated annotation with another, creating + * association as necessary. + * + * @param newAnnot + * - annotation row associated with an alignment sequence to be + * propagated to its dataset sequence. + * @param typeName + * - label used to match existing row + * @param calcId + * - calcId for existing row + */ + public static void replaceAnnotationOnAlignmentWith( + AlignmentAnnotation newAnnot, String typeName, String calcId) + { + if (newAnnot.sequenceRef != null) + { + SequenceI dsseq = newAnnot.sequenceRef.getDatasetSequence(); + while (dsseq.getDatasetSequence() != null) + { + dsseq = dsseq.getDatasetSequence(); + } + // look for same annotation on dataset and lift this one over + List dsan = dsseq.getAlignmentAnnotations(calcId, + typeName); + if (dsan != null && dsan.size() > 0) + { + for (AlignmentAnnotation dssan : dsan) + { + dsseq.removeAlignmentAnnotation(dssan); + } + } + AlignmentAnnotation dssan = new AlignmentAnnotation(newAnnot); + dsseq.addAlignmentAnnotation(dssan); + dssan.adjustForAlignment(); + } + } }