X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FStructureFile.java;h=df384a630526958cd957053da69efb4ddf5c2c06;hb=8a2a0cda7067530f8481c2aec203e18d555f2dfd;hp=c816f6dac80251297c0d0b4fd772322d3f83f991;hpb=892e857760e779796e156b4fa36d97d8d31e73e1;p=jalview.git diff --git a/src/jalview/io/StructureFile.java b/src/jalview/io/StructureFile.java index c816f6d..df384a6 100644 --- a/src/jalview/io/StructureFile.java +++ b/src/jalview/io/StructureFile.java @@ -23,6 +23,7 @@ package jalview.io; import java.awt.Color; import java.io.IOException; import java.lang.reflect.Constructor; +import java.net.MalformedURLException; import java.util.List; import java.util.Vector; @@ -30,14 +31,15 @@ import jalview.analysis.AlignSeq; import jalview.api.FeatureSettingsModelI; import jalview.datamodel.Alignment; import jalview.datamodel.AlignmentAnnotation; -import jalview.datamodel.AlignmentAnnotation.TFType; import jalview.datamodel.AlignmentI; import jalview.datamodel.DBRefEntry; import jalview.datamodel.DBRefSource; import jalview.datamodel.PDBEntry; import jalview.datamodel.PDBEntry.Type; import jalview.datamodel.SequenceI; +import jalview.ext.jmol.JmolParser; import jalview.structure.StructureImportSettings; +import jalview.structure.StructureImportSettings.TFType; import mc_view.PDBChain; public abstract class StructureFile extends AlignFile @@ -68,6 +70,47 @@ public abstract class StructureFile extends AlignFile private boolean pdbIdAvailable; + private TFType temperatureFactorType = TFType.DEFAULT; + + private String paeMatrix = null; + + private boolean alphaFoldModel; + + public void setPAEMatrix(String paeFilename) + { + paeMatrix = paeFilename; + } + + public String getPAEMatrix() + { + return paeMatrix; + } + + public boolean hasPAEMatrix() + { + return paeMatrix != null; + } + + public void setTemperatureFactorType(TFType t) + { + this.temperatureFactorType = t; + } + + public TFType getTemperatureFactorType() + { + return temperatureFactorType; + } + + public void setAlphafoldModel(boolean afm) + { + alphaFoldModel = afm; + } + + public boolean isAlphafoldModel() + { + return alphaFoldModel; + } + public StructureFile(Object inFile, DataSourceType sourceType) throws IOException { @@ -75,14 +118,22 @@ public abstract class StructureFile extends AlignFile } public StructureFile(Object inFile, DataSourceType sourceType, - AlignmentAnnotation.TFType tempfacType) throws IOException + TFType tempfacType) throws IOException { - super(inFile, sourceType, tempfacType); + super(false, inFile, sourceType); + this.setTemperatureFactorType(tempfacType); + doParse(); } public StructureFile(FileParse fp) throws IOException { - super(fp); + this(fp, true); + } + + public StructureFile(FileParse fp, boolean doXferSettings) + throws IOException + { + super(fp, doXferSettings); } public void addSettings(boolean addAlignmentAnnotations, @@ -95,13 +146,17 @@ public abstract class StructureFile extends AlignFile public void xferSettings() { - this.visibleChainAnnotation = StructureImportSettings - .isVisibleChainAnnotation(); - this.predictSecondaryStructure = StructureImportSettings - .isProcessSecondaryStructure(); - this.externalSecondaryStructure = StructureImportSettings - .isExternalSecondaryStructure(); - + if (this.getDoXferSettings()) + { + this.visibleChainAnnotation = StructureImportSettings + .isVisibleChainAnnotation(); + this.predictSecondaryStructure = StructureImportSettings + .isProcessSecondaryStructure(); + this.externalSecondaryStructure = StructureImportSettings + .isExternalSecondaryStructure(); + this.temperatureFactorType = StructureImportSettings + .getTemperatureFactorType(); + } } public StructureFile(boolean parseImmediately, Object dataObject, @@ -187,7 +242,7 @@ public abstract class StructureFile extends AlignFile protected void processPdbFileWithAnnotate3d(List rna) throws Exception { - // System.out.println("this is a PDB format and RNA sequence"); + // jalview.bin.Console.outPrintln("this is a PDB format and RNA sequence"); // note: we use reflection here so that the applet can compile and run // without the HTTPClient bits and pieces needed for accessing Annotate3D // web service @@ -281,7 +336,7 @@ public abstract class StructureFile extends AlignFile processPdbFileWithAnnotate3d(rnaSequences); } catch (Exception x) { - System.err.println("Exceptions when dealing with RNA in pdb file"); + jalview.bin.Console.errPrintln("Exceptions when dealing with RNA in pdb file"); x.printStackTrace(); } @@ -294,58 +349,43 @@ public abstract class StructureFile extends AlignFile { try { - processWithJmolParser(proteinSequences); + processWithJmolParser(proteinSequences, true); } catch (Exception x) { - System.err.println( + jalview.bin.Console.errPrintln( "Exceptions from Jmol when processing data in pdb file"); x.printStackTrace(); } } } - @SuppressWarnings({ "unchecked", "rawtypes" }) - private void processWithJmolParser(List prot) throws Exception + private void processWithJmolParser(List prot, + boolean doXferSettings) throws MalformedURLException, IOException { - try - { + FileParse fp = new FileParse(getDataName(), dataSourceType); - Class cl = Class.forName("jalview.ext.jmol.JmolParser"); - if (cl != null) + StructureImportSettings.setShowSeqFeatures(false); + StructureImportSettings.setVisibleChainAnnotation(false); + StructureImportSettings + .setProcessSecondaryStructure(predictSecondaryStructure); + StructureImportSettings + .setExternalSecondaryStructure(externalSecondaryStructure); + StructureImportSettings.setTemperatureFactorType(temperatureFactorType); + JmolParser jmf = new JmolParser(fp, doXferSettings); + AlignmentI al = new Alignment((SequenceI[]) jmf.getSeqsAsArray()); + jmf.addAnnotations(al); + for (SequenceI sq : al.getSequences()) + { + if (sq.getDatasetSequence() != null) { - final Constructor constructor = cl - .getConstructor(new Class[] - { FileParse.class }); - final Object[] args = new Object[] { - new FileParse(getDataName(), dataSourceType) }; - - StructureImportSettings.setShowSeqFeatures(false); - StructureImportSettings.setVisibleChainAnnotation(false); - StructureImportSettings - .setProcessSecondaryStructure(predictSecondaryStructure); - StructureImportSettings - .setExternalSecondaryStructure(externalSecondaryStructure); - Object jmf = constructor.newInstance(args); - AlignmentI al = new Alignment((SequenceI[]) cl - .getMethod("getSeqsAsArray", new Class[] {}).invoke(jmf)); - cl.getMethod("addAnnotations", new Class[] { AlignmentI.class }) - .invoke(jmf, al); - for (SequenceI sq : al.getSequences()) - { - if (sq.getDatasetSequence() != null) - { - sq.getDatasetSequence().getAllPDBEntries().clear(); - } - else - { - sq.getAllPDBEntries().clear(); - } - } - replaceAndUpdateChains(prot, al, AlignSeq.PEP, false); + sq.getDatasetSequence().getAllPDBEntries().clear(); + } + else + { + sq.getAllPDBEntries().clear(); } - } catch (ClassNotFoundException q) - { } + replaceAndUpdateChains(prot, al, AlignSeq.PEP, false); StructureImportSettings.setShowSeqFeatures(true); }