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;
46 import java.util.Vector;
47 import java.util.jar.JarInputStream;
48 import java.util.jar.JarOutputStream;
50 import uk.ac.vamsas.client.IClientAppdata;
51 import uk.ac.vamsas.client.IClientDocument;
52 import uk.ac.vamsas.client.Vobject;
53 import uk.ac.vamsas.client.VorbaId;
54 import uk.ac.vamsas.objects.core.Alignment;
55 import uk.ac.vamsas.objects.core.AlignmentSequence;
56 import uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation;
57 import uk.ac.vamsas.objects.core.AnnotationElement;
58 import uk.ac.vamsas.objects.core.DataSet;
59 import uk.ac.vamsas.objects.core.DataSetAnnotations;
60 import uk.ac.vamsas.objects.core.DbRef;
61 import uk.ac.vamsas.objects.core.Entry;
62 import uk.ac.vamsas.objects.core.Glyph;
63 import uk.ac.vamsas.objects.core.Local;
64 import uk.ac.vamsas.objects.core.MapType;
65 import uk.ac.vamsas.objects.core.Mapped;
66 import uk.ac.vamsas.objects.core.Property;
67 import uk.ac.vamsas.objects.core.Provenance;
68 import uk.ac.vamsas.objects.core.RangeAnnotation;
69 import uk.ac.vamsas.objects.core.RangeType;
70 import uk.ac.vamsas.objects.core.Seg;
71 import uk.ac.vamsas.objects.core.Sequence;
72 import uk.ac.vamsas.objects.core.SequenceType;
73 import uk.ac.vamsas.objects.core.VAMSAS;
74 import uk.ac.vamsas.objects.utils.Properties;
79 * org.exolab.castor.util.LocalConfiguration.getInstance().getProperties().setProperty(
80 * "org.exolab.castor.serializer", "org.apache.xml.serialize.XMLSerilazizer"); }
84 * TODO: check/verify consistency for vamsas sync with group associated alignment annotation
86 public class VamsasAppDatastore
89 * Type used for general jalview generated annotation added to vamsas document
91 public static final String JALVIEW_ANNOTATION_ROW = "JalviewAnnotation";
94 * AlignmentAnnotation property to indicate that values should not be
97 public static final String DISCRETE_ANNOTATION = "discrete";
100 * continuous property - optional to specify that annotation should be
101 * represented as a continous graph line
103 private static final String CONTINUOUS_ANNOTATION = "continuous";
105 private static final String THRESHOLD = "threshold";
108 * template for provenance entries written to vamsas session document
110 Entry provEntry = null;
113 * Instance of the session document being synchronized with
115 IClientDocument cdoc;
118 * map Vorba (vamsas object xml ref) IDs to live jalview object references
123 * map live jalview object references to Vorba IDs
125 IdentityHashMap jv2vobj;
128 * map jalview sequence set ID (which is vorba ID for alignment) to last
129 * recorded hash value for the alignment viewport (the undo/redo hash value)
131 Hashtable alignRDHash;
133 public VamsasAppDatastore(IClientDocument cdoc, Hashtable vobj2jv,
134 IdentityHashMap jv2vobj, Entry provEntry, Hashtable alignRDHash)
137 this.vobj2jv = vobj2jv;
138 this.jv2vobj = jv2vobj;
139 this.provEntry = provEntry;
140 this.alignRDHash = alignRDHash;
145 * the skipList used to skip over views from Jalview Appdata's that we've
146 * already syncrhonized
150 private void buildSkipList()
152 skipList = new Hashtable();
153 AlignFrame[] al = Desktop.getAlignFrames();
154 for (int f = 0; al != null && f < al.length; f++)
156 skipList.put(al[f].getViewport().getSequenceSetId(), al[f]);
161 * @return the Vobject bound to Jalview datamodel object
163 protected Vobject getjv2vObj(Object jvobj)
165 if (jv2vobj.containsKey(jvobj))
167 return cdoc.getObject((VorbaId) jv2vobj.get(jvobj));
169 // check if we're working with a string - then workaround
170 // the use of IdentityHashTable because different strings
171 // have different object IDs.
172 if (jvobj instanceof String)
174 Object seqsetidobj = null;
175 seqsetidobj = getVamsasObjectBinding().get(jvobj);
176 if (seqsetidobj != null)
178 if (seqsetidobj instanceof String)
180 // what is expected. object returned by av.getSequenceSetId() -
181 // reverse lookup to get the 'registered' instance of this string
182 Vobject obj = getjv2vObj(seqsetidobj);
183 if (obj != null && !(obj instanceof Alignment))
186 .warn("IMPLEMENTATION ERROR?: Unexpected mapping for unmapped jalview string object content:"
187 + seqsetidobj + " to object " + obj);
193 Cache.log.warn("Unexpected mapping for Jalview String Object ID "
194 + seqsetidobj + " to another jalview dataset object "
200 if (Cache.log.isDebugEnabled())
202 Cache.log.debug("Returning null VorbaID binding for jalview object "
211 * @return Jalview datamodel object bound to the vamsas document object
213 protected Object getvObj2jv(uk.ac.vamsas.client.Vobject vobj)
215 VorbaId id = vobj.getVorbaId();
218 id = cdoc.registerObject(vobj);
220 .debug("Registering new object and returning null for getvObj2jv");
223 if (vobj2jv.containsKey(vobj.getVorbaId()))
225 return vobj2jv.get(vobj.getVorbaId());
230 protected void bindjvvobj(Object jvobj, uk.ac.vamsas.client.Vobject vobj)
232 VorbaId id = vobj.getVorbaId();
235 id = cdoc.registerObject(vobj);
236 if (id == null || vobj.getVorbaId() == null
237 || cdoc.getObject(id) != vobj)
239 Cache.log.error("Failed to get id for "
240 + (vobj.isRegisterable() ? "registerable"
241 : "unregisterable") + " object " + vobj);
245 if (vobj2jv.containsKey(vobj.getVorbaId())
246 && !((VorbaId) vobj2jv.get(vobj.getVorbaId())).equals(jvobj))
249 .debug("Warning? Overwriting existing vamsas id binding for "
253 .getString("exception.overwriting_vamsas_id_binding")));
255 else if (jv2vobj.containsKey(jvobj)
256 && !((VorbaId) jv2vobj.get(jvobj)).equals(vobj.getVorbaId()))
259 "Warning? Overwriting existing jalview object binding for "
260 + jvobj, new Exception(
261 "Overwriting jalview object binding."));
264 * Cache.log.error("Attempt to make conflicting object binding! "+vobj+" id "
265 * +vobj.getVorbaId()+" already bound to "+getvObj2jv(vobj)+" and "+jvobj+"
266 * already bound to "+getjv2vObj(jvobj),new Exception("Excessive call to
269 // we just update the hash's regardless!
270 Cache.log.debug("Binding " + vobj.getVorbaId() + " to " + jvobj);
271 vobj2jv.put(vobj.getVorbaId(), jvobj);
272 // JBPNote - better implementing a hybrid invertible hash.
273 jv2vobj.put(jvobj, vobj.getVorbaId());
277 * put the alignment viewed by AlignViewport into cdoc.
280 * alignViewport to be stored
282 * title for alignment
283 * @return true if alignment associated with viewport was stored/synchronized
286 public boolean storeVAMSAS(AlignViewport av, String aFtitle)
290 jalview.datamodel.AlignmentI jal = av.getAlignment();
291 jalview.datamodel.AlignmentI jds = jal.getDataset();
293 VAMSAS root = null; // will be resolved based on Dataset Parent.
294 // /////////////////////////////////////////
296 DataSet dataset = null;
299 Cache.log.warn("Creating new dataset for an alignment.");
300 jal.setDataset(null);
301 jds = jal.getDataset();
304 // try and get alignment and association for sequence set id
306 Alignment alignment = (Alignment) getjv2vObj(av.getSequenceSetId());
307 if (alignment != null)
309 dataset = (DataSet) alignment.getV_parent();
313 // is the dataset already registered
314 dataset = (DataSet) getjv2vObj(jds);
319 // it might be that one of the dataset sequences does actually have a
320 // binding, so search for it indirectly. If it does, then the local
322 // must be merged with the existing vamsas dataset.
323 jalview.datamodel.SequenceI[] jdatset = jds.getSequencesArray();
324 for (int i = 0; i < jdatset.length; i++)
326 Vobject vbound = getjv2vObj(jdatset[i]);
329 if (vbound instanceof uk.ac.vamsas.objects.core.Sequence)
333 dataset = (DataSet) vbound.getV_parent();
337 if (vbound.getV_parent() != null
338 && dataset != vbound.getV_parent())
342 .getString("error.implementation_error_cannot_map_alignment_sequences"));
343 // This occurs because the dataset for the alignment we are
354 Cache.log.warn("Creating new vamsas dataset for alignment view "
355 + av.getSequenceSetId());
356 // we create a new dataset on the default vamsas root.
357 root = cdoc.getVamsasRoots()[0]; // default vamsas root for modifying.
358 dataset = new DataSet();
359 root.addDataSet(dataset);
360 bindjvvobj(jds, dataset);
361 dataset.setProvenance(dummyProvenance());
362 // dataset.getProvenance().addEntry(provEntry);
367 root = (VAMSAS) dataset.getV_parent();
371 // set new dataset and alignment sequences based on alignment Nucleotide
373 // this *will* break when alignment contains both nucleotide and amino
375 String dict = jal.isNucleotide() ? uk.ac.vamsas.objects.utils.SymbolDictionary.STANDARD_NA
376 : uk.ac.vamsas.objects.utils.SymbolDictionary.STANDARD_AA;
377 Vector dssmods = new Vector();
378 for (int i = 0; i < jal.getHeight(); i++)
380 SequenceI sq = jal.getSequenceAt(i).getDatasetSequence(); // only insert
384 Datasetsequence dssync = new jalview.io.vamsas.Datasetsequence(
385 this, sq, dict, dataset);
386 sequence = (Sequence) dssync.getVobj();
387 if (dssync.getModified())
389 dssmods.addElement(sequence);
393 if (dssmods.size() > 0)
397 Entry pentry = this.addProvenance(dataset.getProvenance(),
398 "updated sequences");
399 // pentry.addInput(vInput); could write in which sequences were
401 dssmods.removeAllElements();
404 // dataset.setProvenance(getVamsasProvenance(jal.getDataset().getProvenance()));
405 // ////////////////////////////////////////////
406 if (alignmentWillBeSkipped(av))
408 // TODO: trees could be written - but for the moment we just
410 // add to the JalviewXML skipList and ..
414 if (alignment == null)
416 alignment = new Alignment();
417 bindjvvobj(av.getSequenceSetId(), alignment);
418 if (alignment.getProvenance() == null)
420 alignment.setProvenance(new Provenance());
422 addProvenance(alignment.getProvenance(), "added"); // TODO: insert some
425 dataset.addAlignment(alignment);
427 Property title = new Property();
428 title.setName("title");
429 title.setType("string");
430 title.setContent(aFtitle);
431 alignment.addProperty(title);
433 alignment.setGapChar(String.valueOf(av.getGapCharacter()));
434 for (int i = 0; i < jal.getHeight(); i++)
436 syncToAlignmentSequence(jal.getSequenceAt(i), alignment, null);
438 alignRDHash.put(av.getSequenceSetId(), av.getUndoRedoHash());
442 // always prepare to clone the alignment
443 boolean alismod = av.isUndoRedoHashModified((long[]) alignRDHash
444 .get(av.getSequenceSetId()));
445 // todo: verify and update mutable alignment props.
446 // TODO: Use isLocked methods
447 if (alignment.getModifiable() == null
448 || alignment.getModifiable().length() == 0)
449 // && !alignment.isDependedOn())
451 boolean modified = false;
452 // check existing sequences in local and in document.
453 Vector docseqs = new Vector(
454 alignment.getAlignmentSequenceAsReference());
455 for (int i = 0; i < jal.getHeight(); i++)
457 modified |= syncToAlignmentSequence(jal.getSequenceAt(i),
460 if (docseqs.size() > 0)
462 // removeValignmentSequences(alignment, docseqs);
463 docseqs.removeAllElements();
465 .println("Sequence deletion from alignment is not implemented.");
473 addProvenance(alignment.getProvenance(), "Edited"); // TODO:
482 addProvenance(alignment.getProvenance(), "Attributes Edited"); // TODO:
492 System.out.println("update alignment in document.");
496 System.out.println("alignment in document left unchanged.");
501 // unbind alignment from view.
502 // create new binding and new alignment.
503 // mark trail on new alignment as being derived from old ?
505 .println("update edited alignment to new alignment in document.");
508 // ////////////////////////////////////////////
509 // SAVE Alignment Sequence Features
510 for (int i = 0, iSize = alignment.getAlignmentSequenceCount(); i < iSize; i++)
512 AlignmentSequence valseq;
513 SequenceI alseq = (SequenceI) getvObj2jv(valseq = alignment
514 .getAlignmentSequence(i));
515 if (alseq != null && alseq.getSequenceFeatures() != null)
518 * We do not put local Alignment Sequence Features into the vamsas
522 * jalview.datamodel.SequenceFeature[] features = alseq
523 * .getSequenceFeatures(); for (int f = 0; f < features.length; f++) {
524 * if (features[f] != null) { AlignmentSequenceAnnotation valseqf = (
525 * AlignmentSequenceAnnotation) getjv2vObj(features[i]); if (valseqf
528 * valseqf = (AlignmentSequenceAnnotation) getDSAnnotationFromJalview(
529 * new AlignmentSequenceAnnotation(), features[i]);
530 * valseqf.setGraph(false);
531 * valseqf.addProperty(newProperty("jalview:feature"
532 * ,"boolean","true")); if (valseqf.getProvenance() == null) {
533 * valseqf.setProvenance(new Provenance()); }
534 * addProvenance(valseqf.getProvenance(), "created"); // JBPNote - //
535 * need to // update bindjvvobj(features[i], valseqf);
536 * valseq.addAlignmentSequenceAnnotation(valseqf); } } }
541 // ////////////////////////////////////////////
543 if (jal.getAlignmentAnnotation() != null)
545 jalview.datamodel.AlignmentAnnotation[] aa = jal
546 .getAlignmentAnnotation();
547 java.util.HashMap AlSeqMaps = new HashMap(); // stores int maps from
548 // alignment columns to
549 // sequence positions.
550 for (int i = 0; i < aa.length; i++)
552 if (aa[i] == null || isJalviewOnly(aa[i]))
556 if (aa[i].groupRef != null)
558 // TODO: store any group associated annotation references
560 .warn("Group associated sequence annotation is not stored in VAMSAS document.");
563 if (aa[i].sequenceRef != null)
565 // Deal with sequence associated annotation
566 Vobject sref = getjv2vObj(aa[i].sequenceRef);
567 if (sref instanceof uk.ac.vamsas.objects.core.AlignmentSequence)
569 saveAlignmentSequenceAnnotation(AlSeqMaps,
570 (AlignmentSequence) sref, aa[i]);
574 // first find the alignment sequence to associate this with.
575 for (SequenceI jvalsq : av.getAlignment().getSequences())
577 // saveDatasetSequenceAnnotation(AlSeqMaps,(uk.ac.vamsas.objects.core.Sequence)
579 if (jvalsq.getDatasetSequence() == aa[i].sequenceRef)
581 Vobject alsref = getjv2vObj(jvalsq);
582 saveAlignmentSequenceAnnotation(AlSeqMaps,
583 (AlignmentSequence) alsref, aa[i]);
592 // add Alignment Annotation
593 uk.ac.vamsas.objects.core.AlignmentAnnotation an = (uk.ac.vamsas.objects.core.AlignmentAnnotation) getjv2vObj(aa[i]);
596 an = new uk.ac.vamsas.objects.core.AlignmentAnnotation();
597 an.setType(JALVIEW_ANNOTATION_ROW);
598 an.setDescription(aa[i].description);
599 alignment.addAlignmentAnnotation(an);
600 Seg vSeg = new Seg(); // TODO: refactor to have a default
601 // rangeAnnotationType initer/updater that
602 // takes a set of int ranges.
604 vSeg.setInclusive(true);
605 vSeg.setEnd(jal.getWidth());
609 an.setGraph(true); // aa[i].graph);
611 an.setLabel(aa[i].label);
612 an.setProvenance(dummyProvenance());
613 if (aa[i].graph != AlignmentAnnotation.NO_GRAPH)
615 an.setGroup(Integer.toString(aa[i].graphGroup)); // // JBPNote
630 AnnotationElement ae;
632 for (int a = 0; a < aa[i].annotations.length; a++)
634 if ((aa[i] == null) || (aa[i].annotations[a] == null))
639 ae = new AnnotationElement();
640 ae.setDescription(aa[i].annotations[a].description);
641 ae.addGlyph(new Glyph());
642 ae.getGlyph(0).setContent(
643 aa[i].annotations[a].displayCharacter); // assume
652 ae.addValue(aa[i].annotations[a].value);
654 ae.setPosition(a + 1);
655 if (aa[i].annotations[a].secondaryStructure != ' ')
657 Glyph ss = new Glyph();
658 ss.setDict(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_SS_3STATE);
660 .valueOf(aa[i].annotations[a].secondaryStructure));
663 an.addAnnotationElement(ae);
667 // an.addProperty(newProperty("jalview:editable", null,
669 // an.setModifiable(""); // TODO: This is not the way the
670 // modifiable flag is supposed to be used.
672 setAnnotationType(an, aa[i]);
674 if (aa[i].graph != jalview.datamodel.AlignmentAnnotation.NO_GRAPH)
677 an.setGroup(Integer.toString(aa[i].graphGroup));
678 if (aa[i].threshold != null && aa[i].threshold.displayed)
680 an.addProperty(Properties.newProperty(THRESHOLD,
681 Properties.FLOATTYPE, "" + aa[i].threshold.value));
682 if (aa[i].threshold.label != null)
684 an.addProperty(Properties.newProperty(THRESHOLD
685 + "Name", Properties.STRINGTYPE, ""
686 + aa[i].threshold.label));
695 if (an.getModifiable() == null) // TODO: USE VAMSAS LIBRARY OBJECT
698 // verify annotation - update (perhaps)
700 .info("update alignment sequence annotation. not yet implemented.");
704 // verify annotation - update (perhaps)
706 .info("updated alignment sequence annotation added.");
712 // /////////////////////////////////////////////////////
714 // //////////////////////////////////////////////
716 // /////////////////////////////////
717 // FIND ANY ASSOCIATED TREES
718 if (Desktop.desktop != null)
720 javax.swing.JInternalFrame[] frames = Desktop.instance
723 for (int t = 0; t < frames.length; t++)
725 if (frames[t] instanceof TreePanel)
727 TreePanel tp = (TreePanel) frames[t];
729 if (tp.getViewPort().getSequenceSetId()
730 .equals(av.getSequenceSetId()))
732 DatastoreItem vtree = new jalview.io.vamsas.Tree(this, tp,
738 // Store Jalview specific stuff in the Jalview appData
739 // not implemented in the SimpleDoc interface.
744 ex.printStackTrace();
751 * very quick test to see if the viewport would be stored in the vamsas
752 * document. Reasons for not storing include the unaligned flag being false
753 * (for all sequences, including the hidden ones!)
756 * @return true if alignment associated with this view will be stored in
759 public boolean alignmentWillBeSkipped(AlignmentViewport av)
761 return (!av.getAlignment().isAligned());
764 private void addToSkipList(AlignmentViewport av)
766 if (skipList == null)
768 skipList = new Hashtable();
770 skipList.put(av.getSequenceSetId(), av);
774 * remove docseqs from the given alignment marking provenance appropriately
775 * and removing any references to the sequences.
780 private void removeValignmentSequences(Alignment alignment, Vector docseqs)
782 // delete these from document. This really needs to be a generic document
783 // API function derived by CASTOR.
784 Enumeration en = docseqs.elements();
785 while (en.hasMoreElements())
787 alignment.removeAlignmentSequence((AlignmentSequence) en
790 Entry pe = addProvenance(alignment.getProvenance(), "Removed "
791 + docseqs.size() + " sequences");
792 en = alignment.enumerateAlignmentAnnotation();
793 Vector toremove = new Vector();
794 while (en.hasMoreElements())
796 uk.ac.vamsas.objects.core.AlignmentAnnotation alan = (uk.ac.vamsas.objects.core.AlignmentAnnotation) en
798 if (alan.getSeqrefsCount() > 0)
801 Vector storem = new Vector();
802 Enumeration sr = alan.enumerateSeqrefs();
803 while (sr.hasMoreElements())
805 Object alsr = sr.nextElement();
806 if (docseqs.contains(alsr))
808 storem.addElement(alsr);
811 // remove references to the deleted sequences
812 sr = storem.elements();
813 while (sr.hasMoreElements())
815 alan.removeSeqrefs(sr.nextElement());
818 if (alan.getSeqrefsCount() == 0)
820 // should then delete alan from dataset
821 toremove.addElement(alan);
825 // remove any annotation that used to be associated to a specific bunch of
827 en = toremove.elements();
828 while (en.hasMoreElements())
831 .removeAlignmentAnnotation((uk.ac.vamsas.objects.core.AlignmentAnnotation) en
834 // TODO: search through alignment annotations to remove any references to
835 // this alignment sequence
839 * sync a jalview alignment seuqence into a vamsas alignment assumes all lock
840 * transformation/bindings have been sorted out before hand. creates/syncs the
841 * vamsas alignment sequence for jvalsq and adds it to the alignment if
842 * necessary. unbounddocseq is a duplicate of the vamsas alignment sequences
843 * and these are removed after being processed w.r.t a bound jvalsq
846 private boolean syncToAlignmentSequence(SequenceI jvalsq,
847 Alignment alignment, Vector unbounddocseq)
849 boolean modal = false;
850 // todo: islocked method here
851 boolean up2doc = false;
852 AlignmentSequence alseq = (AlignmentSequence) getjv2vObj(jvalsq);
855 alseq = new AlignmentSequence();
860 if (unbounddocseq != null)
862 unbounddocseq.removeElement(alseq);
865 // boolean locked = (alignment.getModifiable()==null ||
866 // alignment.getModifiable().length()>0);
867 // TODO: VAMSAS: translate lowercase symbols to annotation ?
868 if (up2doc || !alseq.getSequence().equals(jvalsq.getSequenceAsString()))
870 alseq.setSequence(jvalsq.getSequenceAsString());
871 alseq.setStart(jvalsq.getStart());
872 alseq.setEnd(jvalsq.getEnd());
875 if (up2doc || !alseq.getName().equals(jvalsq.getName()))
878 alseq.setName(jvalsq.getName());
880 if (jvalsq.getDescription() != null
881 && (alseq.getDescription() == null || !jvalsq.getDescription()
882 .equals(alseq.getDescription())))
885 alseq.setDescription(jvalsq.getDescription());
887 if (getjv2vObj(jvalsq.getDatasetSequence()) == null)
890 .warn("Serious Implementation error - Unbound dataset sequence in alignment: "
891 + jvalsq.getDatasetSequence());
893 alseq.setRefid(getjv2vObj(jvalsq.getDatasetSequence()));
897 alignment.addAlignmentSequence(alseq);
898 bindjvvobj(jvalsq, alseq);
900 return up2doc || modal;
904 * locally sync a jalview alignment seuqence from a vamsas alignment assumes
905 * all lock transformation/bindings have been sorted out before hand.
906 * creates/syncs the jvalsq from the alignment sequence
908 private boolean syncFromAlignmentSequence(AlignmentSequence valseq,
909 char valGapchar, char gapChar, List<SequenceI> dsseqs)
912 boolean modal = false;
913 // todo: islocked method here
914 boolean upFromdoc = false;
915 jalview.datamodel.SequenceI alseq = (SequenceI) getvObj2jv(valseq);
923 // boolean locked = (alignment.getModifiable()==null ||
924 // alignment.getModifiable().length()>0);
925 // TODO: VAMSAS: translate lowercase symbols to annotation ?
927 || !valseq.getSequence().equals(alseq.getSequenceAsString()))
929 // this might go *horribly* wrong
930 alseq.setSequence(new String(valseq.getSequence()).replace(
931 valGapchar, gapChar));
932 alseq.setStart((int) valseq.getStart());
933 alseq.setEnd((int) valseq.getEnd());
936 if (!valseq.getName().equals(alseq.getName()))
939 alseq.setName(valseq.getName());
941 if (alseq.getDescription() == null
942 || (valseq.getDescription() != null && !alseq
943 .getDescription().equals(valseq.getDescription())))
945 alseq.setDescription(valseq.getDescription());
948 if (modal && Cache.log.isDebugEnabled())
950 Cache.log.debug("Updating apparently edited sequence "
956 alseq = new jalview.datamodel.Sequence(valseq.getName(), valseq
957 .getSequence().replace(valGapchar, gapChar),
958 (int) valseq.getStart(), (int) valseq.getEnd());
960 Vobject datsetseq = (Vobject) valseq.getRefid();
961 if (datsetseq != null)
963 alseq.setDatasetSequence((SequenceI) getvObj2jv(datsetseq)); // exceptions
964 if (valseq.getDescription() != null)
966 alseq.setDescription(valseq.getDescription());
970 // inherit description line from dataset.
971 if (alseq.getDatasetSequence().getDescription() != null)
973 alseq.setDescription(alseq.getDatasetSequence()
988 .error("Invalid dataset sequence id (null) for alignment sequence "
989 + valseq.getVorbaId());
991 bindjvvobj(alseq, valseq);
992 alseq.setVamsasId(valseq.getVorbaId().getId());
995 Vobject datsetseq = (Vobject) valseq.getRefid();
996 if (datsetseq != null)
998 if (datsetseq != alseq.getDatasetSequence())
1002 alseq.setDatasetSequence((SequenceI) getvObj2jv(datsetseq)); // exceptions
1004 return upFromdoc || modal;
1007 private void initRangeAnnotationType(RangeAnnotation an,
1008 AlignmentAnnotation alan, int[] gapMap)
1010 Seg vSeg = new Seg();
1012 vSeg.setInclusive(true);
1013 vSeg.setEnd(gapMap.length);
1016 // LATER: much of this is verbatim from the alignmentAnnotation
1017 // method below. suggests refactoring to make rangeAnnotation the
1019 an.setDescription(alan.description);
1020 an.setLabel(alan.label);
1021 an.setGroup(Integer.toString(alan.graphGroup));
1030 AnnotationElement ae;
1031 for (int a = 0; a < alan.annotations.length; a++)
1033 if (alan.annotations[a] == null)
1038 ae = new AnnotationElement();
1039 ae.setDescription(alan.annotations[a].description);
1040 ae.addGlyph(new Glyph());
1041 ae.getGlyph(0).setContent(alan.annotations[a].displayCharacter); // assume
1048 if (alan.graph != jalview.datamodel.AlignmentAnnotation.NO_GRAPH)
1050 ae.addValue(alan.annotations[a].value);
1052 ae.setPosition(gapMap[a] + 1); // position w.r.t. AlignmentSequence
1054 if (alan.annotations[a].secondaryStructure != ' ')
1056 // we only write an annotation where it really exists.
1057 Glyph ss = new Glyph();
1058 ss.setDict(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_SS_3STATE);
1059 ss.setContent(String
1060 .valueOf(alan.annotations[a].secondaryStructure));
1063 an.addAnnotationElement(ae);
1068 private void saveDatasetSequenceAnnotation(HashMap AlSeqMaps,
1069 uk.ac.vamsas.objects.core.Sequence sref, AlignmentAnnotation alan)
1073 // objects.core.AlignmentSequence alsref = (uk.ac.vamsas.
1074 // objects.core.AlignmentSequence) sref;
1075 uk.ac.vamsas.objects.core.DataSetAnnotations an = (uk.ac.vamsas.objects.core.DataSetAnnotations) getjv2vObj(alan);
1076 int[] gapMap = getGapMap(AlSeqMaps, alan);
1079 an = new uk.ac.vamsas.objects.core.DataSetAnnotations();
1080 initRangeAnnotationType(an, alan, gapMap);
1082 an.setProvenance(dummyProvenance()); // get provenance as user
1083 // created, or jnet, or
1085 setAnnotationType(an, alan);
1086 an.setGroup(Integer.toString(alan.graphGroup)); // // JBPNote -
1094 if (alan.getThreshold() != null && alan.getThreshold().displayed)
1096 an.addProperty(Properties.newProperty(THRESHOLD,
1097 Properties.FLOATTYPE, "" + alan.getThreshold().value));
1098 if (alan.getThreshold().label != null)
1100 an.addProperty(Properties.newProperty(THRESHOLD + "Name",
1101 Properties.STRINGTYPE, "" + alan.getThreshold().label));
1104 ((DataSet) sref.getV_parent()).addDataSetAnnotations(an);
1105 bindjvvobj(alan, an);
1109 // update reference sequence Annotation
1110 if (an.getModifiable() == null) // TODO: USE VAMSAS LIBRARY OBJECT LOCK
1113 // verify existing alignment sequence annotation is up to date
1114 System.out.println("update dataset sequence annotation.");
1118 // verify existing alignment sequence annotation is up to date
1120 .println("make new alignment dataset sequence annotation if modification has happened.");
1126 private int[] getGapMap(HashMap AlSeqMaps, AlignmentAnnotation alan)
1129 if (AlSeqMaps.containsKey(alan.sequenceRef))
1131 gapMap = (int[]) AlSeqMaps.get(alan.sequenceRef);
1135 gapMap = new int[alan.sequenceRef.getLength()];
1136 // map from alignment position to sequence position.
1137 int[] sgapMap = alan.sequenceRef.gapMap();
1138 for (int a = 0; a < sgapMap.length; a++)
1140 gapMap[sgapMap[a]] = a;
1146 private void saveAlignmentSequenceAnnotation(HashMap AlSeqMaps,
1147 AlignmentSequence alsref, AlignmentAnnotation alan)
1151 // objects.core.AlignmentSequence alsref = (uk.ac.vamsas.
1152 // objects.core.AlignmentSequence) sref;
1153 uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation an = (uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation) getjv2vObj(alan);
1154 int[] gapMap = getGapMap(AlSeqMaps, alan);
1157 an = new uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation();
1158 initRangeAnnotationType(an, alan, gapMap);
1160 * I mean here that we don't actually have a semantic 'type' for the
1161 * annotation (this might be - score, intrinsic property, measurement,
1162 * something extracted from another program, etc)
1164 an.setType(JALVIEW_ANNOTATION_ROW); // TODO: better fix
1165 // this rough guess ;)
1166 alsref.addAlignmentSequenceAnnotation(an);
1167 bindjvvobj(alan, an);
1168 // These properties are directly supported by the
1169 // AlignmentSequenceAnnotation type.
1170 setAnnotationType(an, alan);
1171 an.setProvenance(dummyProvenance()); // get provenance as user
1172 // created, or jnet, or
1177 // update reference sequence Annotation
1178 if (an.getModifiable() == null) // TODO: USE VAMSAS LIBRARY OBJECT LOCK
1181 // verify existing alignment sequence annotation is up to date
1182 System.out.println("update alignment sequence annotation.");
1186 // verify existing alignment sequence annotation is up to date
1188 .println("make new alignment sequence annotation if modification has happened.");
1194 * set vamsas annotation object type from jalview annotation
1199 private void setAnnotationType(RangeAnnotation an,
1200 AlignmentAnnotation alan)
1202 if (an instanceof AlignmentSequenceAnnotation)
1204 if (alan.graph != AlignmentAnnotation.NO_GRAPH)
1206 ((AlignmentSequenceAnnotation) an).setGraph(true);
1210 ((AlignmentSequenceAnnotation) an).setGraph(false);
1213 if (an instanceof uk.ac.vamsas.objects.core.AlignmentAnnotation)
1215 if (alan.graph != AlignmentAnnotation.NO_GRAPH)
1217 ((uk.ac.vamsas.objects.core.AlignmentAnnotation) an).setGraph(true);
1221 ((uk.ac.vamsas.objects.core.AlignmentAnnotation) an)
1227 case AlignmentAnnotation.BAR_GRAPH:
1228 an.addProperty(Properties.newProperty(DISCRETE_ANNOTATION,
1229 Properties.BOOLEANTYPE, "true"));
1231 case AlignmentAnnotation.LINE_GRAPH:
1232 an.addProperty(Properties.newProperty(CONTINUOUS_ANNOTATION,
1233 Properties.BOOLEANTYPE, "true"));
1236 // don't add any kind of discrete or continous property info.
1241 * get start<end range of segment, adjusting for inclusivity flag and
1245 * @param ensureDirection
1246 * when true - always ensure start is less than end.
1247 * @return int[] { start, end, direction} where direction==1 for range running
1248 * from end to start.
1250 private int[] getSegRange(Seg visSeg, boolean ensureDirection)
1252 boolean incl = visSeg.getInclusive();
1253 // adjust for inclusive flag.
1254 int pol = (visSeg.getStart() <= visSeg.getEnd()) ? 1 : -1; // polarity of
1256 int start = visSeg.getStart() + (incl ? 0 : pol);
1257 int end = visSeg.getEnd() + (incl ? 0 : -pol);
1258 if (ensureDirection && pol == -1)
1260 // jalview doesn't deal with inverted ranges, yet.
1265 return new int[] { start, end, pol < 0 ? 1 : 0 };
1271 * @return true if annotation is not to be stored in document
1273 private boolean isJalviewOnly(AlignmentAnnotation annotation)
1275 return annotation.autoCalculated || annotation.label.equals("Quality")
1276 || annotation.label.equals("Conservation")
1277 || annotation.label.equals("Consensus");
1280 boolean dojvsync = true;
1282 // boolean dojvsync = false; // disables Jalview AppData IO
1284 * list of alignment views created when updating Jalview from document.
1286 private final Vector newAlignmentViews = new Vector();
1289 * update local jalview view settings from the stored appdata (if any)
1291 public void updateJalviewFromAppdata()
1293 // recover any existing Jalview data from appdata
1294 // TODO: recover any PDB files stored as attachments in the vamsas session
1295 // and initialise the Jalview2XML.alreadyLoadedPDB hashtable with mappings
1298 final IClientAppdata cappdata = cdoc.getClientAppdata();
1299 if (cappdata != null)
1301 if (cappdata.hasClientAppdata())
1303 // TODO: how to check version of Jalview client app data and whether
1304 // it has been modified
1305 // client data is shared over all app clients
1308 jalview.gui.Jalview2XML fromxml = new jalview.gui.Jalview2XML();
1309 fromxml.attemptversion1parse = false;
1310 fromxml.setUniqueSetSuffix("");
1311 fromxml.setObjectMappingTables(vobj2jv, jv2vobj); // mapKeysToString
1313 // mapValuesToString
1314 fromxml.setSkipList(skipList);
1315 jalview.util.jarInputStreamProvider jprovider = new jalview.util.jarInputStreamProvider()
1319 public String getFilename()
1322 // TODO Get the vamsas session ID here
1323 return "Jalview Vamsas Document Client Data";
1327 public JarInputStream getJarInputStream() throws IOException
1329 jalview.bin.Cache.log
1330 .debug("Returning client input stream for Jalview from Vamsas Document.");
1331 return new JarInputStream(cappdata.getClientInputStream());
1336 fromxml.loadJalviewAlign(jprovider);
1338 } catch (Exception e)
1341 } catch (OutOfMemoryError e)
1350 if (cappdata.hasUserAppdata())
1352 // TODO: how to check version of Jalview user app data and whether it
1353 // has been modified
1354 // user data overrides data shared over all app clients ?
1357 jalview.gui.Jalview2XML fromxml = new jalview.gui.Jalview2XML();
1358 fromxml.attemptversion1parse = false;
1359 fromxml.setUniqueSetSuffix("");
1360 fromxml.setSkipList(skipList);
1361 fromxml.setObjectMappingTables(mapKeysToString(vobj2jv),
1362 mapValuesToString(jv2vobj));
1363 jalview.util.jarInputStreamProvider jarstream = new jalview.util.jarInputStreamProvider()
1367 public String getFilename()
1370 // TODO Get the vamsas session ID here
1371 return "Jalview Vamsas Document User Data";
1375 public JarInputStream getJarInputStream() throws IOException
1377 jalview.bin.Cache.log
1378 .debug("Returning user input stream for Jalview from Vamsas Document.");
1379 return new JarInputStream(cappdata.getUserInputStream());
1384 fromxml.loadJalviewAlign(jarstream);
1386 } catch (Exception e)
1389 } catch (OutOfMemoryError e)
1399 flushAlignViewports();
1403 * remove any spurious views generated by document synchronization
1405 private void flushAlignViewports()
1407 // remove any additional viewports originally recovered from the vamsas
1409 // search for all alignframes containing viewports generated from document
1411 // and if any contain more than one view, then remove the one generated by
1413 AlignmentViewport views[], av = null;
1414 AlignFrame af = null;
1415 Iterator newviews = newAlignmentViews.iterator();
1416 while (newviews.hasNext())
1418 av = (AlignmentViewport) newviews.next();
1419 af = Desktop.getAlignFrameFor(av);
1420 // TODO implement this : af.getNumberOfViews
1421 String seqsetidobj = av.getSequenceSetId();
1422 views = Desktop.getViewports(seqsetidobj);
1423 Cache.log.debug("Found "
1424 + (views == null ? " no " : "" + views.length)
1425 + " views for '" + av.getSequenceSetId() + "'");
1426 if (views.length > 1)
1428 // we need to close the original document view.
1430 // work out how to do this by seeing if the views are gathered.
1431 // pretty clunky but the only way to do this without adding more flags
1432 // to the align frames.
1433 boolean gathered = false;
1434 String newviewid = null;
1435 List<AlignedCodonFrame> mappings = av.getAlignment()
1437 for (int i = 0; i < views.length; i++)
1441 AlignFrame viewframe = Desktop.getAlignFrameFor(views[i]);
1442 if (viewframe == af)
1446 newviewid = views[i].getSequenceSetId();
1450 // lose the reference to the vamsas document created view
1454 // close the view generated by the vamsas document synchronization
1461 af.closeMenuItem_actionPerformed(false);
1463 replaceJvObjMapping(seqsetidobj, newviewid);
1464 seqsetidobj = newviewid;
1465 // not sure if we need to do this:
1467 if (false) // mappings != null)
1469 // ensure sequence mappings from vamsas document view still
1471 if (mappings != null)
1473 jalview.structure.StructureSelectionManager
1474 .getStructureSelectionManager(Desktop.instance)
1475 .registerMappings(mappings);
1479 // ensure vamsas object binds to the stored views retrieved from
1481 // jalview.structure.StructureSelectionManager
1482 // .getStructureSelectionManager()
1483 // .addStructureViewerListener(viewframe.alignPanel);
1488 newAlignmentViews.clear();
1492 * replaces oldjvobject with newjvobject in the Jalview Object <> VorbaID
1495 * @param oldjvobject
1496 * @param newjvobject
1499 private void replaceJvObjMapping(Object oldjvobject, Object newjvobject)
1501 Object vobject = jv2vobj.remove(oldjvobject);
1502 if (vobject == null)
1504 // NOTE: this happens if user deletes object in one session then updates
1505 // from another client
1506 throw new Error(MessageManager.formatMessage(
1507 "error.implementation_error_old_jalview_object_not_bound",
1508 new String[] { oldjvobject.toString() }));
1510 if (newjvobject != null)
1512 jv2vobj.put(newjvobject, vobject);
1513 vobj2jv.put(vobject, newjvobject);
1518 * Update the jalview client and user appdata from the local jalview settings
1520 public void updateJalviewClientAppdata()
1522 final IClientAppdata cappdata = cdoc.getClientAppdata();
1523 if (cappdata != null)
1527 jalview.gui.Jalview2XML jxml = new jalview.gui.Jalview2XML();
1528 jxml.setObjectMappingTables(mapKeysToString(vobj2jv),
1529 mapValuesToString(jv2vobj));
1530 jxml.setSkipList(skipList);
1533 jxml.saveState(new JarOutputStream(cappdata
1534 .getClientOutputStream()));
1537 } catch (Exception e)
1539 // TODO raise GUI warning if user requests it.
1540 jalview.bin.Cache.log
1541 .error("Couldn't update jalview client application data. Giving up - local settings probably lost.",
1547 jalview.bin.Cache.log
1548 .error("Couldn't access client application data for vamsas session. This is probably a vamsas client bug.");
1553 * translate the Vobject keys to strings for use in Jalview2XML
1558 private IdentityHashMap mapValuesToString(IdentityHashMap jv2vobj2)
1560 IdentityHashMap mapped = new IdentityHashMap();
1561 Iterator keys = jv2vobj2.keySet().iterator();
1562 while (keys.hasNext())
1564 Object key = keys.next();
1565 mapped.put(key, jv2vobj2.get(key).toString());
1571 * translate the Vobject values to strings for use in Jalview2XML
1574 * @return hashtable with string values
1576 private Hashtable mapKeysToString(Hashtable vobj2jv2)
1578 Hashtable mapped = new Hashtable();
1579 Iterator keys = vobj2jv2.keySet().iterator();
1580 while (keys.hasNext())
1582 Object key = keys.next();
1583 mapped.put(key.toString(), vobj2jv2.get(key));
1589 * synchronize Jalview from the vamsas document
1591 * @return number of new views from document
1593 public int updateToJalview()
1595 VAMSAS _roots[] = cdoc.getVamsasRoots();
1597 for (int _root = 0; _root < _roots.length; _root++)
1599 VAMSAS root = _roots[_root];
1600 boolean newds = false;
1601 for (int _ds = 0, _nds = root.getDataSetCount(); _ds < _nds; _ds++)
1603 // ///////////////////////////////////
1605 DataSet dataset = root.getDataSet(_ds);
1606 int i, iSize = dataset.getSequenceCount();
1607 List<SequenceI> dsseqs;
1608 jalview.datamodel.Alignment jdataset = (jalview.datamodel.Alignment) getvObj2jv(dataset);
1610 if (jdataset == null)
1612 Cache.log.debug("Initialising new jalview dataset fields");
1614 dsseqs = new Vector();
1618 Cache.log.debug("Update jalview dataset from vamsas.");
1619 jremain = jdataset.getHeight();
1620 dsseqs = jdataset.getSequences();
1623 // TODO: test sequence merging - we preserve existing non vamsas
1624 // sequences but add in any new vamsas ones, and don't yet update any
1625 // sequence attributes
1626 for (i = 0; i < iSize; i++)
1628 Sequence vdseq = dataset.getSequence(i);
1629 jalview.io.vamsas.Datasetsequence dssync = new Datasetsequence(
1632 jalview.datamodel.SequenceI dsseq = (SequenceI) dssync.getJvobj();
1633 if (dssync.isAddfromdoc())
1637 if (vdseq.getDbRefCount() > 0)
1639 DbRef[] dbref = vdseq.getDbRef();
1640 for (int db = 0; db < dbref.length; db++)
1642 new jalview.io.vamsas.Dbref(this, dbref[db], vdseq, dsseq);
1645 dsseq.updatePDBIds();
1651 SequenceI[] seqs = new SequenceI[dsseqs.size()];
1652 for (i = 0, iSize = dsseqs.size(); i < iSize; i++)
1654 seqs[i] = dsseqs.get(i);
1655 dsseqs.set(i, null);
1657 jdataset = new jalview.datamodel.Alignment(seqs);
1658 Cache.log.debug("New vamsas dataset imported into jalview.");
1659 bindjvvobj(jdataset, dataset);
1662 // add any new dataset sequence feature annotations
1663 if (dataset.getDataSetAnnotations() != null)
1665 for (int dsa = 0; dsa < dataset.getDataSetAnnotationsCount(); dsa++)
1667 DataSetAnnotations dseta = dataset.getDataSetAnnotations(dsa);
1668 // TODO: deal with group annotation on datset sequences.
1669 if (dseta.getSeqRefCount() == 1)
1671 SequenceI dsSeq = (SequenceI) getvObj2jv((Vobject) dseta
1672 .getSeqRef(0)); // TODO: deal with group dataset
1676 jalview.bin.Cache.log
1677 .warn("Couldn't resolve jalview sequenceI for dataset object reference "
1678 + ((Vobject) dataset.getDataSetAnnotations(
1679 dsa).getSeqRef(0)).getVorbaId()
1684 if (dseta.getAnnotationElementCount() == 0)
1686 new jalview.io.vamsas.Sequencefeature(this, dseta, dsSeq);
1691 // TODO: deal with alignmentAnnotation style annotation
1692 // appearing on dataset sequences.
1693 // JBPNote: we could just add them to all alignments but
1694 // that may complicate cross references in the jalview
1697 .warn("Ignoring dataset annotation with annotationElements. Not yet supported in jalview.");
1704 .warn("Ignoring multiply referenced dataset sequence annotation for binding to datsaet sequence features.");
1708 if (dataset.getAlignmentCount() > 0)
1710 // LOAD ALIGNMENTS from DATASET
1712 for (int al = 0, nal = dataset.getAlignmentCount(); al < nal; al++)
1714 uk.ac.vamsas.objects.core.Alignment alignment = dataset
1716 // TODO check this handles multiple views properly
1717 AlignmentViewport av = findViewport(alignment);
1719 jalview.datamodel.AlignmentI jal = null;
1722 // TODO check that correct alignment object is retrieved when
1723 // hidden seqs exist.
1724 jal = (av.hasHiddenRows()) ? av.getAlignment()
1725 .getHiddenSequences().getFullAlignment() : av
1728 iSize = alignment.getAlignmentSequenceCount();
1729 boolean refreshal = false;
1730 Vector newasAnnots = new Vector();
1731 char gapChar = ' '; // default for new alignments read in from the
1735 dsseqs = jal.getSequences(); // for merge/update
1736 gapChar = jal.getGapCharacter();
1740 dsseqs = new Vector();
1742 char valGapchar = alignment.getGapChar().charAt(0);
1743 for (i = 0; i < iSize; i++)
1745 AlignmentSequence valseq = alignment.getAlignmentSequence(i);
1746 jalview.datamodel.Sequence alseq = (jalview.datamodel.Sequence) getvObj2jv(valseq);
1747 if (syncFromAlignmentSequence(valseq, valGapchar, gapChar,
1748 dsseqs) && alseq != null)
1751 // updated to sequence from the document
1755 if (valseq.getAlignmentSequenceAnnotationCount() > 0)
1757 AlignmentSequenceAnnotation[] vasannot = valseq
1758 .getAlignmentSequenceAnnotation();
1759 for (int a = 0; a < vasannot.length; a++)
1761 jalview.datamodel.AlignmentAnnotation asa = (jalview.datamodel.AlignmentAnnotation) getvObj2jv(vasannot[a]); // TODO:
1769 int se[] = getBounds(vasannot[a]);
1770 asa = getjAlignmentAnnotation(jal, vasannot[a]);
1771 asa.setSequenceRef(alseq);
1772 asa.createSequenceMapping(alseq, se[0], false); // TODO:
1783 alseq.addAlignmentAnnotation(asa);
1784 bindjvvobj(asa, vasannot[a]);
1786 newasAnnots.add(asa);
1790 // update existing annotation - can do this in place
1791 if (vasannot[a].getModifiable() == null) // TODO: USE
1797 .info("UNIMPLEMENTED: not recovering user modifiable sequence alignment annotation");
1798 // TODO: should at least replace with new one - otherwise
1799 // things will break
1800 // basically do this:
1801 // int se[] = getBounds(vasannot[a]);
1802 // asa.update(getjAlignmentAnnotation(jal, vasannot[a]));
1803 // // update from another annotation object in place.
1804 // asa.createSequenceMapping(alseq, se[0], false);
1813 SequenceI[] seqs = new SequenceI[dsseqs.size()];
1814 for (i = 0, iSize = dsseqs.size(); i < iSize; i++)
1816 seqs[i] = dsseqs.get(i);
1817 dsseqs.set(i, null);
1819 jal = new jalview.datamodel.Alignment(seqs);
1820 Cache.log.debug("New vamsas alignment imported into jalview "
1821 + alignment.getVorbaId().getId());
1822 jal.setDataset(jdataset);
1824 if (newasAnnots != null && newasAnnots.size() > 0)
1826 // Add the new sequence annotations in to the alignment.
1827 for (int an = 0, anSize = newasAnnots.size(); an < anSize; an++)
1829 jal.addAnnotation((AlignmentAnnotation) newasAnnots
1831 // TODO: check if anything has to be done - like calling
1832 // adjustForAlignment or something.
1833 newasAnnots.setElementAt(null, an);
1837 // //////////////////////////////////////////
1838 // //LOAD ANNOTATIONS FOR THE ALIGNMENT
1839 // ////////////////////////////////////
1840 if (alignment.getAlignmentAnnotationCount() > 0)
1842 uk.ac.vamsas.objects.core.AlignmentAnnotation[] an = alignment
1843 .getAlignmentAnnotation();
1845 for (int j = 0; j < an.length; j++)
1847 jalview.datamodel.AlignmentAnnotation jan = (jalview.datamodel.AlignmentAnnotation) getvObj2jv(an[j]);
1850 // update or stay the same.
1851 // TODO: should at least replace with a new one - otherwise
1852 // things will break
1853 // basically do this:
1854 // jan.update(getjAlignmentAnnotation(jal, an[a])); // update
1855 // from another annotation object in place.
1858 .debug("update from vamsas alignment annotation to existing jalview alignment annotation.");
1859 if (an[j].getModifiable() == null) // TODO: USE VAMSAS
1860 // LIBRARY OBJECT LOCK
1863 // TODO: user defined annotation is totally mutable... - so
1864 // load it up or throw away if locally edited.
1866 .info("NOT IMPLEMENTED - Recovering user-modifiable annotation - yet...");
1868 // TODO: compare annotation element rows
1869 // TODO: compare props.
1873 jan = getjAlignmentAnnotation(jal, an[j]);
1874 // TODO: ensure we add the alignment annotation before the
1875 // automatic annotation rows
1876 jal.addAnnotation(jan);
1877 bindjvvobj(jan, an[j]);
1882 AlignFrame alignFrame;
1885 Cache.log.debug("New alignframe for alignment "
1886 + alignment.getVorbaId());
1887 // ///////////////////////////////
1888 // construct alignment view
1889 alignFrame = new AlignFrame(jal, AlignFrame.DEFAULT_WIDTH,
1890 AlignFrame.DEFAULT_HEIGHT, alignment.getVorbaId()
1892 av = alignFrame.getViewport();
1893 newAlignmentViews.addElement(av);
1894 String title = alignment
1897 alignment.getProvenance().getEntryCount() - 1)
1899 if (alignment.getPropertyCount() > 0)
1901 for (int p = 0, pe = alignment.getPropertyCount(); p < pe; p++)
1903 if (alignment.getProperty(p).getName().equals("title"))
1905 title = alignment.getProperty(p).getContent();
1909 // TODO: automatically create meaningful title for a vamsas
1910 // alignment using its provenance.
1911 if (Cache.log.isDebugEnabled())
1913 title = title + "(" + alignment.getVorbaId() + ")";
1916 jalview.gui.Desktop.addInternalFrame(alignFrame, title,
1917 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
1918 bindjvvobj(av.getSequenceSetId(), alignment);
1922 // find the alignFrame for jal.
1923 // TODO: fix this so we retrieve the alignFrame handing av
1924 // *directly* (JBPNote - don't understand this now)
1925 // TODO: make sure all associated views are refreshed
1926 alignFrame = Desktop.getAlignFrameFor(av);
1929 av.alignmentChanged(alignFrame.alignPanel);
1930 alignFrame.alignPanel.adjustAnnotationHeight();
1934 // /////////////////////////////////////
1935 if (alignment.getTreeCount() > 0)
1938 for (int t = 0; t < alignment.getTreeCount(); t++)
1940 jalview.io.vamsas.Tree vstree = new jalview.io.vamsas.Tree(
1941 this, alignFrame, alignment.getTree(t));
1942 TreePanel tp = null;
1943 if (vstree.isValidTree())
1945 tp = alignFrame.ShowNewickTree(vstree.getNewickTree(),
1946 vstree.getTitle(), vstree.getInputData(), 600,
1947 500, t * 20 + 50, t * 20 + 50);
1952 bindjvvobj(tp, alignment.getTree(t));
1955 vstree.UpdateSequenceTreeMap(tp);
1956 } catch (RuntimeException e)
1958 Cache.log.warn("update of labels failed.", e);
1963 Cache.log.warn("Cannot create tree for tree " + t
1965 + alignment.getTree(t).getVorbaId());
1973 // we do sequenceMappings last because they span all datasets in a vamsas
1975 for (int _ds = 0, _nds = root.getDataSetCount(); _ds < _nds; _ds++)
1977 DataSet dataset = root.getDataSet(_ds);
1978 if (dataset.getSequenceMappingCount() > 0)
1980 for (int sm = 0, smCount = dataset.getSequenceMappingCount(); sm < smCount; sm++)
1982 Rangetype seqmap = new jalview.io.vamsas.Sequencemapping(this,
1983 dataset.getSequenceMapping(sm));
1988 return newAlignmentViews.size();
1991 public AlignmentViewport findViewport(Alignment alignment)
1993 AlignmentViewport av = null;
1994 AlignmentViewport[] avs = Desktop
1995 .getViewports((String) getvObj2jv(alignment));
2003 // bitfields - should be a template in j1.5
2004 private static int HASSECSTR = 0;
2006 private static int HASVALS = 1;
2008 private static int HASHPHOB = 2;
2010 private static int HASDC = 3;
2012 private static int HASDESCSTR = 4;
2014 private static int HASTWOSTATE = 5; // not used yet.
2017 * parses the AnnotationElements - if they exist - into
2018 * jalview.datamodel.Annotation[] rows Two annotation rows are made if there
2019 * are distinct annotation for both at 'pos' and 'after pos' at any particular
2023 * @return { boolean[static int constants ], int[ae.length] - map to annotated
2024 * object frame, jalview.datamodel.Annotation[],
2025 * jalview.datamodel.Annotation[] (after)}
2027 private Object[] parseRangeAnnotation(
2028 uk.ac.vamsas.objects.core.RangeAnnotation annotation)
2030 // set these attributes by looking in the annotation to decide what kind of
2031 // alignment annotation rows will be made
2032 // TODO: potentially we might make several annotation rows from one vamsas
2033 // alignment annotation. the jv2Vobj binding mechanism
2034 // may not quite cope with this (without binding an array of annotations to
2035 // a vamsas alignment annotation)
2036 // summary flags saying what we found over the set of annotation rows.
2037 boolean[] AeContent = new boolean[] { false, false, false, false, false };
2038 int[] rangeMap = getMapping(annotation);
2039 jalview.datamodel.Annotation[][] anot = new jalview.datamodel.Annotation[][]
2040 { new jalview.datamodel.Annotation[rangeMap.length],
2041 new jalview.datamodel.Annotation[rangeMap.length] };
2042 boolean mergeable = true; // false if 'after positions cant be placed on
2043 // same annotation row as positions.
2045 if (annotation.getAnnotationElementCount() > 0)
2047 AnnotationElement ae[] = annotation.getAnnotationElement();
2048 for (int aa = 0; aa < ae.length; aa++)
2050 int pos = (int) ae[aa].getPosition() - 1; // pos counts from 1 to
2051 // (|seg.start-seg.end|+1)
2052 if (pos >= 0 && pos < rangeMap.length)
2054 int row = ae[aa].getAfter() ? 1 : 0;
2055 if (anot[row][pos] != null)
2057 // only time this should happen is if the After flag is set.
2058 Cache.log.debug("Ignoring duplicate annotation site at " + pos);
2061 if (anot[1 - row][pos] != null)
2066 if (ae[aa].getDescription() != null)
2068 desc = ae[aa].getDescription();
2069 if (desc.length() > 0)
2071 // have imported valid description string
2072 AeContent[HASDESCSTR] = true;
2075 String dc = null; // ae[aa].getDisplayCharacter()==null ? "dc" :
2076 // ae[aa].getDisplayCharacter();
2077 String ss = null; // ae[aa].getSecondaryStructure()==null ? "ss" :
2078 // ae[aa].getSecondaryStructure();
2079 java.awt.Color colour = null;
2080 if (ae[aa].getGlyphCount() > 0)
2082 Glyph[] glyphs = ae[aa].getGlyph();
2083 for (int g = 0; g < glyphs.length; g++)
2087 .equals(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_SS_3STATE))
2089 ss = glyphs[g].getContent();
2090 AeContent[HASSECSTR] = true;
2094 .equals(uk.ac.vamsas.objects.utils.GlyphDictionary.PROTEIN_HD_HYDRO))
2096 Cache.log.debug("ignoring hydrophobicity glyph marker.");
2097 AeContent[HASHPHOB] = true;
2098 char c = (dc = glyphs[g].getContent()).charAt(0);
2099 // dc may get overwritten - but we still set the colour.
2100 colour = new java.awt.Color(c == '+' ? 255 : 0,
2101 c == '.' ? 255 : 0, c == '-' ? 255 : 0);
2104 else if (glyphs[g].getDict().equals(
2105 uk.ac.vamsas.objects.utils.GlyphDictionary.DEFAULT))
2107 dc = glyphs[g].getContent();
2108 AeContent[HASDC] = true;
2113 .debug("IMPLEMENTATION TODO: Ignoring unknown glyph type "
2114 + glyphs[g].getDict());
2119 if (ae[aa].getValueCount() > 0)
2121 AeContent[HASVALS] = true;
2122 if (ae[aa].getValueCount() > 1)
2124 Cache.log.warn("ignoring additional "
2125 + (ae[aa].getValueCount() - 1)
2126 + " values in annotation element.");
2128 val = ae[aa].getValue(0);
2132 anot[row][pos] = new jalview.datamodel.Annotation(
2133 (dc != null) ? dc : "", desc,
2134 (ss != null) ? ss.charAt(0) : ' ', val);
2138 anot[row][pos] = new jalview.datamodel.Annotation(
2139 (dc != null) ? dc : "", desc,
2140 (ss != null) ? ss.charAt(0) : ' ', val, colour);
2145 Cache.log.warn("Ignoring out of bound annotation element " + aa
2146 + " in " + annotation.getVorbaId().getId());
2149 // decide on how many annotation rows are needed.
2152 for (int i = 0; i < anot[0].length; i++)
2154 if (anot[1][i] != null)
2156 anot[0][i] = anot[1][i];
2157 anot[0][i].description = anot[0][i].description + " (after)";
2158 AeContent[HASDESCSTR] = true; // we have valid description string
2167 for (int i = 0; i < anot[0].length; i++)
2169 anot[1][i].description = anot[1][i].description + " (after)";
2172 return new Object[] { AeContent, rangeMap, anot[0], anot[1] };
2176 // no annotations to parse. Just return an empty annotationElement[]
2178 return new Object[] { AeContent, rangeMap, anot[0], anot[1] };
2185 * the jalview alignment to which the annotation will be attached
2186 * (ideally - freshly updated from corresponding vamsas alignment)
2188 * @return unbound jalview alignment annotation object.
2190 private jalview.datamodel.AlignmentAnnotation getjAlignmentAnnotation(
2191 jalview.datamodel.AlignmentI jal,
2192 uk.ac.vamsas.objects.core.RangeAnnotation annotation)
2194 if (annotation == null)
2199 // hasSequenceRef=annotation.getClass().equals(uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation.class);
2200 // boolean hasProvenance=hasSequenceRef ||
2201 // (annotation.getClass().equals(uk.ac.vamsas.objects.core.AlignmentAnnotation.class));
2203 * int se[] = getBounds(annotation); if (se==null) se=new int[]
2204 * {0,jal.getWidth()-1};
2206 Object[] parsedRangeAnnotation = parseRangeAnnotation(annotation);
2207 String a_label = annotation.getLabel();
2208 String a_descr = annotation.getDescription();
2209 GraphLine gl = null;
2211 boolean interp = true; // cleared if annotation is DISCRETE
2212 // set type and other attributes from properties
2213 if (annotation.getPropertyCount() > 0)
2215 // look for special jalview properties
2216 uk.ac.vamsas.objects.core.Property[] props = annotation.getProperty();
2217 for (int p = 0; p < props.length; p++)
2219 if (props[p].getName().equalsIgnoreCase(DISCRETE_ANNOTATION))
2221 type = AlignmentAnnotation.BAR_GRAPH;
2224 else if (props[p].getName().equalsIgnoreCase(CONTINUOUS_ANNOTATION))
2226 type = AlignmentAnnotation.LINE_GRAPH;
2228 else if (props[p].getName().equalsIgnoreCase(THRESHOLD))
2233 val = new Float(props[p].getContent());
2234 } catch (Exception e)
2236 Cache.log.warn("Failed to parse threshold property");
2242 gl = new GraphLine(val.floatValue(), "", java.awt.Color.black);
2246 gl.value = val.floatValue();
2250 else if (props[p].getName().equalsIgnoreCase(THRESHOLD + "Name"))
2254 gl = new GraphLine(0, "", java.awt.Color.black);
2256 gl.label = props[p].getContent();
2260 jalview.datamodel.AlignmentAnnotation jan = null;
2261 if (a_label == null || a_label.length() == 0)
2263 a_label = annotation.getType();
2264 if (a_label.length() == 0)
2266 a_label = "Unamed annotation";
2269 if (a_descr == null || a_descr.length() == 0)
2271 a_descr = "Annotation of type '" + annotation.getType() + "'";
2273 if (parsedRangeAnnotation == null)
2276 .debug("Inserting empty annotation row elements for a whole-alignment annotation.");
2280 if (parsedRangeAnnotation[3] != null)
2282 Cache.log.warn("Ignoring 'After' annotation row in "
2283 + annotation.getVorbaId());
2285 jalview.datamodel.Annotation[] arow = (jalview.datamodel.Annotation[]) parsedRangeAnnotation[2];
2286 boolean[] has = (boolean[]) parsedRangeAnnotation[0];
2287 // VAMSAS: getGraph is only on derived annotation for alignments - in this
2288 // way its 'odd' - there is already an existing TODO about removing this
2289 // flag as being redundant
2291 * if((annotation.getClass().equals(uk.ac.vamsas.objects.core.
2292 * AlignmentAnnotation.class) &&
2293 * ((uk.ac.vamsas.objects.core.AlignmentAnnotation)annotation).getGraph())
2294 * || (hasSequenceRef=true &&
2295 * ((uk.ac.vamsas.objects.core.AlignmentSequenceAnnotation
2296 * )annotation).getGraph())) {
2302 type = jalview.datamodel.AlignmentAnnotation.BAR_GRAPH; // default
2308 // no hints - so we ensure HPHOB display is like this.
2309 type = jalview.datamodel.AlignmentAnnotation.BAR_GRAPH;
2312 // make bounds and automatic description strings for jalview user's
2313 // benefit (these shouldn't be written back to vamsas document)
2314 boolean first = true;
2315 float min = 0, max = 1;
2317 for (int i = 0; i < arow.length; i++)
2319 if (arow[i] != null)
2321 if (i - lastval > 1 && interp)
2323 // do some interpolation *between* points
2324 if (arow[lastval] != null)
2326 float interval = arow[i].value - arow[lastval].value;
2327 interval /= i - lastval;
2328 float base = arow[lastval].value;
2329 for (int ip = lastval + 1, np = 0; ip < i; np++, ip++)
2331 arow[ip] = new jalview.datamodel.Annotation("", "", ' ',
2332 interval * np + base);
2333 // NB - Interpolated points don't get a tooltip and
2339 // check range - shouldn't we have a min and max property in the
2340 // annotation object ?
2343 min = max = arow[i].value;
2348 if (arow[i].value < min)
2350 min = arow[i].value;
2352 else if (arow[i].value > max)
2354 max = arow[i].value;
2357 // make tooltip and display char value
2358 if (!has[HASDESCSTR])
2360 arow[i].description = arow[i].value + "";
2366 if (arow[i].description != null
2367 && arow[i].description.length() < 3)
2369 // copy over the description as the display char.
2370 arow[i].displayCharacter = new String(arow[i].description);
2375 // mark the position as a point used for the interpolation.
2376 arow[i].displayCharacter = arow[i].value + "";
2381 jan = new jalview.datamodel.AlignmentAnnotation(a_label, a_descr,
2382 arow, min, max, type);
2386 if (annotation.getAnnotationElementCount() == 0)
2388 // empty annotation array
2389 // TODO: alignment 'features' compare rangeType spec to alignment
2390 // width - if it is not complete, then mark regions on the annotation
2393 jan = new jalview.datamodel.AlignmentAnnotation(a_label, a_descr,
2395 jan.setThreshold(null);
2396 jan.annotationId = annotation.getVorbaId().toString(); // keep all the
2399 if (annotation.getLinkCount() > 0)
2401 Cache.log.warn("Ignoring " + annotation.getLinkCount()
2402 + "links added to AlignmentAnnotation.");
2404 if (annotation.getModifiable() == null
2405 || annotation.getModifiable().length() == 0) // TODO: USE VAMSAS
2409 jan.editable = true;
2413 if (annotation.getGroup() != null
2414 && annotation.getGroup().length() > 0)
2416 jan.graphGroup = Integer.parseInt(annotation.getGroup()); // TODO:
2424 } catch (Exception e)
2427 .info("UNIMPLEMENTED : Couldn't parse non-integer group value for setting graphGroup correctly.");
2437 * get real bounds of a RangeType's specification. start and end are an
2438 * inclusive range within which all segments and positions lie. TODO: refactor
2442 * @return int[] { start, end}
2444 private int[] getBounds(RangeType dseta)
2449 if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
2453 .getString("error.invalid_vamsas_rangetype_cannot_resolve_lists"));
2455 if (dseta.getSegCount() > 0)
2457 se = getSegRange(dseta.getSeg(0), true);
2458 for (int s = 1, sSize = dseta.getSegCount(); s < sSize; s++)
2460 int nse[] = getSegRange(dseta.getSeg(s), true);
2471 if (dseta.getPosCount() > 0)
2473 // could do a polarity for pos range too. and pass back indication of
2475 int pos = dseta.getPos(0).getI();
2476 se = new int[] { pos, pos };
2477 for (int p = 0, pSize = dseta.getPosCount(); p < pSize; p++)
2479 pos = dseta.getPos(p).getI();
2496 * map from a rangeType's internal frame to the referenced object's coordinate
2500 * @return int [] { ref(pos)...} for all pos in rangeType's frame.
2502 private int[] getMapping(RangeType dseta)
2504 Vector posList = new Vector();
2508 if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
2512 .getString("error.invalid_vamsas_rangetype_cannot_resolve_lists"));
2514 if (dseta.getSegCount() > 0)
2516 for (int s = 0, sSize = dseta.getSegCount(); s < sSize; s++)
2518 se = getSegRange(dseta.getSeg(s), false);
2519 int se_end = se[1 - se[2]] + (se[2] == 0 ? 1 : -1);
2520 for (int p = se[se[2]]; p != se_end; p += se[2] == 0 ? 1 : -1)
2522 posList.add(new Integer(p));
2526 else if (dseta.getPosCount() > 0)
2528 int pos = dseta.getPos(0).getI();
2530 for (int p = 0, pSize = dseta.getPosCount(); p < pSize; p++)
2532 pos = dseta.getPos(p).getI();
2533 posList.add(new Integer(pos));
2537 if (posList != null && posList.size() > 0)
2539 int[] range = new int[posList.size()];
2540 for (int i = 0; i < range.length; i++)
2542 range[i] = ((Integer) posList.elementAt(i)).intValue();
2553 * where the from range is the local mapped range, and the to range
2554 * is the 'mapped' range in the MapRangeType
2555 * @param default unit for local
2556 * @param default unit for mapped
2559 private jalview.util.MapList parsemapType(MapType maprange, int localu,
2562 jalview.util.MapList ml = null;
2563 int[] localRange = getMapping(maprange.getLocal());
2564 int[] mappedRange = getMapping(maprange.getMapped());
2565 long lu = maprange.getLocal().hasUnit() ? maprange.getLocal().getUnit()
2567 long mu = maprange.getMapped().hasUnit() ? maprange.getMapped()
2568 .getUnit() : mappedu;
2569 ml = new jalview.util.MapList(localRange, mappedRange, (int) lu,
2575 * initialise a range type object from a set of start/end inclusive intervals
2580 private void initRangeType(RangeType mrt, List<int[]> ranges)
2582 for (int[] range : ranges)
2584 Seg vSeg = new Seg();
2585 vSeg.setStart(range[0]);
2586 vSeg.setEnd(range[1]);
2592 * initialise a MapType object from a MapList object.
2598 private void initMapType(MapType maprange, jalview.util.MapList ml,
2601 maprange.setLocal(new Local());
2602 maprange.setMapped(new Mapped());
2603 initRangeType(maprange.getLocal(), ml.getFromRanges());
2604 initRangeType(maprange.getMapped(), ml.getToRanges());
2607 maprange.getLocal().setUnit(ml.getFromRatio());
2608 maprange.getLocal().setUnit(ml.getToRatio());
2613 * not needed now. Provenance getVamsasProvenance(jalview.datamodel.Provenance
2614 * jprov) { jalview.datamodel.ProvenanceEntry[] entries = null; // TODO: fix
2615 * App and Action here. Provenance prov = new Provenance();
2616 * org.exolab.castor.types.Date date = new org.exolab.castor.types.Date( new
2617 * java.util.Date()); Entry provEntry;
2619 * if (jprov != null) { entries = jprov.getEntries(); for (int i = 0; i <
2620 * entries.length; i++) { provEntry = new Entry(); try { date = new
2621 * org.exolab.castor.types.Date(entries[i].getDate()); } catch (Exception ex)
2622 * { ex.printStackTrace();
2624 * date = new org.exolab.castor.types.Date(entries[i].getDate()); }
2625 * provEntry.setDate(date); provEntry.setUser(entries[i].getUser());
2626 * provEntry.setAction(entries[i].getAction()); prov.addEntry(provEntry); } }
2627 * else { provEntry = new Entry(); provEntry.setDate(date);
2628 * provEntry.setUser(System.getProperty("user.name")); // TODO: ext string
2629 * provEntry.setApp("JVAPP"); // TODO: ext string provEntry.setAction(action);
2630 * prov.addEntry(provEntry); }
2634 jalview.datamodel.Provenance getJalviewProvenance(Provenance prov)
2636 // TODO: fix App and Action entries and check use of provenance in jalview.
2637 jalview.datamodel.Provenance jprov = new jalview.datamodel.Provenance();
2638 for (int i = 0; i < prov.getEntryCount(); i++)
2640 jprov.addEntry(prov.getEntry(i).getUser(), prov.getEntry(i)
2641 .getAction(), prov.getEntry(i).getDate(), prov.getEntry(i)
2650 * @return default initial provenance list for a Jalview created vamsas
2653 Provenance dummyProvenance()
2655 return dummyProvenance(null);
2658 Entry dummyPEntry(String action)
2660 Entry entry = new Entry();
2661 entry.setApp(this.provEntry.getApp());
2664 entry.setAction(action);
2668 entry.setAction("created.");
2670 entry.setDate(new java.util.Date());
2671 entry.setUser(this.provEntry.getUser());
2675 Provenance dummyProvenance(String action)
2677 Provenance prov = new Provenance();
2678 prov.addEntry(dummyPEntry(action));
2682 Entry addProvenance(Provenance p, String action)
2684 Entry dentry = dummyPEntry(action);
2689 public Entry getProvEntry()
2694 public IClientDocument getClientDocument()
2699 public IdentityHashMap getJvObjectBinding()
2704 public Hashtable getVamsasObjectBinding()
2709 public void storeSequenceMappings(AlignmentViewport viewport, String title)
2712 AlignmentViewport av = viewport;
2715 jalview.datamodel.AlignmentI jal = av.getAlignment();
2716 // /////////////////////////////////////////
2718 DataSet dataset = null;
2719 if (jal.getDataset() == null)
2721 Cache.log.warn("Creating new dataset for an alignment.");
2722 jal.setDataset(null);
2724 dataset = (DataSet) ((Alignment) getjv2vObj(viewport
2725 .getSequenceSetId())).getV_parent(); // jal.getDataset());
2726 if (dataset == null)
2728 dataset = (DataSet) getjv2vObj(jal.getDataset());
2730 .error("Can't find the correct dataset for the alignment in this view. Creating new one.");
2733 // Store any sequence mappings.
2734 List<AlignedCodonFrame> cframes = av.getAlignment().getCodonFrames();
2735 if (cframes != null)
2737 for (AlignedCodonFrame acf : cframes)
2739 if (acf.getdnaSeqs() != null && acf.getdnaSeqs().length > 0)
2741 jalview.datamodel.SequenceI[] dmps = acf.getdnaSeqs();
2742 jalview.datamodel.Mapping[] mps = acf.getProtMappings();
2743 for (int smp = 0; smp < mps.length; smp++)
2745 uk.ac.vamsas.objects.core.SequenceType mfrom = (SequenceType) getjv2vObj(dmps[smp]);
2748 new jalview.io.vamsas.Sequencemapping(this, mps[smp],
2754 .warn("NO Vamsas Binding for local sequence! NOT CREATING MAPPING FOR "
2755 + dmps[smp].getDisplayId(true)
2757 + mps[smp].getTo().getName());
2763 } catch (Exception e)
2765 throw new Exception(MessageManager.formatMessage(
2766 "exception.couldnt_store_sequence_mappings",
2767 new String[] { title }), e);
2771 public void clearSkipList()
2773 if (skipList != null)
2780 * @return the skipList
2782 public Hashtable getSkipList()
2789 * the skipList to set
2791 public void setSkipList(Hashtable skipList)
2793 this.skipList = skipList;
2797 * registry for datastoreItems
2799 DatastoreRegistry dsReg = new DatastoreRegistry();
2801 public DatastoreRegistry getDatastoreRegisty()
2805 dsReg = new DatastoreRegistry();