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.analysis.AlignmentUtils;
24 import jalview.analysis.CrossRef;
25 import jalview.api.AlignmentViewPanel;
26 import jalview.api.FeatureSettingsModelI;
27 import jalview.bin.Cache;
28 import jalview.bin.Console;
29 import jalview.datamodel.Alignment;
30 import jalview.datamodel.AlignmentI;
31 import jalview.datamodel.DBRefEntry;
32 import jalview.datamodel.DBRefSource;
33 import jalview.datamodel.GeneLociI;
34 import jalview.datamodel.SequenceI;
35 import jalview.ext.ensembl.EnsemblInfo;
36 import jalview.ext.ensembl.EnsemblMap;
37 import jalview.io.gff.SequenceOntologyI;
38 import jalview.structure.StructureSelectionManager;
39 import jalview.util.DBRefUtils;
40 import jalview.util.MapList;
41 import jalview.util.MappingUtils;
42 import jalview.util.MessageManager;
43 import jalview.viewmodel.seqfeatures.FeatureRendererModel;
44 import jalview.ws.SequenceFetcher;
46 import java.util.ArrayList;
47 import java.util.HashMap;
48 import java.util.List;
53 * Factory constructor and runnable for discovering and displaying
54 * cross-references for a set of aligned sequences
59 public class CrossRefAction implements Runnable
61 private AlignFrame alignFrame;
63 private SequenceI[] sel;
65 private final boolean _odna;
67 private String source;
69 List<AlignmentViewPanel> xrefViews = new ArrayList<>();
71 List<AlignmentViewPanel> getXrefViews()
79 final long sttime = System.currentTimeMillis();
80 alignFrame.setProgressBar(MessageManager.formatMessage(
81 "status.searching_for_sequences_from", new Object[]
85 AlignmentI alignment = alignFrame.getViewport().getAlignment();
86 AlignmentI dataset = alignment.getDataset() == null ? alignment
87 : alignment.getDataset();
88 boolean dna = alignment.isNucleotide();
92 .println("Conflict: showProducts for alignment originally "
93 + "thought to be " + (_odna ? "DNA" : "Protein")
94 + " now searching for " + (dna ? "DNA" : "Protein")
97 AlignmentI xrefs = new CrossRef(sel, dataset)
98 .findXrefSequences(source, dna);
105 * try to look up chromosomal coordinates for nucleotide
106 * sequences (if not already retrieved)
108 findGeneLoci(xrefs.getSequences());
111 * get display scheme (if any) to apply to features
113 FeatureSettingsModelI featureColourScheme = new SequenceFetcher()
114 .getFeatureColourScheme(source);
116 if (dna && AlignmentUtils.looksLikeEnsembl(alignment))
118 // override default featureColourScheme so products have Ensembl variant
120 featureColourScheme = new SequenceFetcher()
121 .getFeatureColourScheme(DBRefSource.ENSEMBL);
124 AlignmentI xrefsAlignment = makeCrossReferencesAlignment(dataset,
128 xrefsAlignment = AlignmentUtils.makeCdsAlignment(
129 xrefsAlignment.getSequencesArray(), dataset, sel);
130 xrefsAlignment.alignAs(alignment);
134 * If we are opening a splitframe, make a copy of this alignment (sharing the same dataset
135 * sequences). If we are DNA, drop introns and update mappings
137 AlignmentI copyAlignment = null;
139 if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
141 copyAlignment = copyAlignmentForSplitFrame(alignment, dataset, dna,
142 xrefs, xrefsAlignment);
143 if (copyAlignment == null)
150 * build AlignFrame(s) according to available alignment data
152 AlignFrame newFrame = new AlignFrame(xrefsAlignment,
153 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
154 if (Cache.getDefault("HIDE_INTRONS", true))
156 newFrame.hideFeatureColumns(SequenceOntologyI.EXON, false);
158 String newtitle = String.format("%s %s %s",
159 dna ? MessageManager.getString("label.proteins")
160 : MessageManager.getString("label.nucleotides"),
161 MessageManager.getString("label.for"), alignFrame.getTitle());
162 newFrame.setTitle(newtitle);
164 if (copyAlignment == null)
167 * split frame display is turned off in preferences file
169 Desktop.addInternalFrame(newFrame, newtitle,
170 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
171 xrefViews.add(newFrame.alignPanel);
172 return; // via finally clause
175 AlignFrame copyThis = new AlignFrame(copyAlignment,
176 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
177 copyThis.setTitle(alignFrame.getTitle());
179 boolean showSequenceFeatures = alignFrame.getViewport()
180 .isShowSequenceFeatures();
181 newFrame.setShowSeqFeatures(showSequenceFeatures);
182 copyThis.setShowSeqFeatures(showSequenceFeatures);
183 FeatureRendererModel myFeatureStyling = alignFrame.alignPanel
184 .getSeqPanel().seqCanvas.getFeatureRenderer();
187 * copy feature rendering settings to split frame
189 FeatureRendererModel fr1 = newFrame.alignPanel.getSeqPanel().seqCanvas
190 .getFeatureRenderer();
191 fr1.transferSettings(myFeatureStyling);
192 fr1.findAllFeatures(true);
193 FeatureRendererModel fr2 = copyThis.alignPanel.getSeqPanel().seqCanvas
194 .getFeatureRenderer();
195 fr2.transferSettings(myFeatureStyling);
196 fr2.findAllFeatures(true);
199 * apply 'database source' feature configuration
200 * if any - first to the new splitframe view about to be displayed
203 newFrame.getViewport().applyFeaturesStyle(featureColourScheme);
204 copyThis.getViewport().applyFeaturesStyle(featureColourScheme);
207 * and for JAL-3330 also to original alignFrame view(s)
208 * this currently trashes any original settings.
210 for (AlignmentViewPanel origpanel : alignFrame.getAlignPanels())
212 origpanel.getAlignViewport()
213 .mergeFeaturesStyle(featureColourScheme);
216 SplitFrame sf = new SplitFrame(dna ? copyThis : newFrame,
217 dna ? newFrame : copyThis);
219 newFrame.setVisible(true);
220 copyThis.setVisible(true);
221 String linkedTitle = MessageManager
222 .getString("label.linked_view_title");
223 Desktop.addInternalFrame(sf, linkedTitle, -1, -1);
224 sf.adjustInitialLayout();
226 // finally add the top, then bottom frame to the view list
227 xrefViews.add(dna ? copyThis.alignPanel : newFrame.alignPanel);
228 xrefViews.add(!dna ? copyThis.alignPanel : newFrame.alignPanel);
230 } catch (OutOfMemoryError e)
232 new OOMWarning("whilst fetching crossreferences", e);
233 } catch (Throwable e)
235 Console.error("Error when finding crossreferences", e);
238 alignFrame.setProgressBar(MessageManager.formatMessage(
239 "status.finished_searching_for_sequences_from", new Object[]
240 { source }), sttime);
245 * Tries to add chromosomal coordinates to any nucleotide sequence which does
246 * not already have them. Coordinates are retrieved from Ensembl given an
247 * Ensembl identifier, either on the sequence itself or on a peptide sequence
248 * it has a reference to.
252 * - fetch EMBLCDS cross-references for Uniprot entry P30419
253 * - the EMBL sequences do not have xrefs to Ensembl
254 * - the Uniprot entry has xrefs to
255 * ENSP00000258960, ENSP00000468424, ENST00000258960, ENST00000592782
256 * - either of the transcript ids can be used to retrieve gene loci e.g.
257 * http://rest.ensembl.org/map/cds/ENST00000592782/1..100000
258 * Example (invertebrate):
259 * - fetch EMBLCDS cross-references for Uniprot entry Q43517 (FER1_SOLLC)
260 * - the Uniprot entry has an xref to ENSEMBLPLANTS Solyc10g044520.1.1
261 * - can retrieve gene loci with
262 * http://rest.ensemblgenomes.org/map/cds/Solyc10g044520.1.1/1..100000
267 public static void findGeneLoci(List<SequenceI> sequences)
269 Map<DBRefEntry, GeneLociI> retrievedLoci = new HashMap<>();
270 for (SequenceI seq : sequences)
272 findGeneLoci(seq, retrievedLoci);
277 * Tres to find chromosomal coordinates for the sequence, by searching its
278 * direct and indirect cross-references for Ensembl. If the loci have already
279 * been retrieved, just reads them out of the map of retrievedLoci; this is
280 * the case of an alternative transcript for the same protein. Otherwise calls
281 * a REST service to retrieve the loci, and if successful, adds them to the
282 * sequence and to the retrievedLoci.
285 * @param retrievedLoci
287 static void findGeneLoci(SequenceI seq,
288 Map<DBRefEntry, GeneLociI> retrievedLoci)
291 * don't replace any existing chromosomal coordinates
293 if (seq == null || seq.isProtein() || seq.getGeneLoci() != null
294 || seq.getDBRefs() == null)
299 Set<String> ensemblDivisions = new EnsemblInfo().getDivisions();
302 * first look for direct dbrefs from sequence to Ensembl
304 String[] divisionsArray = ensemblDivisions
305 .toArray(new String[ensemblDivisions.size()]);
306 List<DBRefEntry> seqRefs = seq.getDBRefs();
307 List<DBRefEntry> directEnsemblRefs = DBRefUtils.selectRefs(seqRefs,
309 if (directEnsemblRefs != null)
311 for (DBRefEntry ensemblRef : directEnsemblRefs)
313 if (fetchGeneLoci(seq, ensemblRef, retrievedLoci))
321 * else look for indirect dbrefs from sequence to Ensembl
323 for (DBRefEntry dbref : seq.getDBRefs())
325 if (dbref.getMap() != null && dbref.getMap().getTo() != null)
327 List<DBRefEntry> dbrefs = dbref.getMap().getTo().getDBRefs();
328 List<DBRefEntry> indirectEnsemblRefs = DBRefUtils.selectRefs(dbrefs,
330 if (indirectEnsemblRefs != null)
332 for (DBRefEntry ensemblRef : indirectEnsemblRefs)
334 if (fetchGeneLoci(seq, ensemblRef, retrievedLoci))
345 * Retrieves chromosomal coordinates for the Ensembl (or EnsemblGenomes)
346 * identifier in dbref. If successful, and the sequence length matches gene
347 * loci length, then add it to the sequence, and to the retrievedLoci map.
348 * Answers true if successful, else false.
352 * @param retrievedLoci
355 static boolean fetchGeneLoci(SequenceI seq, DBRefEntry dbref,
356 Map<DBRefEntry, GeneLociI> retrievedLoci)
358 String accession = dbref.getAccessionId();
359 String division = dbref.getSource();
362 * hack: ignore cross-references to Ensembl protein ids
363 * (or use map/translation perhaps?)
364 * todo: is there an equivalent in EnsemblGenomes?
366 if (accession.startsWith("ENSP"))
370 EnsemblMap mapper = new EnsemblMap();
373 * try CDS mapping first
375 GeneLociI geneLoci = mapper.getCdsMapping(division, accession, 1,
377 if (geneLoci != null)
379 MapList map = geneLoci.getMapping();
380 int mappedFromLength = MappingUtils.getLength(map.getFromRanges());
381 if (mappedFromLength == seq.getLength())
383 seq.setGeneLoci(geneLoci.getSpeciesId(), geneLoci.getAssemblyId(),
384 geneLoci.getChromosomeId(), map);
385 retrievedLoci.put(dbref, geneLoci);
391 * else try CDNA mapping
393 geneLoci = mapper.getCdnaMapping(division, accession, 1,
395 if (geneLoci != null)
397 MapList map = geneLoci.getMapping();
398 int mappedFromLength = MappingUtils.getLength(map.getFromRanges());
399 if (mappedFromLength == seq.getLength())
401 seq.setGeneLoci(geneLoci.getSpeciesId(), geneLoci.getAssemblyId(),
402 geneLoci.getChromosomeId(), map);
403 retrievedLoci.put(dbref, geneLoci);
416 * @param xrefsAlignment
419 protected AlignmentI copyAlignmentForSplitFrame(AlignmentI alignment,
420 AlignmentI dataset, boolean dna, AlignmentI xrefs,
421 AlignmentI xrefsAlignment)
423 AlignmentI copyAlignment;
424 boolean copyAlignmentIsAligned = false;
427 copyAlignment = AlignmentUtils.makeCdsAlignment(sel, dataset,
428 xrefsAlignment.getSequencesArray());
429 if (copyAlignment.getHeight() == 0)
431 JvOptionPane.showMessageDialog(alignFrame,
432 MessageManager.getString("label.cant_map_cds"),
433 MessageManager.getString("label.operation_failed"),
434 JvOptionPane.OK_OPTION);
435 System.err.println("Failed to make CDS alignment");
440 * pending getting Embl transcripts to 'align',
441 * we are only doing this for Ensembl
443 // TODO proper criteria for 'can align as cdna'
444 if (DBRefSource.ENSEMBL.equalsIgnoreCase(source)
445 || AlignmentUtils.looksLikeEnsembl(alignment))
447 copyAlignment.alignAs(alignment);
448 copyAlignmentIsAligned = true;
453 copyAlignment = AlignmentUtils.makeCopyAlignment(sel,
454 xrefs.getSequencesArray(), dataset);
456 copyAlignment.setGapCharacter(alignFrame.viewport.getGapCharacter());
458 StructureSelectionManager ssm = StructureSelectionManager
459 .getStructureSelectionManager(Desktop.getInstance());
462 * register any new mappings for sequence mouseover etc
463 * (will not duplicate any previously registered mappings)
465 ssm.registerMappings(dataset.getCodonFrames());
467 if (copyAlignment.getHeight() <= 0)
469 System.err.println("No Sequences generated for xRef type " + source);
474 * align protein to dna
476 if (dna && copyAlignmentIsAligned)
478 xrefsAlignment.alignAs(copyAlignment);
483 * align cdna to protein - currently only if
484 * fetching and aligning Ensembl transcripts!
486 // TODO: generalise for other sources of locus/transcript/cds data
487 if (dna && DBRefSource.ENSEMBL.equalsIgnoreCase(source))
489 copyAlignment.alignAs(xrefsAlignment);
493 return copyAlignment;
497 * Makes an alignment containing the given sequences, and adds them to the
498 * given dataset, which is also set as the dataset for the new alignment
500 * TODO: refactor to DatasetI method
506 protected AlignmentI makeCrossReferencesAlignment(AlignmentI dataset,
509 SequenceI[] sprods = new SequenceI[seqs.getHeight()];
510 for (int s = 0; s < sprods.length; s++)
512 sprods[s] = (seqs.getSequenceAt(s)).deriveSequence();
513 if (dataset.getSequences() == null || !dataset.getSequences()
514 .contains(sprods[s].getDatasetSequence()))
516 dataset.addSequence(sprods[s].getDatasetSequence());
518 sprods[s].updatePDBIds();
520 Alignment al = new Alignment(sprods);
521 al.setDataset(dataset);
533 CrossRefAction(AlignFrame af, SequenceI[] seqs, boolean fromDna,
536 this.alignFrame = af;
538 this._odna = fromDna;
539 this.source = dbSource;
542 public static CrossRefAction getHandlerFor(final SequenceI[] sel,
543 final boolean fromDna, final String source,
544 final AlignFrame alignFrame)
546 return new CrossRefAction(alignFrame, sel, fromDna, source);