This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Invariant Points

Hi all!!

I would like to know how do I get the invariant points of 2 PDB structures because i need to superimpose them and program it in JAVA. Eg. How do I know what is the origin and so on.. How do I read the invariant points from the txt file? Is there any specific/ most used point for this?

Thank you in advance!

java structure

1 answer

The invariant points can be any points that you choose. In protein superposition you read in the two structures and extract xyz coordinates (typically those of the alpha-carbon atoms). Then, you use some iterative procedure along these lines:

  1. Select points from each structure that you don't want to move (termed fixed or invariant)
  2. Superpose those points
  3. Allow other points to move around (within limits imposed by bonds and steric clashes)
  4. Calculate some "goodness of fit" score (typically RMSD)
  5. Repeat until score is minimised

Try a web search using the terms in your question, such as protein structure superposition invariant point. You will find lots of useful information on the first page of hits.

Thank you for your help! :)

Log in to answer this question.