From: Jim Procter Date: Fri, 15 Mar 2013 16:56:41 +0000 (+0000) Subject: JAL-1231 allow Jmol file handler to read from a stream X-Git-Tag: Jalview_2_9~221^2^2~8^2~5 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=a08304fdd7bca01ea5520a7a032d512f285ebbca;p=jalview.git JAL-1231 allow Jmol file handler to read from a stream --- diff --git a/src/jalview/ext/jmol/PDBFileWithJmol.java b/src/jalview/ext/jmol/PDBFileWithJmol.java index 1059021..77755f8 100644 --- a/src/jalview/ext/jmol/PDBFileWithJmol.java +++ b/src/jalview/ext/jmol/PDBFileWithJmol.java @@ -37,6 +37,7 @@ import jalview.datamodel.PDBEntry; import jalview.datamodel.Sequence; import jalview.datamodel.SequenceI; import jalview.io.AlignFile; +import jalview.io.FileParse; /** * Import and process PDB files with Jmol @@ -57,6 +58,12 @@ public class PDBFileWithJmol extends AlignFile implements { super(inFile, type); } + + + public PDBFileWithJmol(FileParse fp) throws IOException + { + super(fp); + } public PDBFileWithJmol() {