X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FFileLoader.java;h=1b822136ecfb135628cdf83ebcbc83cf9e33ae22;hb=0de37d1a047209510bab82225109ae2a47931f79;hp=c7ade20da180eea51bb50cc66d5e38c92caf4e8f;hpb=892e857760e779796e156b4fa36d97d8d31e73e1;p=jalview.git diff --git a/src/jalview/io/FileLoader.java b/src/jalview/io/FileLoader.java index c7ade20..1b82213 100755 --- a/src/jalview/io/FileLoader.java +++ b/src/jalview/io/FileLoader.java @@ -33,8 +33,6 @@ import jalview.api.FeaturesDisplayedI; import jalview.api.FeaturesSourceI; import jalview.bin.Cache; import jalview.bin.Jalview; -import jalview.datamodel.AlignmentAnnotation; -import jalview.datamodel.AlignmentAnnotation.TFType; import jalview.datamodel.AlignmentI; import jalview.datamodel.HiddenColumns; import jalview.datamodel.PDBEntry; @@ -75,8 +73,6 @@ public class FileLoader implements Runnable private File selectedFile; - private AlignmentAnnotation.TFType temperatureFactorType = null; - /** * default constructor always raised errors in GUI dialog boxes */ @@ -162,26 +158,9 @@ public class FileLoader implements Runnable public AlignFrame LoadFileWaitTillLoaded(String file, DataSourceType sourceType, FileFormatI format) { - return LoadFileWaitTillLoaded(file, sourceType, format, null); - } - - /** - * Load alignment from (file, protocol) of type format with specified - * temperature factor type and wait till loaded - * - * @param file - * @param sourceType - * @param format - * @param tempfacType - * @return alignFrame constructed from file contents - */ - public AlignFrame LoadFileWaitTillLoaded(String file, - DataSourceType sourceType, FileFormatI format, AlignmentAnnotation.TFType tempfacType) - { this.file = file; this.protocol = sourceType; this.format = format; - this.temperatureFactorType = tempfacType; return _LoadFileWaitTillLoaded(); } @@ -400,14 +379,12 @@ public class FileLoader implements Runnable { if (selectedFile == null) { - al = fa.readFile(null, file, protocol, format, - temperatureFactorType); + al = fa.readFile(null, file, protocol, format); } else { - al = fa.readFile(selectedFile, null, protocol, format, - temperatureFactorType); + al = fa.readFile(selectedFile, null, protocol, format); } source = fa.getAlignFile(); // keep reference for later if @@ -489,6 +466,7 @@ public class FileLoader implements Runnable { alignFrame.setFileName(file, format); alignFrame.setFileObject(selectedFile); // BH 2018 SwingJS + alignFrame.getViewport().setSavedUpToDate(true); } if (proxyColourScheme != null) { @@ -508,6 +486,12 @@ public class FileLoader implements Runnable // that perform queries to find the 'current working alignment' Desktop.addInternalFrame(alignFrame, title, AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT); + + /* + * for an Overview automatically opened with alignment, + * set its title now alignFrame title has been set + */ + alignFrame.alignPanel.setOverviewTitle(alignFrame); } try