X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2FMCview%2FPDBfile.java;h=0035914d2ccb762bf971631348ee46ad183561b9;hb=80c223c45fde0899c9794e887801dd82fffd3452;hp=829eed7e3a033b7bb39ee04d7bae07c1c23e4023;hpb=8eb35a7bab22595255245c5136dd780816b98f26;p=jalview.git diff --git a/src/MCview/PDBfile.java b/src/MCview/PDBfile.java index 829eed7..0035914 100755 --- a/src/MCview/PDBfile.java +++ b/src/MCview/PDBfile.java @@ -24,7 +24,6 @@ import java.awt.*; import jalview.analysis.AlignSeq; import jalview.datamodel.*; -import jalview.ext.jmol.PDBFileWithJmol; import jalview.io.FileParse; public class PDBfile extends jalview.io.AlignFile @@ -237,10 +236,17 @@ public class PDBfile extends jalview.io.AlignFile } private void processPdbFileWithJmol(ArrayList prot) throws Exception { - PDBFileWithJmol jmf = new PDBFileWithJmol(new FileParse(getDataName(),type)); - Alignment al = new Alignment(jmf.getSeqsAsArray()); - jmf.addAnnotations(al); - replaceMatchingSeqsWith(prot, al, AlignSeq.PEP); + try { + Class cl = Class.forName("jalview.ext.jmol.PDBFileWithJmol"); + if (cl!=null) + { + Object jmf = cl.getConstructor(new Class[] {FileParse.class}).newInstance(new Object[] {new FileParse(getDataName(),type)}); + Alignment al = new Alignment((SequenceI[]) cl.getMethod("getSeqsAsArray", new Class[] {}).invoke(jmf)); + cl.getMethod("addAnnotations",new Class[] {Alignment.class}).invoke(jmf, al); + replaceMatchingSeqsWith(prot, al, AlignSeq.PEP); + } + } catch (ClassNotFoundException q) + {} } private void processPdbFileWithAnnotate3d(ArrayList rna) throws Exception { // System.out.println("this is a PDB format and RNA sequence");