Examples of appendExternalBond()


Examples of name.mjw.jamber.IO.AMBER.Residue.appendExternalBond()

       * does not contain that information.
       */

      Residue hemeResidue = lib.getResidueByName("HEM");
      Atom connectionAtom = hemeResidue.getAtoms().get(27);
      hemeResidue.appendExternalBond(connectionAtom);

      // Load CYP residue information
      lib.addFromMol2(cyp);

      Residue cypResidue = lib.getResidueByName("CYP");
View Full Code Here

Examples of name.mjw.jamber.IO.AMBER.Residue.appendExternalBond()

      Residue cypResidue = lib.getResidueByName("CYP");
      Atom connectionAtomN = cypResidue.getAtoms().get(0);
      Atom connectionAtomC = cypResidue.getAtoms().get(8);
      Atom connectionAtomS = cypResidue.getAtoms().get(7);
      cypResidue.appendExternalBond(connectionAtomN);
      cypResidue.appendExternalBond(connectionAtomC);
      cypResidue.appendExternalBond(connectionAtomS);

    } catch (IOException e) {
View Full Code Here

Examples of name.mjw.jamber.IO.AMBER.Residue.appendExternalBond()

      Residue cypResidue = lib.getResidueByName("CYP");
      Atom connectionAtomN = cypResidue.getAtoms().get(0);
      Atom connectionAtomC = cypResidue.getAtoms().get(8);
      Atom connectionAtomS = cypResidue.getAtoms().get(7);
      cypResidue.appendExternalBond(connectionAtomN);
      cypResidue.appendExternalBond(connectionAtomC);
      cypResidue.appendExternalBond(connectionAtomS);

    } catch (IOException e) {

      e.printStackTrace();
View Full Code Here

Examples of name.mjw.jamber.IO.AMBER.Residue.appendExternalBond()

      Atom connectionAtomN = cypResidue.getAtoms().get(0);
      Atom connectionAtomC = cypResidue.getAtoms().get(8);
      Atom connectionAtomS = cypResidue.getAtoms().get(7);
      cypResidue.appendExternalBond(connectionAtomN);
      cypResidue.appendExternalBond(connectionAtomC);
      cypResidue.appendExternalBond(connectionAtomS);

    } catch (IOException e) {

      e.printStackTrace();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.