X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FFileLoader.java;h=0cd298713579df83ba113ffa73460e1ad5877e0d;hb=2de26e5c27ab904c1921329e7c498560bc0a1e4e;hp=4ec464a060ed13f0a27b2524e02f5067347d5e5c;hpb=7ab5d6b0ba5fec1ea4a4239e79c476d841622485;p=jalview.git diff --git a/src/jalview/io/FileLoader.java b/src/jalview/io/FileLoader.java index 4ec464a..0cd2987 100755 --- a/src/jalview/io/FileLoader.java +++ b/src/jalview/io/FileLoader.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -20,16 +20,22 @@ */ package jalview.io; +import jalview.api.ComplexAlignFile; import jalview.datamodel.AlignmentI; +import jalview.datamodel.ColumnSelection; +import jalview.datamodel.PDBEntry; +import jalview.datamodel.SequenceI; import jalview.gui.AlignFrame; import jalview.gui.AlignViewport; import jalview.gui.Desktop; import jalview.gui.Jalview2XML; +import jalview.schemes.ColourSchemeI; +import jalview.structure.StructureSelectionManager; +import jalview.util.MessageManager; import java.util.StringTokenizer; import java.util.Vector; -import jalview.util.MessageManager; import javax.swing.JOptionPane; import javax.swing.SwingUtilities; @@ -148,6 +154,7 @@ public class FileLoader implements Runnable public AlignFrame LoadFileWaitTillLoaded(FileParse source, String format) { this.source = source; + file = source.getInFile(); protocol = source.type; this.format = format; @@ -272,7 +279,7 @@ public class FileLoader implements Runnable .println("IMPLEMENTATION ERROR: Cannot read consecutive Jalview XML projects from a stream."); // We read the data anyway - it might make sense. } - alignFrame = new Jalview2XML(raiseGUI).LoadJalviewAlign(file); + alignFrame = new Jalview2XML(raiseGUI).loadJalviewAlign(file); } else { @@ -292,7 +299,7 @@ public class FileLoader implements Runnable // open a new source and read from it FormatAdapter fa = new FormatAdapter(); al = fa.readFile(file, protocol, format); - source = fa.afile; // keep reference for later if necessary. + source = fa.getAlignFile(); // keep reference for later if necessary. } } catch (java.io.IOException ex) { @@ -310,47 +317,85 @@ public class FileLoader implements Runnable if ((al != null) && (al.getHeight() > 0)) { - if (viewport != null) + // construct and register dataset sequences + for (SequenceI sq : al.getSequences()) { - // TODO: create undo object for this JAL-1101 - for (int i = 0; i < al.getHeight(); i++) + while (sq.getDatasetSequence() != null) { - viewport.getAlignment().addSequence(al.getSequenceAt(i)); + sq = sq.getDatasetSequence(); + } + if (sq.getPDBId() != null) + { + for (PDBEntry pdbe : sq.getPDBId()) + { + // register PDB entries with desktop's structure selection + // manager + StructureSelectionManager.getStructureSelectionManager( + Desktop.instance).registerPDBEntry(pdbe); + } } - viewport.firePropertyChange("alignment", null, viewport - .getAlignment().getSequences()); + } + if (viewport != null) + { + // append to existing alignment + viewport.addAlignment(al, title); } else { - alignFrame = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH, - AlignFrame.DEFAULT_HEIGHT); + // otherwise construct the alignFrame - alignFrame.statusBar.setText(MessageManager.formatMessage( - "label.successfully_loaded_file", new String[] - { title })); - - if (!protocol.equals(AppletFormatAdapter.PASTE)) - alignFrame.setFileName(file, format); - if (raiseGUI) + if (source instanceof ComplexAlignFile) { - // add the window to the GUI - // note - this actually should happen regardless of raiseGUI - // status in Jalview 3 - // TODO: define 'virtual desktop' for benefit of headless scripts - // that perform queries to find the 'current working alignment' - Desktop.addInternalFrame(alignFrame, title, + ColumnSelection colSel = ((ComplexAlignFile) source) + .getColumnSelection(); + SequenceI[] hiddenSeqs = ((ComplexAlignFile) source) + .getHiddenSequences(); + boolean showSeqFeatures = ((ComplexAlignFile) source) + .isShowSeqFeatures(); + ColourSchemeI cs = ((ComplexAlignFile) source) + .getColourScheme(); + alignFrame = new AlignFrame(al, hiddenSeqs, colSel, AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT); - } - try - { - alignFrame.setMaximum(jalview.bin.Cache.getDefault( - "SHOW_FULLSCREEN", false)); - } catch (java.beans.PropertyVetoException ex) + alignFrame.getViewport().setShowSequenceFeatures( + showSeqFeatures); + alignFrame.changeColour(cs); + } + else { + alignFrame = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH, + AlignFrame.DEFAULT_HEIGHT); } } + // add metadata and update ui + if (!protocol.equals(AppletFormatAdapter.PASTE)) + { + alignFrame.setFileName(file, format); + } + + alignFrame.statusBar.setText(MessageManager.formatMessage( + "label.successfully_loaded_file", new String[] + { title })); + + if (raiseGUI) + { + // add the window to the GUI + // note - this actually should happen regardless of raiseGUI + // status in Jalview 3 + // TODO: define 'virtual desktop' for benefit of headless scripts + // that perform queries to find the 'current working alignment' + Desktop.addInternalFrame(alignFrame, title, + AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT); + } + + try + { + alignFrame.setMaximum(jalview.bin.Cache.getDefault( + "SHOW_FULLSCREEN", false)); + } catch (java.beans.PropertyVetoException ex) + { + } } else { @@ -417,11 +462,8 @@ public class FileLoader implements Runnable javax.swing.JOptionPane .showInternalMessageDialog( Desktop.desktop, - "Out of memory loading file " - + file - + "!!" - + "\nSee help files for increasing Java Virtual Machine memory.", - "Out of memory", + MessageManager.formatMessage("warn.out_of_memory_loading_file", new String[]{file}), + MessageManager.getString("label.out_of_memory"), javax.swing.JOptionPane.WARNING_MESSAGE); } });