X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fanalysis%2FSeqsetUtils.java;h=891e29523260abfa21b0091368fd532b61f658ce;hb=26816cdcb7617e74fad006d2c675efb298e0d9b1;hp=f0427a88fe5f5c67eb392686a1d77ef7ed6c1c77;hpb=a8f483d04205bb8273ee311c12968b7e86d205fa;p=jalview.git diff --git a/src/jalview/analysis/SeqsetUtils.java b/src/jalview/analysis/SeqsetUtils.java index f0427a8..891e295 100755 --- a/src/jalview/analysis/SeqsetUtils.java +++ b/src/jalview/analysis/SeqsetUtils.java @@ -1,26 +1,34 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 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. * * 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. + * 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 . + * 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 java.util.*; +import jalview.datamodel.PDBEntry; +import jalview.datamodel.Sequence; +import jalview.datamodel.SequenceFeature; +import jalview.datamodel.SequenceI; -import jalview.datamodel.*; +import java.util.Enumeration; +import java.util.Hashtable; +import java.util.List; +import java.util.Vector; public class SeqsetUtils { @@ -37,27 +45,30 @@ public class SeqsetUtils { Hashtable sqinfo = new Hashtable(); sqinfo.put("Name", seq.getName()); - sqinfo.put("Start", new Integer(seq.getStart())); - sqinfo.put("End", new Integer(seq.getEnd())); + sqinfo.put("Start", Integer.valueOf(seq.getStart())); + sqinfo.put("End", Integer.valueOf(seq.getEnd())); if (seq.getDescription() != null) { sqinfo.put("Description", seq.getDescription()); } - Vector sfeat = new Vector(); - jalview.datamodel.SequenceFeature[] sfarray = seq.getSequenceFeatures(); - if (sfarray != null && sfarray.length > 0) + + Vector sfeat = new Vector(); + List sfs = seq.getFeatures().getAllFeatures(); + sfeat.addAll(sfs); + + if (seq.getDatasetSequence() == null) { - for (int i = 0; i < sfarray.length; i++) - { - sfeat.addElement(sfarray[i]); - } + sqinfo.put("SeqFeatures", sfeat); + sqinfo.put("PdbId", + (seq.getAllPDBEntries() != null) ? seq.getAllPDBEntries() + : new Vector()); + } + else + { + sqinfo.put("datasetSequence", + (seq.getDatasetSequence() != null) ? seq.getDatasetSequence() + : new Sequence("THISISAPLACEHOLDER", "")); } - sqinfo.put("SeqFeatures", sfeat); - sqinfo.put("PdbId", (seq.getPDBId() != null) ? seq.getPDBId() - : new Vector()); - sqinfo.put("datasetSequence", - (seq.getDatasetSequence() != null) ? seq.getDatasetSequence() - : new Sequence("THISISAPLACEHOLDER", "")); return sqinfo; } @@ -73,6 +84,20 @@ public class SeqsetUtils */ public static boolean SeqCharacterUnhash(SequenceI sq, Hashtable sqinfo) { + return SeqCharacterUnhash(sq, sqinfo, false, false); + } + + /** + * restore some characteristics for a sequence from its hash + * @param sq + * @param sqinfo + * @param excludeLimits - when true, start/end is left unmodified + * @param excludeFeatures - when true, features are not restored from stashed vector + * @return true if sequence's name was modified + */ + + public static boolean SeqCharacterUnhash(SequenceI sq, Hashtable sqinfo, boolean excludeLimits,boolean excludeFeatures) + { boolean namePresent = true; if (sqinfo == null) { @@ -81,8 +106,9 @@ public class SeqsetUtils String oldname = (String) sqinfo.get("Name"); Integer start = (Integer) sqinfo.get("Start"); Integer end = (Integer) sqinfo.get("End"); - Vector sfeatures = (Vector) sqinfo.get("SeqFeatures"); - Vector pdbid = (Vector) sqinfo.get("PdbId"); + Vector sfeatures = (Vector) sqinfo + .get("SeqFeatures"); + Vector pdbid = (Vector) sqinfo.get("PdbId"); String description = (String) sqinfo.get("Description"); Sequence seqds = (Sequence) sqinfo.get("datasetSequence"); if (oldname == null) @@ -98,29 +124,28 @@ public class SeqsetUtils sq.setPDBId(pdbid); } - if ((start != null) && (end != null)) + if (!excludeLimits && (start != null) && (end != null)) { sq.setStart(start.intValue()); sq.setEnd(end.intValue()); } - - if ((sfeatures != null) && (sfeatures.size() > 0)) + // TODO: drop this completely since we should not manipulate sequenceFeatures as a vector any more + if (!excludeFeatures && sfeatures != null && !sfeatures.isEmpty()) { - SequenceFeature[] sfarray = new SequenceFeature[sfeatures.size()]; - for (int is = 0, isize = sfeatures.size(); is < isize; is++) - { - sfarray[is] = (SequenceFeature) sfeatures.elementAt(is); - } - sq.setSequenceFeatures(sfarray); + sq.setSequenceFeatures(sfeatures); } if (description != null) { sq.setDescription(description); } - if ((seqds != null) - && !(seqds.getName().equals("THISISAPLACEHOLDER") && seqds - .getLength() == 0)) + if ((seqds != null) && !(seqds.getName().equals("THISISAPLACEHOLDER") + && seqds.getLength() == 0)) { + if (sfeatures != null) + { + System.err.println( + "Implementation error: setting dataset sequence for a sequence which has sequence features.\n\tDataset sequence features will not be visible."); + } sq.setDatasetSequence(seqds); } @@ -242,8 +267,9 @@ public class SeqsetUtils if (unmatched.size() > 0 && !quiet) { System.err.println("Did not find matches for :"); - for (Enumeration i = unmatched.elements(); i.hasMoreElements(); System.out - .println(((SequenceI) i.nextElement()).getName())) + for (Enumeration i = unmatched.elements(); i + .hasMoreElements(); System.out + .println(((SequenceI) i.nextElement()).getName())) { ; }