2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.bin.Cache;
24 import jalview.datamodel.AlignedCodonFrame;
25 import jalview.datamodel.AlignmentAnnotation;
26 import jalview.datamodel.GraphLine;
27 import jalview.datamodel.SequenceI;
28 import jalview.gui.AlignFrame;
29 import jalview.gui.AlignViewport;
30 import jalview.gui.Desktop;
31 import jalview.gui.TreePanel;
32 import jalview.io.vamsas.Datasetsequence;
33 import jalview.io.vamsas.DatastoreItem;
34 import jalview.io.vamsas.DatastoreRegistry;
35 import jalview.io.vamsas.Rangetype;
36 import jalview.util.MessageManager;
37 import jalview.viewmodel.AlignmentViewport;
39 import java.io.IOException;
40 import java.util.Enumeration;
41 import java.util.HashMap;
42 import java.util.Hashtable;
43 import java.util.IdentityHashMap;
44 import java.util.Iterator;
45 import java.util.List;
47 import java.util.Vector;
48 import java.util.jar.JarInputStream;
49 import java.util.jar.JarOutputStream;
51 import uk.ac.vamsas.client.IClientAppdata;
52 import uk.ac.vamsas.client.IClientDocument;
53 import uk.ac.vamsas.client.Vobject;
54 import uk.ac.vamsas.client.VorbaId;
55 import uk.ac.vamsas.objects.core.Alignment;
56 import uk.ac.vamsas.objects.core.AlignmentSequence;
57 import uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation;
58 import uk.ac.vamsas.objects.core.AnnotationElement;
59 import uk.ac.vamsas.objects.core.DataSet;
60 import uk.ac.vamsas.objects.core.DataSetAnnotations;
61 import uk.ac.vamsas.objects.core.DbRef;
62 import uk.ac.vamsas.objects.core.Entry;
63 import uk.ac.vamsas.objects.core.Glyph;
64 import uk.ac.vamsas.objects.core.Local;
65 import uk.ac.vamsas.objects.core.MapType;
66 import uk.ac.vamsas.objects.core.Mapped;
67 import uk.ac.vamsas.objects.core.Property;
68 import uk.ac.vamsas.objects.core.Provenance;
69 import uk.ac.vamsas.objects.core.RangeAnnotation;
70 import uk.ac.vamsas.objects.core.RangeType;
71 import uk.ac.vamsas.objects.core.Seg;
72 import uk.ac.vamsas.objects.core.Sequence;
73 import uk.ac.vamsas.objects.core.SequenceType;
74 import uk.ac.vamsas.objects.core.VAMSAS;
75 import uk.ac.vamsas.objects.utils.Properties;
80 * org.exolab.castor.util.LocalConfiguration.getInstance().getProperties().setProperty(
81 * "org.exolab.castor.serializer", "org.apache.xml.serialize.XMLSerilazizer"); }
85 * TODO: check/verify consistency for vamsas sync with group associated alignment annotation
87 public class VamsasAppDatastore
90 * Type used for general jalview generated annotation added to vamsas document
92 public static final String JALVIEW_ANNOTATION_ROW = "JalviewAnnotation";
95 * AlignmentAnnotation property to indicate that values should not be
98 public static final String DISCRETE_ANNOTATION = "discrete";
101 * continuous property - optional to specify that annotation should be
102 * represented as a continous graph line
104 private static final String CONTINUOUS_ANNOTATION = "continuous";
106 private static final String THRESHOLD = "threshold";
109 * template for provenance entries written to vamsas session document
111 Entry provEntry = null;
114 * Instance of the session document being synchronized with
116 IClientDocument cdoc;
119 * map Vorba (vamsas object xml ref) IDs to live jalview object references
124 * map live jalview object references to Vorba IDs
126 IdentityHashMap jv2vobj;
129 * map jalview sequence set ID (which is vorba ID for alignment) to last
130 * recorded hash value for the alignment viewport (the undo/redo hash value)
132 Hashtable alignRDHash;
134 public VamsasAppDatastore(IClientDocument cdoc, Hashtable vobj2jv,
135 IdentityHashMap jv2vobj, Entry provEntry, Hashtable alignRDHash)
138 this.vobj2jv = vobj2jv;
139 this.jv2vobj = jv2vobj;
140 this.provEntry = provEntry;
141 this.alignRDHash = alignRDHash;
146 * the skipList used to skip over views from Jalview Appdata's that we've
147 * already syncrhonized
151 private void buildSkipList()
153 skipList = new Hashtable();
154 AlignFrame[] al = Desktop.getAlignFrames();
155 for (int f = 0; al != null && f < al.length; f++)
157 skipList.put(al[f].getViewport().getSequenceSetId(), al[f]);
162 * @return the Vobject bound to Jalview datamodel object
164 protected Vobject getjv2vObj(Object jvobj)
166 if (jv2vobj.containsKey(jvobj))
168 return cdoc.getObject((VorbaId) jv2vobj.get(jvobj));
170 // check if we're working with a string - then workaround
171 // the use of IdentityHashTable because different strings
172 // have different object IDs.
173 if (jvobj instanceof String)
175 Object seqsetidobj = null;
176 seqsetidobj = getVamsasObjectBinding().get(jvobj);
177 if (seqsetidobj != null)
179 if (seqsetidobj instanceof String)
181 // what is expected. object returned by av.getSequenceSetId() -
182 // reverse lookup to get the 'registered' instance of this string
183 Vobject obj = getjv2vObj(seqsetidobj);
184 if (obj != null && !(obj instanceof Alignment))
187 .warn("IMPLEMENTATION ERROR?: Unexpected mapping for unmapped jalview string object content:"
188 + seqsetidobj + " to object " + obj);
194 Cache.log.warn("Unexpected mapping for Jalview String Object ID "
195 + seqsetidobj + " to another jalview dataset object "
201 if (Cache.log.isDebugEnabled())
203 Cache.log.debug("Returning null VorbaID binding for jalview object "
212 * @return Jalview datamodel object bound to the vamsas document object
214 protected Object getvObj2jv(uk.ac.vamsas.client.Vobject vobj)
216 VorbaId id = vobj.getVorbaId();
219 id = cdoc.registerObject(vobj);
221 .debug("Registering new object and returning null for getvObj2jv");
224 if (vobj2jv.containsKey(vobj.getVorbaId()))
226 return vobj2jv.get(vobj.getVorbaId());
231 protected void bindjvvobj(Object jvobj, uk.ac.vamsas.client.Vobject vobj)
233 VorbaId id = vobj.getVorbaId();
236 id = cdoc.registerObject(vobj);
237 if (id == null || vobj.getVorbaId() == null
238 || cdoc.getObject(id) != vobj)
240 Cache.log.error("Failed to get id for "
241 + (vobj.isRegisterable() ? "registerable"
242 : "unregisterable") + " object " + vobj);
246 if (vobj2jv.containsKey(vobj.getVorbaId())
247 && !((VorbaId) vobj2jv.get(vobj.getVorbaId())).equals(jvobj))
250 "Warning? Overwriting existing vamsas id binding for "
251 + vobj.getVorbaId(), new Exception(MessageManager.getString("exception.overwriting_vamsas_id_binding")));
253 else if (jv2vobj.containsKey(jvobj)
254 && !((VorbaId) jv2vobj.get(jvobj)).equals(vobj.getVorbaId()))
257 "Warning? Overwriting existing jalview object binding for "
258 + jvobj, new Exception(
259 "Overwriting jalview object binding."));
262 * Cache.log.error("Attempt to make conflicting object binding! "+vobj+" id "
263 * +vobj.getVorbaId()+" already bound to "+getvObj2jv(vobj)+" and "+jvobj+"
264 * already bound to "+getjv2vObj(jvobj),new Exception("Excessive call to
267 // we just update the hash's regardless!
268 Cache.log.debug("Binding " + vobj.getVorbaId() + " to " + jvobj);
269 vobj2jv.put(vobj.getVorbaId(), jvobj);
270 // JBPNote - better implementing a hybrid invertible hash.
271 jv2vobj.put(jvobj, vobj.getVorbaId());
275 * put the alignment viewed by AlignViewport into cdoc.
278 * alignViewport to be stored
280 * title for alignment
281 * @return true if alignment associated with viewport was stored/synchronized
284 public boolean storeVAMSAS(AlignViewport av, String aFtitle)
288 jalview.datamodel.AlignmentI jal = av.getAlignment();
289 jalview.datamodel.AlignmentI jds = jal.getDataset();
291 VAMSAS root = null; // will be resolved based on Dataset Parent.
292 // /////////////////////////////////////////
294 DataSet dataset = null;
297 Cache.log.warn("Creating new dataset for an alignment.");
298 jal.setDataset(null);
299 jds = jal.getDataset();
302 // try and get alignment and association for sequence set id
304 Alignment alignment = (Alignment) getjv2vObj(av.getSequenceSetId());
305 if (alignment != null)
307 dataset = (DataSet) alignment.getV_parent();
311 // is the dataset already registered
312 dataset = (DataSet) getjv2vObj(jds);
317 // it might be that one of the dataset sequences does actually have a
318 // binding, so search for it indirectly. If it does, then the local
320 // must be merged with the existing vamsas dataset.
321 jalview.datamodel.SequenceI[] jdatset = jds.getSequencesArray();
322 for (int i = 0; i < jdatset.length; i++)
324 Vobject vbound = getjv2vObj(jdatset[i]);
327 if (vbound instanceof uk.ac.vamsas.objects.core.Sequence)
331 dataset = (DataSet) vbound.getV_parent();
335 if (vbound.getV_parent() != null
336 && dataset != vbound.getV_parent())
338 throw new Error(MessageManager.getString("error.implementation_error_cannot_map_alignment_sequences"));
339 // This occurs because the dataset for the alignment we are
350 Cache.log.warn("Creating new vamsas dataset for alignment view "
351 + av.getSequenceSetId());
352 // we create a new dataset on the default vamsas root.
353 root = cdoc.getVamsasRoots()[0]; // default vamsas root for modifying.
354 dataset = new DataSet();
355 root.addDataSet(dataset);
356 bindjvvobj(jds, dataset);
357 dataset.setProvenance(dummyProvenance());
358 // dataset.getProvenance().addEntry(provEntry);
363 root = (VAMSAS) dataset.getV_parent();
367 // set new dataset and alignment sequences based on alignment Nucleotide
369 // this *will* break when alignment contains both nucleotide and amino
371 String dict = jal.isNucleotide() ? uk.ac.vamsas.objects.utils.SymbolDictionary.STANDARD_NA
372 : uk.ac.vamsas.objects.utils.SymbolDictionary.STANDARD_AA;
373 Vector dssmods = new Vector();
374 for (int i = 0; i < jal.getHeight(); i++)
376 SequenceI sq = jal.getSequenceAt(i).getDatasetSequence(); // only insert
380 Datasetsequence dssync = new jalview.io.vamsas.Datasetsequence(
381 this, sq, dict, dataset);
382 sequence = (Sequence) dssync.getVobj();
383 if (dssync.getModified())
385 dssmods.addElement(sequence);
389 if (dssmods.size() > 0)
393 Entry pentry = this.addProvenance(dataset.getProvenance(),
394 "updated sequences");
395 // pentry.addInput(vInput); could write in which sequences were
397 dssmods.removeAllElements();
400 // dataset.setProvenance(getVamsasProvenance(jal.getDataset().getProvenance()));
401 // ////////////////////////////////////////////
402 if (alignmentWillBeSkipped(av))
404 // TODO: trees could be written - but for the moment we just
406 // add to the JalviewXML skipList and ..
410 if (alignment == null)
412 alignment = new Alignment();
413 bindjvvobj(av.getSequenceSetId(), alignment);
414 if (alignment.getProvenance() == null)
416 alignment.setProvenance(new Provenance());
418 addProvenance(alignment.getProvenance(), "added"); // TODO: insert some
421 dataset.addAlignment(alignment);
423 Property title = new Property();
424 title.setName("title");
425 title.setType("string");
426 title.setContent(aFtitle);
427 alignment.addProperty(title);
429 alignment.setGapChar(String.valueOf(av.getGapCharacter()));
430 for (int i = 0; i < jal.getHeight(); i++)
432 syncToAlignmentSequence(jal.getSequenceAt(i), alignment, null);
434 alignRDHash.put(av.getSequenceSetId(), av.getUndoRedoHash());
438 // always prepare to clone the alignment
439 boolean alismod = av.isUndoRedoHashModified((long[]) alignRDHash
440 .get(av.getSequenceSetId()));
441 // todo: verify and update mutable alignment props.
442 // TODO: Use isLocked methods
443 if (alignment.getModifiable() == null
444 || alignment.getModifiable().length() == 0)
445 // && !alignment.isDependedOn())
447 boolean modified = false;
448 // check existing sequences in local and in document.
449 Vector docseqs = new Vector(
450 alignment.getAlignmentSequenceAsReference());
451 for (int i = 0; i < jal.getHeight(); i++)
453 modified |= syncToAlignmentSequence(jal.getSequenceAt(i),
456 if (docseqs.size() > 0)
458 // removeValignmentSequences(alignment, docseqs);
459 docseqs.removeAllElements();
461 .println("Sequence deletion from alignment is not implemented.");
469 addProvenance(alignment.getProvenance(), "Edited"); // TODO:
478 addProvenance(alignment.getProvenance(), "Attributes Edited"); // TODO:
488 System.out.println("update alignment in document.");
492 System.out.println("alignment in document left unchanged.");
497 // unbind alignment from view.
498 // create new binding and new alignment.
499 // mark trail on new alignment as being derived from old ?
501 .println("update edited alignment to new alignment in document.");
504 // ////////////////////////////////////////////
505 // SAVE Alignment Sequence Features
506 for (int i = 0, iSize = alignment.getAlignmentSequenceCount(); i < iSize; i++)
508 AlignmentSequence valseq;
509 SequenceI alseq = (SequenceI) getvObj2jv(valseq = alignment
510 .getAlignmentSequence(i));
511 if (alseq != null && alseq.getSequenceFeatures() != null)
514 * We do not put local Alignment Sequence Features into the vamsas
518 * jalview.datamodel.SequenceFeature[] features = alseq
519 * .getSequenceFeatures(); for (int f = 0; f < features.length; f++) {
520 * if (features[f] != null) { AlignmentSequenceAnnotation valseqf = (
521 * AlignmentSequenceAnnotation) getjv2vObj(features[i]); if (valseqf
524 * valseqf = (AlignmentSequenceAnnotation) getDSAnnotationFromJalview(
525 * new AlignmentSequenceAnnotation(), features[i]);
526 * valseqf.setGraph(false);
527 * valseqf.addProperty(newProperty("jalview:feature"
528 * ,"boolean","true")); if (valseqf.getProvenance() == null) {
529 * valseqf.setProvenance(new Provenance()); }
530 * addProvenance(valseqf.getProvenance(), "created"); // JBPNote - //
531 * need to // update bindjvvobj(features[i], valseqf);
532 * valseq.addAlignmentSequenceAnnotation(valseqf); } } }
537 // ////////////////////////////////////////////
539 if (jal.getAlignmentAnnotation() != null)
541 jalview.datamodel.AlignmentAnnotation[] aa = jal
542 .getAlignmentAnnotation();
543 java.util.HashMap AlSeqMaps = new HashMap(); // stores int maps from
544 // alignment columns to
545 // sequence positions.
546 for (int i = 0; i < aa.length; i++)
548 if (aa[i] == null || isJalviewOnly(aa[i]))
552 if (aa[i].groupRef != null)
554 // TODO: store any group associated annotation references
556 .warn("Group associated sequence annotation is not stored in VAMSAS document.");
559 if (aa[i].sequenceRef != null)
561 // Deal with sequence associated annotation
562 Vobject sref = getjv2vObj(aa[i].sequenceRef);
563 if (sref instanceof uk.ac.vamsas.objects.core.AlignmentSequence)
565 saveAlignmentSequenceAnnotation(AlSeqMaps,
566 (AlignmentSequence) sref, aa[i]);
570 // first find the alignment sequence to associate this with.
571 for (SequenceI jvalsq : av.getAlignment().getSequences())
573 // saveDatasetSequenceAnnotation(AlSeqMaps,(uk.ac.vamsas.objects.core.Sequence)
575 if (jvalsq.getDatasetSequence() == aa[i].sequenceRef)
577 Vobject alsref = getjv2vObj(jvalsq);
578 saveAlignmentSequenceAnnotation(AlSeqMaps,
579 (AlignmentSequence) alsref, aa[i]);
588 // add Alignment Annotation
589 uk.ac.vamsas.objects.core.AlignmentAnnotation an = (uk.ac.vamsas.objects.core.AlignmentAnnotation) getjv2vObj(aa[i]);
592 an = new uk.ac.vamsas.objects.core.AlignmentAnnotation();
593 an.setType(JALVIEW_ANNOTATION_ROW);
594 an.setDescription(aa[i].description);
595 alignment.addAlignmentAnnotation(an);
596 Seg vSeg = new Seg(); // TODO: refactor to have a default
597 // rangeAnnotationType initer/updater that
598 // takes a set of int ranges.
600 vSeg.setInclusive(true);
601 vSeg.setEnd(jal.getWidth());
605 an.setGraph(true); // aa[i].graph);
607 an.setLabel(aa[i].label);
608 an.setProvenance(dummyProvenance());
609 if (aa[i].graph != AlignmentAnnotation.NO_GRAPH)
611 an.setGroup(Integer.toString(aa[i].graphGroup)); // // JBPNote
626 AnnotationElement ae;
628 for (int a = 0; a < aa[i].annotations.length; a++)
630 if ((aa[i] == null) || (aa[i].annotations[a] == null))
635 ae = new AnnotationElement();
636 ae.setDescription(aa[i].annotations[a].description);
637 ae.addGlyph(new Glyph());
638 ae.getGlyph(0).setContent(
639 aa[i].annotations[a].displayCharacter); // assume
648 ae.addValue(aa[i].annotations[a].value);
650 ae.setPosition(a + 1);
651 if (aa[i].annotations[a].secondaryStructure != ' ')
653 Glyph ss = new Glyph();
654 ss.setDict(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_SS_3STATE);
656 .valueOf(aa[i].annotations[a].secondaryStructure));
659 an.addAnnotationElement(ae);
663 // an.addProperty(newProperty("jalview:editable", null,
665 // an.setModifiable(""); // TODO: This is not the way the
666 // modifiable flag is supposed to be used.
668 setAnnotationType(an, aa[i]);
670 if (aa[i].graph != jalview.datamodel.AlignmentAnnotation.NO_GRAPH)
673 an.setGroup(Integer.toString(aa[i].graphGroup));
674 if (aa[i].threshold != null && aa[i].threshold.displayed)
676 an.addProperty(Properties.newProperty(THRESHOLD,
677 Properties.FLOATTYPE, "" + aa[i].threshold.value));
678 if (aa[i].threshold.label != null)
680 an.addProperty(Properties.newProperty(THRESHOLD
681 + "Name", Properties.STRINGTYPE, ""
682 + aa[i].threshold.label));
691 if (an.getModifiable() == null) // TODO: USE VAMSAS LIBRARY OBJECT
694 // verify annotation - update (perhaps)
696 .info("update alignment sequence annotation. not yet implemented.");
700 // verify annotation - update (perhaps)
702 .info("updated alignment sequence annotation added.");
708 // /////////////////////////////////////////////////////
710 // //////////////////////////////////////////////
712 // /////////////////////////////////
713 // FIND ANY ASSOCIATED TREES
714 if (Desktop.desktop != null)
716 javax.swing.JInternalFrame[] frames = Desktop.instance
719 for (int t = 0; t < frames.length; t++)
721 if (frames[t] instanceof TreePanel)
723 TreePanel tp = (TreePanel) frames[t];
725 if (tp.getViewPort().getSequenceSetId()
726 .equals(av.getSequenceSetId()))
728 DatastoreItem vtree = new jalview.io.vamsas.Tree(this, tp,
734 // Store Jalview specific stuff in the Jalview appData
735 // not implemented in the SimpleDoc interface.
740 ex.printStackTrace();
747 * very quick test to see if the viewport would be stored in the vamsas
748 * document. Reasons for not storing include the unaligned flag being false
749 * (for all sequences, including the hidden ones!)
752 * @return true if alignment associated with this view will be stored in
755 public boolean alignmentWillBeSkipped(AlignmentViewport av)
757 return (!av.getAlignment().isAligned());
760 private void addToSkipList(AlignmentViewport av)
762 if (skipList == null)
764 skipList = new Hashtable();
766 skipList.put(av.getSequenceSetId(), av);
770 * remove docseqs from the given alignment marking provenance appropriately
771 * and removing any references to the sequences.
776 private void removeValignmentSequences(Alignment alignment, Vector docseqs)
778 // delete these from document. This really needs to be a generic document
779 // API function derived by CASTOR.
780 Enumeration en = docseqs.elements();
781 while (en.hasMoreElements())
783 alignment.removeAlignmentSequence((AlignmentSequence) en
786 Entry pe = addProvenance(alignment.getProvenance(), "Removed "
787 + docseqs.size() + " sequences");
788 en = alignment.enumerateAlignmentAnnotation();
789 Vector toremove = new Vector();
790 while (en.hasMoreElements())
792 uk.ac.vamsas.objects.core.AlignmentAnnotation alan = (uk.ac.vamsas.objects.core.AlignmentAnnotation) en
794 if (alan.getSeqrefsCount() > 0)
797 Vector storem = new Vector();
798 Enumeration sr = alan.enumerateSeqrefs();
799 while (sr.hasMoreElements())
801 Object alsr = sr.nextElement();
802 if (docseqs.contains(alsr))
804 storem.addElement(alsr);
807 // remove references to the deleted sequences
808 sr = storem.elements();
809 while (sr.hasMoreElements())
811 alan.removeSeqrefs(sr.nextElement());
814 if (alan.getSeqrefsCount() == 0)
816 // should then delete alan from dataset
817 toremove.addElement(alan);
821 // remove any annotation that used to be associated to a specific bunch of
823 en = toremove.elements();
824 while (en.hasMoreElements())
827 .removeAlignmentAnnotation((uk.ac.vamsas.objects.core.AlignmentAnnotation) en
830 // TODO: search through alignment annotations to remove any references to
831 // this alignment sequence
835 * sync a jalview alignment seuqence into a vamsas alignment assumes all lock
836 * transformation/bindings have been sorted out before hand. creates/syncs the
837 * vamsas alignment sequence for jvalsq and adds it to the alignment if
838 * necessary. unbounddocseq is a duplicate of the vamsas alignment sequences
839 * and these are removed after being processed w.r.t a bound jvalsq
842 private boolean syncToAlignmentSequence(SequenceI jvalsq,
843 Alignment alignment, Vector unbounddocseq)
845 boolean modal = false;
846 // todo: islocked method here
847 boolean up2doc = false;
848 AlignmentSequence alseq = (AlignmentSequence) getjv2vObj(jvalsq);
851 alseq = new AlignmentSequence();
856 if (unbounddocseq != null)
858 unbounddocseq.removeElement(alseq);
861 // boolean locked = (alignment.getModifiable()==null ||
862 // alignment.getModifiable().length()>0);
863 // TODO: VAMSAS: translate lowercase symbols to annotation ?
864 if (up2doc || !alseq.getSequence().equals(jvalsq.getSequenceAsString()))
866 alseq.setSequence(jvalsq.getSequenceAsString());
867 alseq.setStart(jvalsq.getStart());
868 alseq.setEnd(jvalsq.getEnd());
871 if (up2doc || !alseq.getName().equals(jvalsq.getName()))
874 alseq.setName(jvalsq.getName());
876 if (jvalsq.getDescription() != null
877 && (alseq.getDescription() == null || !jvalsq.getDescription()
878 .equals(alseq.getDescription())))
881 alseq.setDescription(jvalsq.getDescription());
883 if (getjv2vObj(jvalsq.getDatasetSequence()) == null)
886 .warn("Serious Implementation error - Unbound dataset sequence in alignment: "
887 + jvalsq.getDatasetSequence());
889 alseq.setRefid(getjv2vObj(jvalsq.getDatasetSequence()));
893 alignment.addAlignmentSequence(alseq);
894 bindjvvobj(jvalsq, alseq);
896 return up2doc || modal;
900 * locally sync a jalview alignment seuqence from a vamsas alignment assumes
901 * all lock transformation/bindings have been sorted out before hand.
902 * creates/syncs the jvalsq from the alignment sequence
904 private boolean syncFromAlignmentSequence(AlignmentSequence valseq,
905 char valGapchar, char gapChar, List<SequenceI> dsseqs)
908 boolean modal = false;
909 // todo: islocked method here
910 boolean upFromdoc = false;
911 jalview.datamodel.SequenceI alseq = (SequenceI) getvObj2jv(valseq);
919 // boolean locked = (alignment.getModifiable()==null ||
920 // alignment.getModifiable().length()>0);
921 // TODO: VAMSAS: translate lowercase symbols to annotation ?
923 || !valseq.getSequence().equals(alseq.getSequenceAsString()))
925 // this might go *horribly* wrong
926 alseq.setSequence(new String(valseq.getSequence()).replace(
927 valGapchar, gapChar));
928 alseq.setStart((int) valseq.getStart());
929 alseq.setEnd((int) valseq.getEnd());
932 if (!valseq.getName().equals(alseq.getName()))
935 alseq.setName(valseq.getName());
937 if (alseq.getDescription() == null
938 || (valseq.getDescription() != null && !alseq
939 .getDescription().equals(valseq.getDescription())))
941 alseq.setDescription(valseq.getDescription());
944 if (modal && Cache.log.isDebugEnabled())
946 Cache.log.debug("Updating apparently edited sequence "
952 alseq = new jalview.datamodel.Sequence(valseq.getName(), valseq
953 .getSequence().replace(valGapchar, gapChar),
954 (int) valseq.getStart(), (int) valseq.getEnd());
956 Vobject datsetseq = (Vobject) valseq.getRefid();
957 if (datsetseq != null)
959 alseq.setDatasetSequence((SequenceI) getvObj2jv(datsetseq)); // exceptions
960 if (valseq.getDescription() != null)
962 alseq.setDescription(valseq.getDescription());
966 // inherit description line from dataset.
967 if (alseq.getDatasetSequence().getDescription() != null)
969 alseq.setDescription(alseq.getDatasetSequence()
984 .error("Invalid dataset sequence id (null) for alignment sequence "
985 + valseq.getVorbaId());
987 bindjvvobj(alseq, valseq);
988 alseq.setVamsasId(valseq.getVorbaId().getId());
991 Vobject datsetseq = (Vobject) valseq.getRefid();
992 if (datsetseq != null)
994 if (datsetseq != alseq.getDatasetSequence())
998 alseq.setDatasetSequence((SequenceI) getvObj2jv(datsetseq)); // exceptions
1000 return upFromdoc || modal;
1003 private void initRangeAnnotationType(RangeAnnotation an,
1004 AlignmentAnnotation alan, int[] gapMap)
1006 Seg vSeg = new Seg();
1008 vSeg.setInclusive(true);
1009 vSeg.setEnd(gapMap.length);
1012 // LATER: much of this is verbatim from the alignmentAnnotation
1013 // method below. suggests refactoring to make rangeAnnotation the
1015 an.setDescription(alan.description);
1016 an.setLabel(alan.label);
1017 an.setGroup(Integer.toString(alan.graphGroup));
1026 AnnotationElement ae;
1027 for (int a = 0; a < alan.annotations.length; a++)
1029 if (alan.annotations[a] == null)
1034 ae = new AnnotationElement();
1035 ae.setDescription(alan.annotations[a].description);
1036 ae.addGlyph(new Glyph());
1037 ae.getGlyph(0).setContent(alan.annotations[a].displayCharacter); // assume
1044 if (alan.graph != jalview.datamodel.AlignmentAnnotation.NO_GRAPH)
1046 ae.addValue(alan.annotations[a].value);
1048 ae.setPosition(gapMap[a] + 1); // position w.r.t. AlignmentSequence
1050 if (alan.annotations[a].secondaryStructure != ' ')
1052 // we only write an annotation where it really exists.
1053 Glyph ss = new Glyph();
1054 ss.setDict(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_SS_3STATE);
1055 ss.setContent(String
1056 .valueOf(alan.annotations[a].secondaryStructure));
1059 an.addAnnotationElement(ae);
1064 private void saveDatasetSequenceAnnotation(HashMap AlSeqMaps,
1065 uk.ac.vamsas.objects.core.Sequence sref, AlignmentAnnotation alan)
1069 // objects.core.AlignmentSequence alsref = (uk.ac.vamsas.
1070 // objects.core.AlignmentSequence) sref;
1071 uk.ac.vamsas.objects.core.DataSetAnnotations an = (uk.ac.vamsas.objects.core.DataSetAnnotations) getjv2vObj(alan);
1072 int[] gapMap = getGapMap(AlSeqMaps, alan);
1075 an = new uk.ac.vamsas.objects.core.DataSetAnnotations();
1076 initRangeAnnotationType(an, alan, gapMap);
1078 an.setProvenance(dummyProvenance()); // get provenance as user
1079 // created, or jnet, or
1081 setAnnotationType(an, alan);
1082 an.setGroup(Integer.toString(alan.graphGroup)); // // JBPNote -
1090 if (alan.getThreshold() != null && alan.getThreshold().displayed)
1092 an.addProperty(Properties.newProperty(THRESHOLD,
1093 Properties.FLOATTYPE, "" + alan.getThreshold().value));
1094 if (alan.getThreshold().label != null)
1096 an.addProperty(Properties.newProperty(THRESHOLD + "Name",
1097 Properties.STRINGTYPE, "" + alan.getThreshold().label));
1100 ((DataSet) sref.getV_parent()).addDataSetAnnotations(an);
1101 bindjvvobj(alan, an);
1105 // update reference sequence Annotation
1106 if (an.getModifiable() == null) // TODO: USE VAMSAS LIBRARY OBJECT LOCK
1109 // verify existing alignment sequence annotation is up to date
1110 System.out.println("update dataset sequence annotation.");
1114 // verify existing alignment sequence annotation is up to date
1116 .println("make new alignment dataset sequence annotation if modification has happened.");
1122 private int[] getGapMap(HashMap AlSeqMaps, AlignmentAnnotation alan)
1125 if (AlSeqMaps.containsKey(alan.sequenceRef))
1127 gapMap = (int[]) AlSeqMaps.get(alan.sequenceRef);
1131 gapMap = new int[alan.sequenceRef.getLength()];
1132 // map from alignment position to sequence position.
1133 int[] sgapMap = alan.sequenceRef.gapMap();
1134 for (int a = 0; a < sgapMap.length; a++)
1136 gapMap[sgapMap[a]] = a;
1142 private void saveAlignmentSequenceAnnotation(HashMap AlSeqMaps,
1143 AlignmentSequence alsref, AlignmentAnnotation alan)
1147 // objects.core.AlignmentSequence alsref = (uk.ac.vamsas.
1148 // objects.core.AlignmentSequence) sref;
1149 uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation an = (uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation) getjv2vObj(alan);
1150 int[] gapMap = getGapMap(AlSeqMaps, alan);
1153 an = new uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation();
1154 initRangeAnnotationType(an, alan, gapMap);
1156 * I mean here that we don't actually have a semantic 'type' for the
1157 * annotation (this might be - score, intrinsic property, measurement,
1158 * something extracted from another program, etc)
1160 an.setType(JALVIEW_ANNOTATION_ROW); // TODO: better fix
1161 // this rough guess ;)
1162 alsref.addAlignmentSequenceAnnotation(an);
1163 bindjvvobj(alan, an);
1164 // These properties are directly supported by the
1165 // AlignmentSequenceAnnotation type.
1166 setAnnotationType(an, alan);
1167 an.setProvenance(dummyProvenance()); // get provenance as user
1168 // created, or jnet, or
1173 // update reference sequence Annotation
1174 if (an.getModifiable() == null) // TODO: USE VAMSAS LIBRARY OBJECT LOCK
1177 // verify existing alignment sequence annotation is up to date
1178 System.out.println("update alignment sequence annotation.");
1182 // verify existing alignment sequence annotation is up to date
1184 .println("make new alignment sequence annotation if modification has happened.");
1190 * set vamsas annotation object type from jalview annotation
1195 private void setAnnotationType(RangeAnnotation an,
1196 AlignmentAnnotation alan)
1198 if (an instanceof AlignmentSequenceAnnotation)
1200 if (alan.graph != AlignmentAnnotation.NO_GRAPH)
1202 ((AlignmentSequenceAnnotation) an).setGraph(true);
1206 ((AlignmentSequenceAnnotation) an).setGraph(false);
1209 if (an instanceof uk.ac.vamsas.objects.core.AlignmentAnnotation)
1211 if (alan.graph != AlignmentAnnotation.NO_GRAPH)
1213 ((uk.ac.vamsas.objects.core.AlignmentAnnotation) an).setGraph(true);
1217 ((uk.ac.vamsas.objects.core.AlignmentAnnotation) an)
1223 case AlignmentAnnotation.BAR_GRAPH:
1224 an.addProperty(Properties.newProperty(DISCRETE_ANNOTATION,
1225 Properties.BOOLEANTYPE, "true"));
1227 case AlignmentAnnotation.LINE_GRAPH:
1228 an.addProperty(Properties.newProperty(CONTINUOUS_ANNOTATION,
1229 Properties.BOOLEANTYPE, "true"));
1232 // don't add any kind of discrete or continous property info.
1237 * get start<end range of segment, adjusting for inclusivity flag and
1241 * @param ensureDirection
1242 * when true - always ensure start is less than end.
1243 * @return int[] { start, end, direction} where direction==1 for range running
1244 * from end to start.
1246 private int[] getSegRange(Seg visSeg, boolean ensureDirection)
1248 boolean incl = visSeg.getInclusive();
1249 // adjust for inclusive flag.
1250 int pol = (visSeg.getStart() <= visSeg.getEnd()) ? 1 : -1; // polarity of
1252 int start = visSeg.getStart() + (incl ? 0 : pol);
1253 int end = visSeg.getEnd() + (incl ? 0 : -pol);
1254 if (ensureDirection && pol == -1)
1256 // jalview doesn't deal with inverted ranges, yet.
1262 { start, end, pol < 0 ? 1 : 0 };
1268 * @return true if annotation is not to be stored in document
1270 private boolean isJalviewOnly(AlignmentAnnotation annotation)
1272 return annotation.autoCalculated || annotation.label.equals("Quality")
1273 || annotation.label.equals("Conservation")
1274 || annotation.label.equals("Consensus");
1277 boolean dojvsync = true;
1279 // boolean dojvsync = false; // disables Jalview AppData IO
1281 * list of alignment views created when updating Jalview from document.
1283 private final Vector newAlignmentViews = new Vector();
1286 * update local jalview view settings from the stored appdata (if any)
1288 public void updateJalviewFromAppdata()
1290 // recover any existing Jalview data from appdata
1291 // TODO: recover any PDB files stored as attachments in the vamsas session
1292 // and initialise the Jalview2XML.alreadyLoadedPDB hashtable with mappings
1295 final IClientAppdata cappdata = cdoc.getClientAppdata();
1296 if (cappdata != null)
1298 if (cappdata.hasClientAppdata())
1300 // TODO: how to check version of Jalview client app data and whether
1301 // it has been modified
1302 // client data is shared over all app clients
1305 jalview.gui.Jalview2XML fromxml = new jalview.gui.Jalview2XML();
1306 fromxml.attemptversion1parse = false;
1307 fromxml.setUniqueSetSuffix("");
1308 fromxml.setObjectMappingTables(vobj2jv, jv2vobj); // mapKeysToString
1310 // mapValuesToString
1311 fromxml.setSkipList(skipList);
1312 jalview.util.jarInputStreamProvider jprovider = new jalview.util.jarInputStreamProvider()
1316 public String getFilename()
1319 // TODO Get the vamsas session ID here
1320 return "Jalview Vamsas Document Client Data";
1324 public JarInputStream getJarInputStream() throws IOException
1326 jalview.bin.Cache.log
1327 .debug("Returning client input stream for Jalview from Vamsas Document.");
1328 return new JarInputStream(cappdata.getClientInputStream());
1333 fromxml.loadJalviewAlign(jprovider);
1335 } catch (Exception e)
1338 } catch (OutOfMemoryError e)
1347 if (cappdata.hasUserAppdata())
1349 // TODO: how to check version of Jalview user app data and whether it
1350 // has been modified
1351 // user data overrides data shared over all app clients ?
1354 jalview.gui.Jalview2XML fromxml = new jalview.gui.Jalview2XML();
1355 fromxml.attemptversion1parse = false;
1356 fromxml.setUniqueSetSuffix("");
1357 fromxml.setSkipList(skipList);
1358 fromxml.setObjectMappingTables(mapKeysToString(vobj2jv),
1359 mapValuesToString(jv2vobj));
1360 jalview.util.jarInputStreamProvider jarstream = new jalview.util.jarInputStreamProvider()
1364 public String getFilename()
1367 // TODO Get the vamsas session ID here
1368 return "Jalview Vamsas Document User Data";
1372 public JarInputStream getJarInputStream() throws IOException
1374 jalview.bin.Cache.log
1375 .debug("Returning user input stream for Jalview from Vamsas Document.");
1376 return new JarInputStream(cappdata.getUserInputStream());
1381 fromxml.loadJalviewAlign(jarstream);
1383 } catch (Exception e)
1386 } catch (OutOfMemoryError e)
1396 flushAlignViewports();
1400 * remove any spurious views generated by document synchronization
1402 private void flushAlignViewports()
1404 // remove any additional viewports originally recovered from the vamsas
1406 // search for all alignframes containing viewports generated from document
1408 // and if any contain more than one view, then remove the one generated by
1410 AlignmentViewport views[], av = null;
1411 AlignFrame af = null;
1412 Iterator newviews = newAlignmentViews.iterator();
1413 while (newviews.hasNext())
1415 av = (AlignmentViewport) newviews.next();
1416 af = Desktop.getAlignFrameFor(av);
1417 // TODO implement this : af.getNumberOfViews
1418 String seqsetidobj = av.getSequenceSetId();
1419 views = Desktop.getViewports(seqsetidobj);
1420 Cache.log.debug("Found "
1421 + (views == null ? " no " : "" + views.length)
1422 + " views for '" + av.getSequenceSetId() + "'");
1423 if (views.length > 1)
1425 // we need to close the original document view.
1427 // work out how to do this by seeing if the views are gathered.
1428 // pretty clunky but the only way to do this without adding more flags
1429 // to the align frames.
1430 boolean gathered = false;
1431 String newviewid = null;
1432 Set<AlignedCodonFrame> mappings = av.getAlignment()
1434 for (int i = 0; i < views.length; i++)
1438 AlignFrame viewframe = Desktop.getAlignFrameFor(views[i]);
1439 if (viewframe == af)
1443 newviewid = views[i].getSequenceSetId();
1447 // lose the reference to the vamsas document created view
1451 // close the view generated by the vamsas document synchronization
1458 af.closeMenuItem_actionPerformed(false);
1460 replaceJvObjMapping(seqsetidobj, newviewid);
1461 seqsetidobj = newviewid;
1462 // not sure if we need to do this:
1464 if (false) // mappings != null)
1466 // ensure sequence mappings from vamsas document view still
1468 if (mappings != null)
1470 jalview.structure.StructureSelectionManager
1471 .getStructureSelectionManager(Desktop.instance)
1472 .registerMappings(mappings);
1476 // ensure vamsas object binds to the stored views retrieved from
1478 // jalview.structure.StructureSelectionManager
1479 // .getStructureSelectionManager()
1480 // .addStructureViewerListener(viewframe.alignPanel);
1485 newAlignmentViews.clear();
1489 * replaces oldjvobject with newjvobject in the Jalview Object <> VorbaID
1492 * @param oldjvobject
1493 * @param newjvobject
1496 private void replaceJvObjMapping(Object oldjvobject, Object newjvobject)
1498 Object vobject = jv2vobj.remove(oldjvobject);
1499 if (vobject == null)
1501 // NOTE: this happens if user deletes object in one session then updates
1502 // from another client
1503 throw new Error(MessageManager.formatMessage("error.implementation_error_old_jalview_object_not_bound", new String[]{oldjvobject.toString()}));
1505 if (newjvobject != null)
1507 jv2vobj.put(newjvobject, vobject);
1508 vobj2jv.put(vobject, newjvobject);
1513 * Update the jalview client and user appdata from the local jalview settings
1515 public void updateJalviewClientAppdata()
1517 final IClientAppdata cappdata = cdoc.getClientAppdata();
1518 if (cappdata != null)
1522 jalview.gui.Jalview2XML jxml = new jalview.gui.Jalview2XML();
1523 jxml.setObjectMappingTables(mapKeysToString(vobj2jv),
1524 mapValuesToString(jv2vobj));
1525 jxml.setSkipList(skipList);
1528 jxml.saveState(new JarOutputStream(cappdata
1529 .getClientOutputStream()));
1532 } catch (Exception e)
1534 // TODO raise GUI warning if user requests it.
1535 jalview.bin.Cache.log
1536 .error("Couldn't update jalview client application data. Giving up - local settings probably lost.",
1542 jalview.bin.Cache.log
1543 .error("Couldn't access client application data for vamsas session. This is probably a vamsas client bug.");
1548 * translate the Vobject keys to strings for use in Jalview2XML
1553 private IdentityHashMap mapValuesToString(IdentityHashMap jv2vobj2)
1555 IdentityHashMap mapped = new IdentityHashMap();
1556 Iterator keys = jv2vobj2.keySet().iterator();
1557 while (keys.hasNext())
1559 Object key = keys.next();
1560 mapped.put(key, jv2vobj2.get(key).toString());
1566 * translate the Vobject values to strings for use in Jalview2XML
1569 * @return hashtable with string values
1571 private Hashtable mapKeysToString(Hashtable vobj2jv2)
1573 Hashtable mapped = new Hashtable();
1574 Iterator keys = vobj2jv2.keySet().iterator();
1575 while (keys.hasNext())
1577 Object key = keys.next();
1578 mapped.put(key.toString(), vobj2jv2.get(key));
1584 * synchronize Jalview from the vamsas document
1586 * @return number of new views from document
1588 public int updateToJalview()
1590 VAMSAS _roots[] = cdoc.getVamsasRoots();
1592 for (int _root = 0; _root < _roots.length; _root++)
1594 VAMSAS root = _roots[_root];
1595 boolean newds = false;
1596 for (int _ds = 0, _nds = root.getDataSetCount(); _ds < _nds; _ds++)
1598 // ///////////////////////////////////
1600 DataSet dataset = root.getDataSet(_ds);
1601 int i, iSize = dataset.getSequenceCount();
1602 List<SequenceI> dsseqs;
1603 jalview.datamodel.Alignment jdataset = (jalview.datamodel.Alignment) getvObj2jv(dataset);
1605 if (jdataset == null)
1607 Cache.log.debug("Initialising new jalview dataset fields");
1609 dsseqs = new Vector();
1613 Cache.log.debug("Update jalview dataset from vamsas.");
1614 jremain = jdataset.getHeight();
1615 dsseqs = jdataset.getSequences();
1618 // TODO: test sequence merging - we preserve existing non vamsas
1619 // sequences but add in any new vamsas ones, and don't yet update any
1620 // sequence attributes
1621 for (i = 0; i < iSize; i++)
1623 Sequence vdseq = dataset.getSequence(i);
1624 jalview.io.vamsas.Datasetsequence dssync = new Datasetsequence(
1627 jalview.datamodel.SequenceI dsseq = (SequenceI) dssync.getJvobj();
1628 if (dssync.isAddfromdoc())
1632 if (vdseq.getDbRefCount() > 0)
1634 DbRef[] dbref = vdseq.getDbRef();
1635 for (int db = 0; db < dbref.length; db++)
1637 new jalview.io.vamsas.Dbref(this, dbref[db], vdseq, dsseq);
1640 dsseq.updatePDBIds();
1646 SequenceI[] seqs = new SequenceI[dsseqs.size()];
1647 for (i = 0, iSize = dsseqs.size(); i < iSize; i++)
1649 seqs[i] = dsseqs.get(i);
1650 dsseqs.set(i, null);
1652 jdataset = new jalview.datamodel.Alignment(seqs);
1653 Cache.log.debug("New vamsas dataset imported into jalview.");
1654 bindjvvobj(jdataset, dataset);
1657 // add any new dataset sequence feature annotations
1658 if (dataset.getDataSetAnnotations() != null)
1660 for (int dsa = 0; dsa < dataset.getDataSetAnnotationsCount(); dsa++)
1662 DataSetAnnotations dseta = dataset.getDataSetAnnotations(dsa);
1663 // TODO: deal with group annotation on datset sequences.
1664 if (dseta.getSeqRefCount() == 1)
1666 SequenceI dsSeq = (SequenceI) getvObj2jv((Vobject) dseta
1667 .getSeqRef(0)); // TODO: deal with group dataset
1671 jalview.bin.Cache.log
1672 .warn("Couldn't resolve jalview sequenceI for dataset object reference "
1673 + ((Vobject) dataset.getDataSetAnnotations(
1674 dsa).getSeqRef(0)).getVorbaId()
1679 if (dseta.getAnnotationElementCount() == 0)
1681 new jalview.io.vamsas.Sequencefeature(this, dseta, dsSeq);
1686 // TODO: deal with alignmentAnnotation style annotation
1687 // appearing on dataset sequences.
1688 // JBPNote: we could just add them to all alignments but
1689 // that may complicate cross references in the jalview
1692 .warn("Ignoring dataset annotation with annotationElements. Not yet supported in jalview.");
1699 .warn("Ignoring multiply referenced dataset sequence annotation for binding to datsaet sequence features.");
1703 if (dataset.getAlignmentCount() > 0)
1705 // LOAD ALIGNMENTS from DATASET
1707 for (int al = 0, nal = dataset.getAlignmentCount(); al < nal; al++)
1709 uk.ac.vamsas.objects.core.Alignment alignment = dataset
1711 // TODO check this handles multiple views properly
1712 AlignmentViewport av = findViewport(alignment);
1714 jalview.datamodel.AlignmentI jal = null;
1717 // TODO check that correct alignment object is retrieved when
1718 // hidden seqs exist.
1719 jal = (av.hasHiddenRows()) ? av.getAlignment()
1720 .getHiddenSequences().getFullAlignment() : av
1723 iSize = alignment.getAlignmentSequenceCount();
1724 boolean refreshal = false;
1725 Vector newasAnnots = new Vector();
1726 char gapChar = ' '; // default for new alignments read in from the
1730 dsseqs = jal.getSequences(); // for merge/update
1731 gapChar = jal.getGapCharacter();
1735 dsseqs = new Vector();
1737 char valGapchar = alignment.getGapChar().charAt(0);
1738 for (i = 0; i < iSize; i++)
1740 AlignmentSequence valseq = alignment.getAlignmentSequence(i);
1741 jalview.datamodel.Sequence alseq = (jalview.datamodel.Sequence) getvObj2jv(valseq);
1742 if (syncFromAlignmentSequence(valseq, valGapchar, gapChar,
1743 dsseqs) && alseq != null)
1746 // updated to sequence from the document
1750 if (valseq.getAlignmentSequenceAnnotationCount() > 0)
1752 AlignmentSequenceAnnotation[] vasannot = valseq
1753 .getAlignmentSequenceAnnotation();
1754 for (int a = 0; a < vasannot.length; a++)
1756 jalview.datamodel.AlignmentAnnotation asa = (jalview.datamodel.AlignmentAnnotation) getvObj2jv(vasannot[a]); // TODO:
1764 int se[] = getBounds(vasannot[a]);
1765 asa = getjAlignmentAnnotation(jal, vasannot[a]);
1766 asa.setSequenceRef(alseq);
1767 asa.createSequenceMapping(alseq, se[0], false); // TODO:
1778 alseq.addAlignmentAnnotation(asa);
1779 bindjvvobj(asa, vasannot[a]);
1781 newasAnnots.add(asa);
1785 // update existing annotation - can do this in place
1786 if (vasannot[a].getModifiable() == null) // TODO: USE
1792 .info("UNIMPLEMENTED: not recovering user modifiable sequence alignment annotation");
1793 // TODO: should at least replace with new one - otherwise
1794 // things will break
1795 // basically do this:
1796 // int se[] = getBounds(vasannot[a]);
1797 // asa.update(getjAlignmentAnnotation(jal, vasannot[a]));
1798 // // update from another annotation object in place.
1799 // asa.createSequenceMapping(alseq, se[0], false);
1808 SequenceI[] seqs = new SequenceI[dsseqs.size()];
1809 for (i = 0, iSize = dsseqs.size(); i < iSize; i++)
1811 seqs[i] = dsseqs.get(i);
1812 dsseqs.set(i, null);
1814 jal = new jalview.datamodel.Alignment(seqs);
1815 Cache.log.debug("New vamsas alignment imported into jalview "
1816 + alignment.getVorbaId().getId());
1817 jal.setDataset(jdataset);
1819 if (newasAnnots != null && newasAnnots.size() > 0)
1821 // Add the new sequence annotations in to the alignment.
1822 for (int an = 0, anSize = newasAnnots.size(); an < anSize; an++)
1824 jal.addAnnotation((AlignmentAnnotation) newasAnnots
1826 // TODO: check if anything has to be done - like calling
1827 // adjustForAlignment or something.
1828 newasAnnots.setElementAt(null, an);
1832 // //////////////////////////////////////////
1833 // //LOAD ANNOTATIONS FOR THE ALIGNMENT
1834 // ////////////////////////////////////
1835 if (alignment.getAlignmentAnnotationCount() > 0)
1837 uk.ac.vamsas.objects.core.AlignmentAnnotation[] an = alignment
1838 .getAlignmentAnnotation();
1840 for (int j = 0; j < an.length; j++)
1842 jalview.datamodel.AlignmentAnnotation jan = (jalview.datamodel.AlignmentAnnotation) getvObj2jv(an[j]);
1845 // update or stay the same.
1846 // TODO: should at least replace with a new one - otherwise
1847 // things will break
1848 // basically do this:
1849 // jan.update(getjAlignmentAnnotation(jal, an[a])); // update
1850 // from another annotation object in place.
1853 .debug("update from vamsas alignment annotation to existing jalview alignment annotation.");
1854 if (an[j].getModifiable() == null) // TODO: USE VAMSAS
1855 // LIBRARY OBJECT LOCK
1858 // TODO: user defined annotation is totally mutable... - so
1859 // load it up or throw away if locally edited.
1861 .info("NOT IMPLEMENTED - Recovering user-modifiable annotation - yet...");
1863 // TODO: compare annotation element rows
1864 // TODO: compare props.
1868 jan = getjAlignmentAnnotation(jal, an[j]);
1869 // TODO: ensure we add the alignment annotation before the
1870 // automatic annotation rows
1871 jal.addAnnotation(jan);
1872 bindjvvobj(jan, an[j]);
1877 AlignFrame alignFrame;
1880 Cache.log.debug("New alignframe for alignment "
1881 + alignment.getVorbaId());
1882 // ///////////////////////////////
1883 // construct alignment view
1884 alignFrame = new AlignFrame(jal, AlignFrame.DEFAULT_WIDTH,
1885 AlignFrame.DEFAULT_HEIGHT, alignment.getVorbaId()
1887 av = alignFrame.getViewport();
1888 newAlignmentViews.addElement(av);
1889 String title = alignment
1892 alignment.getProvenance().getEntryCount() - 1)
1894 if (alignment.getPropertyCount() > 0)
1896 for (int p = 0, pe = alignment.getPropertyCount(); p < pe; p++)
1898 if (alignment.getProperty(p).getName().equals("title"))
1900 title = alignment.getProperty(p).getContent();
1904 // TODO: automatically create meaningful title for a vamsas
1905 // alignment using its provenance.
1906 if (Cache.log.isDebugEnabled())
1908 title = title + "(" + alignment.getVorbaId() + ")";
1911 jalview.gui.Desktop.addInternalFrame(alignFrame, title,
1912 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
1913 bindjvvobj(av.getSequenceSetId(), alignment);
1917 // find the alignFrame for jal.
1918 // TODO: fix this so we retrieve the alignFrame handing av
1919 // *directly* (JBPNote - don't understand this now)
1920 // TODO: make sure all associated views are refreshed
1921 alignFrame = Desktop.getAlignFrameFor(av);
1924 av.alignmentChanged(alignFrame.alignPanel);
1925 alignFrame.alignPanel.adjustAnnotationHeight();
1929 // /////////////////////////////////////
1930 if (alignment.getTreeCount() > 0)
1933 for (int t = 0; t < alignment.getTreeCount(); t++)
1935 jalview.io.vamsas.Tree vstree = new jalview.io.vamsas.Tree(
1936 this, alignFrame, alignment.getTree(t));
1937 TreePanel tp = null;
1938 if (vstree.isValidTree())
1940 tp = alignFrame.ShowNewickTree(vstree.getNewickTree(),
1941 vstree.getTitle(), vstree.getInputData(), 600,
1942 500, t * 20 + 50, t * 20 + 50);
1947 bindjvvobj(tp, alignment.getTree(t));
1950 vstree.UpdateSequenceTreeMap(tp);
1951 } catch (RuntimeException e)
1953 Cache.log.warn("update of labels failed.", e);
1958 Cache.log.warn("Cannot create tree for tree " + t
1960 + alignment.getTree(t).getVorbaId());
1968 // we do sequenceMappings last because they span all datasets in a vamsas
1970 for (int _ds = 0, _nds = root.getDataSetCount(); _ds < _nds; _ds++)
1972 DataSet dataset = root.getDataSet(_ds);
1973 if (dataset.getSequenceMappingCount() > 0)
1975 for (int sm = 0, smCount = dataset.getSequenceMappingCount(); sm < smCount; sm++)
1977 Rangetype seqmap = new jalview.io.vamsas.Sequencemapping(this,
1978 dataset.getSequenceMapping(sm));
1983 return newAlignmentViews.size();
1986 public AlignmentViewport findViewport(Alignment alignment)
1988 AlignmentViewport av = null;
1989 AlignmentViewport[] avs = Desktop
1990 .getViewports((String) getvObj2jv(alignment));
1998 // bitfields - should be a template in j1.5
1999 private static int HASSECSTR = 0;
2001 private static int HASVALS = 1;
2003 private static int HASHPHOB = 2;
2005 private static int HASDC = 3;
2007 private static int HASDESCSTR = 4;
2009 private static int HASTWOSTATE = 5; // not used yet.
2012 * parses the AnnotationElements - if they exist - into
2013 * jalview.datamodel.Annotation[] rows Two annotation rows are made if there
2014 * are distinct annotation for both at 'pos' and 'after pos' at any particular
2018 * @return { boolean[static int constants ], int[ae.length] - map to annotated
2019 * object frame, jalview.datamodel.Annotation[],
2020 * jalview.datamodel.Annotation[] (after)}
2022 private Object[] parseRangeAnnotation(
2023 uk.ac.vamsas.objects.core.RangeAnnotation annotation)
2025 // set these attributes by looking in the annotation to decide what kind of
2026 // alignment annotation rows will be made
2027 // TODO: potentially we might make several annotation rows from one vamsas
2028 // alignment annotation. the jv2Vobj binding mechanism
2029 // may not quite cope with this (without binding an array of annotations to
2030 // a vamsas alignment annotation)
2031 // summary flags saying what we found over the set of annotation rows.
2032 boolean[] AeContent = new boolean[]
2033 { false, false, false, false, false };
2034 int[] rangeMap = getMapping(annotation);
2035 jalview.datamodel.Annotation[][] anot = new jalview.datamodel.Annotation[][]
2036 { new jalview.datamodel.Annotation[rangeMap.length],
2037 new jalview.datamodel.Annotation[rangeMap.length] };
2038 boolean mergeable = true; // false if 'after positions cant be placed on
2039 // same annotation row as positions.
2041 if (annotation.getAnnotationElementCount() > 0)
2043 AnnotationElement ae[] = annotation.getAnnotationElement();
2044 for (int aa = 0; aa < ae.length; aa++)
2046 int pos = (int) ae[aa].getPosition() - 1; // pos counts from 1 to
2047 // (|seg.start-seg.end|+1)
2048 if (pos >= 0 && pos < rangeMap.length)
2050 int row = ae[aa].getAfter() ? 1 : 0;
2051 if (anot[row][pos] != null)
2053 // only time this should happen is if the After flag is set.
2054 Cache.log.debug("Ignoring duplicate annotation site at " + pos);
2057 if (anot[1 - row][pos] != null)
2062 if (ae[aa].getDescription() != null)
2064 desc = ae[aa].getDescription();
2065 if (desc.length() > 0)
2067 // have imported valid description string
2068 AeContent[HASDESCSTR] = true;
2071 String dc = null; // ae[aa].getDisplayCharacter()==null ? "dc" :
2072 // ae[aa].getDisplayCharacter();
2073 String ss = null; // ae[aa].getSecondaryStructure()==null ? "ss" :
2074 // ae[aa].getSecondaryStructure();
2075 java.awt.Color colour = null;
2076 if (ae[aa].getGlyphCount() > 0)
2078 Glyph[] glyphs = ae[aa].getGlyph();
2079 for (int g = 0; g < glyphs.length; g++)
2083 .equals(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_SS_3STATE))
2085 ss = glyphs[g].getContent();
2086 AeContent[HASSECSTR] = true;
2090 .equals(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_HD_HYDRO))
2092 Cache.log.debug("ignoring hydrophobicity glyph marker.");
2093 AeContent[HASHPHOB] = true;
2094 char c = (dc = glyphs[g].getContent()).charAt(0);
2095 // dc may get overwritten - but we still set the colour.
2096 colour = new java.awt.Color(c == '+' ? 255 : 0,
2097 c == '.' ? 255 : 0, c == '-' ? 255 : 0);
2100 else if (glyphs[g].getDict().equals(
2101 uk.ac.vamsas.objects.utils.GlyphDictionary.DEFAULT))
2103 dc = glyphs[g].getContent();
2104 AeContent[HASDC] = true;
2109 .debug("IMPLEMENTATION TODO: Ignoring unknown glyph type "
2110 + glyphs[g].getDict());
2115 if (ae[aa].getValueCount() > 0)
2117 AeContent[HASVALS] = true;
2118 if (ae[aa].getValueCount() > 1)
2120 Cache.log.warn("ignoring additional "
2121 + (ae[aa].getValueCount() - 1)
2122 + " values in annotation element.");
2124 val = ae[aa].getValue(0);
2128 anot[row][pos] = new jalview.datamodel.Annotation(
2129 (dc != null) ? dc : "", desc,
2130 (ss != null) ? ss.charAt(0) : ' ', val);
2134 anot[row][pos] = new jalview.datamodel.Annotation(
2135 (dc != null) ? dc : "", desc,
2136 (ss != null) ? ss.charAt(0) : ' ', val, colour);
2141 Cache.log.warn("Ignoring out of bound annotation element " + aa
2142 + " in " + annotation.getVorbaId().getId());
2145 // decide on how many annotation rows are needed.
2148 for (int i = 0; i < anot[0].length; i++)
2150 if (anot[1][i] != null)
2152 anot[0][i] = anot[1][i];
2153 anot[0][i].description = anot[0][i].description + " (after)";
2154 AeContent[HASDESCSTR] = true; // we have valid description string
2163 for (int i = 0; i < anot[0].length; i++)
2165 anot[1][i].description = anot[1][i].description + " (after)";
2169 { AeContent, rangeMap, anot[0], anot[1] };
2173 // no annotations to parse. Just return an empty annotationElement[]
2176 { AeContent, rangeMap, anot[0], anot[1] };
2183 * the jalview alignment to which the annotation will be attached
2184 * (ideally - freshly updated from corresponding vamsas alignment)
2186 * @return unbound jalview alignment annotation object.
2188 private jalview.datamodel.AlignmentAnnotation getjAlignmentAnnotation(
2189 jalview.datamodel.AlignmentI jal,
2190 uk.ac.vamsas.objects.core.RangeAnnotation annotation)
2192 if (annotation == null)
2197 // hasSequenceRef=annotation.getClass().equals(uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation.class);
2198 // boolean hasProvenance=hasSequenceRef ||
2199 // (annotation.getClass().equals(uk.ac.vamsas.objects.core.AlignmentAnnotation.class));
2201 * int se[] = getBounds(annotation); if (se==null) se=new int[]
2202 * {0,jal.getWidth()-1};
2204 Object[] parsedRangeAnnotation = parseRangeAnnotation(annotation);
2205 String a_label = annotation.getLabel();
2206 String a_descr = annotation.getDescription();
2207 GraphLine gl = null;
2209 boolean interp = true; // cleared if annotation is DISCRETE
2210 // set type and other attributes from properties
2211 if (annotation.getPropertyCount() > 0)
2213 // look for special jalview properties
2214 uk.ac.vamsas.objects.core.Property[] props = annotation.getProperty();
2215 for (int p = 0; p < props.length; p++)
2217 if (props[p].getName().equalsIgnoreCase(DISCRETE_ANNOTATION))
2219 type = AlignmentAnnotation.BAR_GRAPH;
2222 else if (props[p].getName().equalsIgnoreCase(CONTINUOUS_ANNOTATION))
2224 type = AlignmentAnnotation.LINE_GRAPH;
2226 else if (props[p].getName().equalsIgnoreCase(THRESHOLD))
2231 val = new Float(props[p].getContent());
2232 } catch (Exception e)
2234 Cache.log.warn("Failed to parse threshold property");
2240 gl = new GraphLine(val.floatValue(), "", java.awt.Color.black);
2244 gl.value = val.floatValue();
2248 else if (props[p].getName().equalsIgnoreCase(THRESHOLD + "Name"))
2252 gl = new GraphLine(0, "", java.awt.Color.black);
2254 gl.label = props[p].getContent();
2258 jalview.datamodel.AlignmentAnnotation jan = null;
2259 if (a_label == null || a_label.length() == 0)
2261 a_label = annotation.getType();
2262 if (a_label.length() == 0)
2264 a_label = "Unamed annotation";
2267 if (a_descr == null || a_descr.length() == 0)
2269 a_descr = "Annotation of type '" + annotation.getType() + "'";
2271 if (parsedRangeAnnotation == null)
2274 .debug("Inserting empty annotation row elements for a whole-alignment annotation.");
2278 if (parsedRangeAnnotation[3] != null)
2280 Cache.log.warn("Ignoring 'After' annotation row in "
2281 + annotation.getVorbaId());
2283 jalview.datamodel.Annotation[] arow = (jalview.datamodel.Annotation[]) parsedRangeAnnotation[2];
2284 boolean[] has = (boolean[]) parsedRangeAnnotation[0];
2285 // VAMSAS: getGraph is only on derived annotation for alignments - in this
2286 // way its 'odd' - there is already an existing TODO about removing this
2287 // flag as being redundant
2289 * if((annotation.getClass().equals(uk.ac.vamsas.objects.core.
2290 * AlignmentAnnotation.class) &&
2291 * ((uk.ac.vamsas.objects.core.AlignmentAnnotation)annotation).getGraph())
2292 * || (hasSequenceRef=true &&
2293 * ((uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation
2294 * )annotation).getGraph())) {
2300 type = jalview.datamodel.AlignmentAnnotation.BAR_GRAPH; // default
2306 // no hints - so we ensure HPHOB display is like this.
2307 type = jalview.datamodel.AlignmentAnnotation.BAR_GRAPH;
2310 // make bounds and automatic description strings for jalview user's
2311 // benefit (these shouldn't be written back to vamsas document)
2312 boolean first = true;
2313 float min = 0, max = 1;
2315 for (int i = 0; i < arow.length; i++)
2317 if (arow[i] != null)
2319 if (i - lastval > 1 && interp)
2321 // do some interpolation *between* points
2322 if (arow[lastval] != null)
2324 float interval = arow[i].value - arow[lastval].value;
2325 interval /= i - lastval;
2326 float base = arow[lastval].value;
2327 for (int ip = lastval + 1, np = 0; ip < i; np++, ip++)
2329 arow[ip] = new jalview.datamodel.Annotation("", "", ' ',
2330 interval * np + base);
2331 // NB - Interpolated points don't get a tooltip and
2337 // check range - shouldn't we have a min and max property in the
2338 // annotation object ?
2341 min = max = arow[i].value;
2346 if (arow[i].value < min)
2348 min = arow[i].value;
2350 else if (arow[i].value > max)
2352 max = arow[i].value;
2355 // make tooltip and display char value
2356 if (!has[HASDESCSTR])
2358 arow[i].description = arow[i].value + "";
2364 if (arow[i].description != null
2365 && arow[i].description.length() < 3)
2367 // copy over the description as the display char.
2368 arow[i].displayCharacter = new String(arow[i].description);
2373 // mark the position as a point used for the interpolation.
2374 arow[i].displayCharacter = arow[i].value + "";
2379 jan = new jalview.datamodel.AlignmentAnnotation(a_label, a_descr,
2380 arow, min, max, type);
2384 if (annotation.getAnnotationElementCount() == 0)
2386 // empty annotation array
2387 // TODO: alignment 'features' compare rangeType spec to alignment
2388 // width - if it is not complete, then mark regions on the annotation
2391 jan = new jalview.datamodel.AlignmentAnnotation(a_label, a_descr,
2393 jan.setThreshold(null);
2394 jan.annotationId = annotation.getVorbaId().toString(); // keep all the
2397 if (annotation.getLinkCount() > 0)
2399 Cache.log.warn("Ignoring " + annotation.getLinkCount()
2400 + "links added to AlignmentAnnotation.");
2402 if (annotation.getModifiable() == null
2403 || annotation.getModifiable().length() == 0) // TODO: USE VAMSAS
2407 jan.editable = true;
2411 if (annotation.getGroup() != null
2412 && annotation.getGroup().length() > 0)
2414 jan.graphGroup = Integer.parseInt(annotation.getGroup()); // TODO:
2422 } catch (Exception e)
2425 .info("UNIMPLEMENTED : Couldn't parse non-integer group value for setting graphGroup correctly.");
2435 * get real bounds of a RangeType's specification. start and end are an
2436 * inclusive range within which all segments and positions lie. TODO: refactor
2440 * @return int[] { start, end}
2442 private int[] getBounds(RangeType dseta)
2447 if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
2449 throw new Error(MessageManager.getString("error.invalid_vamsas_rangetype_cannot_resolve_lists"));
2451 if (dseta.getSegCount() > 0)
2453 se = getSegRange(dseta.getSeg(0), true);
2454 for (int s = 1, sSize = dseta.getSegCount(); s < sSize; s++)
2456 int nse[] = getSegRange(dseta.getSeg(s), true);
2467 if (dseta.getPosCount() > 0)
2469 // could do a polarity for pos range too. and pass back indication of
2471 int pos = dseta.getPos(0).getI();
2474 for (int p = 0, pSize = dseta.getPosCount(); p < pSize; p++)
2476 pos = dseta.getPos(p).getI();
2493 * map from a rangeType's internal frame to the referenced object's coordinate
2497 * @return int [] { ref(pos)...} for all pos in rangeType's frame.
2499 private int[] getMapping(RangeType dseta)
2501 Vector posList = new Vector();
2505 if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
2507 throw new Error(MessageManager.getString("error.invalid_vamsas_rangetype_cannot_resolve_lists"));
2509 if (dseta.getSegCount() > 0)
2511 for (int s = 0, sSize = dseta.getSegCount(); s < sSize; s++)
2513 se = getSegRange(dseta.getSeg(s), false);
2514 int se_end = se[1 - se[2]] + (se[2] == 0 ? 1 : -1);
2515 for (int p = se[se[2]]; p != se_end; p += se[2] == 0 ? 1 : -1)
2517 posList.add(new Integer(p));
2521 else if (dseta.getPosCount() > 0)
2523 int pos = dseta.getPos(0).getI();
2525 for (int p = 0, pSize = dseta.getPosCount(); p < pSize; p++)
2527 pos = dseta.getPos(p).getI();
2528 posList.add(new Integer(pos));
2532 if (posList != null && posList.size() > 0)
2534 int[] range = new int[posList.size()];
2535 for (int i = 0; i < range.length; i++)
2537 range[i] = ((Integer) posList.elementAt(i)).intValue();
2548 * where the from range is the local mapped range, and the to range
2549 * is the 'mapped' range in the MapRangeType
2550 * @param default unit for local
2551 * @param default unit for mapped
2554 private jalview.util.MapList parsemapType(MapType maprange, int localu,
2557 jalview.util.MapList ml = null;
2558 int[] localRange = getMapping(maprange.getLocal());
2559 int[] mappedRange = getMapping(maprange.getMapped());
2560 long lu = maprange.getLocal().hasUnit() ? maprange.getLocal().getUnit()
2562 long mu = maprange.getMapped().hasUnit() ? maprange.getMapped()
2563 .getUnit() : mappedu;
2564 ml = new jalview.util.MapList(localRange, mappedRange, (int) lu,
2570 * initialise a range type object from a set of start/end inclusive intervals
2575 private void initRangeType(RangeType mrt, List<int[]> ranges)
2577 for (int[] range : ranges)
2579 Seg vSeg = new Seg();
2580 vSeg.setStart(range[0]);
2581 vSeg.setEnd(range[1]);
2587 * initialise a MapType object from a MapList object.
2593 private void initMapType(MapType maprange, jalview.util.MapList ml,
2596 maprange.setLocal(new Local());
2597 maprange.setMapped(new Mapped());
2598 initRangeType(maprange.getLocal(), ml.getFromRanges());
2599 initRangeType(maprange.getMapped(), ml.getToRanges());
2602 maprange.getLocal().setUnit(ml.getFromRatio());
2603 maprange.getLocal().setUnit(ml.getToRatio());
2608 * not needed now. Provenance getVamsasProvenance(jalview.datamodel.Provenance
2609 * jprov) { jalview.datamodel.ProvenanceEntry[] entries = null; // TODO: fix
2610 * App and Action here. Provenance prov = new Provenance();
2611 * org.exolab.castor.types.Date date = new org.exolab.castor.types.Date( new
2612 * java.util.Date()); Entry provEntry;
2614 * if (jprov != null) { entries = jprov.getEntries(); for (int i = 0; i <
2615 * entries.length; i++) { provEntry = new Entry(); try { date = new
2616 * org.exolab.castor.types.Date(entries[i].getDate()); } catch (Exception ex)
2617 * { ex.printStackTrace();
2619 * date = new org.exolab.castor.types.Date(entries[i].getDate()); }
2620 * provEntry.setDate(date); provEntry.setUser(entries[i].getUser());
2621 * provEntry.setAction(entries[i].getAction()); prov.addEntry(provEntry); } }
2622 * else { provEntry = new Entry(); provEntry.setDate(date);
2623 * provEntry.setUser(System.getProperty("user.name")); // TODO: ext string
2624 * provEntry.setApp("JVAPP"); // TODO: ext string provEntry.setAction(action);
2625 * prov.addEntry(provEntry); }
2629 jalview.datamodel.Provenance getJalviewProvenance(Provenance prov)
2631 // TODO: fix App and Action entries and check use of provenance in jalview.
2632 jalview.datamodel.Provenance jprov = new jalview.datamodel.Provenance();
2633 for (int i = 0; i < prov.getEntryCount(); i++)
2635 jprov.addEntry(prov.getEntry(i).getUser(), prov.getEntry(i)
2636 .getAction(), prov.getEntry(i).getDate(), prov.getEntry(i)
2645 * @return default initial provenance list for a Jalview created vamsas
2648 Provenance dummyProvenance()
2650 return dummyProvenance(null);
2653 Entry dummyPEntry(String action)
2655 Entry entry = new Entry();
2656 entry.setApp(this.provEntry.getApp());
2659 entry.setAction(action);
2663 entry.setAction("created.");
2665 entry.setDate(new java.util.Date());
2666 entry.setUser(this.provEntry.getUser());
2670 Provenance dummyProvenance(String action)
2672 Provenance prov = new Provenance();
2673 prov.addEntry(dummyPEntry(action));
2677 Entry addProvenance(Provenance p, String action)
2679 Entry dentry = dummyPEntry(action);
2684 public Entry getProvEntry()
2689 public IClientDocument getClientDocument()
2694 public IdentityHashMap getJvObjectBinding()
2699 public Hashtable getVamsasObjectBinding()
2704 public void storeSequenceMappings(AlignmentViewport viewport, String title)
2707 AlignmentViewport av = viewport;
2710 jalview.datamodel.AlignmentI jal = av.getAlignment();
2711 // /////////////////////////////////////////
2713 DataSet dataset = null;
2714 if (jal.getDataset() == null)
2716 Cache.log.warn("Creating new dataset for an alignment.");
2717 jal.setDataset(null);
2719 dataset = (DataSet) ((Alignment) getjv2vObj(viewport
2720 .getSequenceSetId())).getV_parent(); // jal.getDataset());
2721 if (dataset == null)
2723 dataset = (DataSet) getjv2vObj(jal.getDataset());
2725 .error("Can't find the correct dataset for the alignment in this view. Creating new one.");
2728 // Store any sequence mappings.
2729 Set<AlignedCodonFrame> cframes = av.getAlignment().getCodonFrames();
2730 if (cframes != null)
2732 for (AlignedCodonFrame acf : cframes)
2734 if (acf.getdnaSeqs() != null && acf.getdnaSeqs().length > 0)
2736 jalview.datamodel.SequenceI[] dmps = acf.getdnaSeqs();
2737 jalview.datamodel.Mapping[] mps = acf.getProtMappings();
2738 for (int smp = 0; smp < mps.length; smp++)
2740 uk.ac.vamsas.objects.core.SequenceType mfrom = (SequenceType) getjv2vObj(dmps[smp]);
2743 new jalview.io.vamsas.Sequencemapping(this, mps[smp],
2749 .warn("NO Vamsas Binding for local sequence! NOT CREATING MAPPING FOR "
2750 + dmps[smp].getDisplayId(true)
2752 + mps[smp].getTo().getName());
2758 } catch (Exception e)
2760 throw new Exception(MessageManager.formatMessage("exception.couldnt_store_sequence_mappings", new String[]{title}),e);
2764 public void clearSkipList()
2766 if (skipList != null)
2773 * @return the skipList
2775 public Hashtable getSkipList()
2782 * the skipList to set
2784 public void setSkipList(Hashtable skipList)
2786 this.skipList = skipList;
2790 * registry for datastoreItems
2792 DatastoreRegistry dsReg = new DatastoreRegistry();
2794 public DatastoreRegistry getDatastoreRegisty()
2798 dsReg = new DatastoreRegistry();