public class SVDSuperimposer extends Object
// get some arbitrary amino acids from somewhere String filename = "/Users/ap3/WORK/PDB/5pti.pdb" ; PDBFileReader pdbreader = new PDBFileReader(); Structure struc = pdbreader.getStructure(filename); Group g1 = (Group)struc.getChain(0).getGroup(21).clone(); Group g2 = (Group)struc.getChain(0).getGroup(53).clone(); if ( g1.getPDBName().equals("GLY")){ if ( g1 instanceof AminoAcid){ Atom cb = Calc.createVirtualCBAtom((AminoAcid)g1); g1.addAtom(cb); } } if ( g2.getPDBName().equals("GLY")){ if ( g2 instanceof AminoAcid){ Atom cb = Calc.createVirtualCBAtom((AminoAcid)g2); g2.addAtom(cb); } } Structure struc2 = new StructureImpl((Group)g2.clone()); System.out.println(g1); System.out.println(g2); Atom[] atoms1 = new Atom[3]; Atom[] atoms2 = new Atom[3]; atoms1[0] = g1.getAtom("N"); atoms1[1] = g1.getAtom("CA"); atoms1[2] = g1.getAtom("CB"); atoms2[0] = g2.getAtom("N"); atoms2[1] = g2.getAtom("CA"); atoms2[2] = g2.getAtom("CB"); SVDSuperimposer svds = new SVDSuperimposer(atoms1,atoms2); Matrix rotMatrix = svds.getRotation(); Atom tranMatrix = svds.getTranslation(); // now we have all the info to perform the rotations ... Calc.rotate(struc2,rotMatrix); // shift structure 2 onto structure one ... Calc.shift(struc2,tranMatrix); // // write the whole thing to a file to view in a viewer String outputfile = "/Users/ap3/WORK/PDB/rotated.pdb"; FileOutputStream out= new FileOutputStream(outputfile); PrintStream p = new PrintStream( out ); Structure newstruc = new StructureImpl(); Chain c1 = new ChainImpl(); c1.setName("A"); c1.addGroup(g1); newstruc.addChain(c1); Chain c2 = struc2.getChain(0); c2.setName("B"); newstruc.addChain(c2); // show where the group was originally ... Chain c3 = new ChainImpl(); c3.setName("C"); //c3.addGroup(g1); c3.addGroup(g2); newstruc.addChain(c3); p.println(newstruc.toPDB()); p.close(); System.out.println("wrote to file " + outputfile);
Constructor and Description |
---|
SVDSuperimposer(Atom[] atomSet1,
Atom[] atomSet2)
Create a SVDSuperimposer object and calculate a SVD superimposition of two sets of atoms.
|
Modifier and Type | Method and Description |
---|---|
static double |
getRMS(Atom[] atomSet1,
Atom[] atomSet2)
Calculate the RMS (root mean square) deviation of two sets of atoms.
|
Matrix |
getRotation()
Get the Rotation matrix that is required to superimpose the two atom sets.
|
static double |
getTMScore(Atom[] atomSet1,
Atom[] atomSet2,
int len1,
int len2)
Calculate the TM-Score for the superposition.
|
static double |
getTMScoreAlternate(Atom[] atomSet1,
Atom[] atomSet2,
int len1,
int len2)
Calculate the TM-Score for the superposition.
|
javax.vecmath.Matrix4d |
getTransformation() |
Atom |
getTranslation()
Get the shift vector.
|
public SVDSuperimposer(Atom[] atomSet1, Atom[] atomSet2) throws StructureException
atomSet1
- Atom array 1atomSet2
- Atom array 2StructureException
public static double getRMS(Atom[] atomSet1, Atom[] atomSet2) throws StructureException
atomSet1
- atom array 1atomSet2
- atom array 2StructureException
public static double getTMScore(Atom[] atomSet1, Atom[] atomSet2, int len1, int len2) throws StructureException
min\{len1,len2\}
).
Atom sets must be pre-rotated.
Citation:
Zhang Y and Skolnick J (2004). "Scoring function for automated assessment
of protein structure template quality". Proteins 57: 702 - 710.
atomSet1
- atom array 1atomSet2
- atom array 2len1
- The full length of the protein supplying atomSet1len2
- The full length of the protein supplying atomSet2StructureException
public static double getTMScoreAlternate(Atom[] atomSet1, Atom[] atomSet2, int len1, int len2) throws StructureException
max\{len1,len2\}
) rather than the minimum.
Atom sets must be pre-rotated.
Citation:
Zhang Y and Skolnick J (2004). "Scoring function for automated assessment
of protein structure template quality". Proteins 57: 702 - 710.
atomSet1
- atom array 1atomSet2
- atom array 2len1
- The full length of the protein supplying atomSet1len2
- The full length of the protein supplying atomSet2StructureException
#getTMScore(Atom[], Atom[], int, int)}, which normalizes by the minimum length
public Matrix getRotation()
public Atom getTranslation()
public javax.vecmath.Matrix4d getTransformation()
Copyright © 2000–2016 BioJava. All rights reserved.