User:Karsten Theis/Rigid body interpolation

From Proteopedia

(Difference between revisions)
Jump to: navigation, search
Line 5: Line 5:
<nowiki>
<nowiki>
function linear(progress, sel1, sel2) {
function linear(progress, sel1, sel2) {
-
coord1 = {sel1}.xyz.all
+
coord1 = {@sel1}.xyz.all
-
coord2 = {sel2}.xyz.all
+
coord2 = {@sel2}.xyz.all
len = coord1.length
len = coord1.length
ssergorp = 1 - progress
ssergorp = 1 - progress
for (var i FROM [1,len]) {coord1[i] = (coord2[i] * progress + coord1[i] * ssergorp)}
for (var i FROM [1,len]) {coord1[i] = (coord2[i] * progress + coord1[i] * ssergorp)}
-
{sel1}.xyz = @coord1
+
{@sel1}.xyz = @coord1
}
}
function rigid(progress, sel1, sel2, anch1, anch2) {
function rigid(progress, sel1, sel2, anch1, anch2) {
-
fourbyfour = compare({sel1}, {sel2})
+
fourbyfour = compare({@sel1}, {@sel2})
total_quat = quaternion(@fourbyfour%1)
total_quat = quaternion(@fourbyfour%1)
theta = total_quat %"theta"
theta = total_quat %"theta"
Line 22: Line 22:
quat1 = total_quat * progress
quat1 = total_quat * progress
quat2 = total_quat * ssergorp * -1
quat2 = total_quat * ssergorp * -1
-
anchorpos = {anch2}.xyz * progress + {anch1}.xyz * ssergorp
+
anchorpos = {@anch2}.xyz * progress + {@anch1}.xyz * ssergorp
select sel1
select sel1
rotateselected @quat1 molecular
rotateselected @quat1 molecular
-
transl1 = anchorpos - {anch1}.xyz
+
transl1 = anchorpos - {@anch1}.xyz
translateselected @transl1
translateselected @transl1
select sel2
select sel2
rotateselected @quat2 molecular
rotateselected @quat2 molecular
-
transl2 = anchorpos - {anch2}.xyz
+
transl2 = anchorpos - {@anch2}.xyz
translateselected @transl2
translateselected @transl2
}
}
Line 44: Line 44:
a = anch[j]
a = anch[j]
for (var c in [{chain='A'},{chain='B'},{chain='C'}]) {
for (var c in [{chain='A'},{chain='B'},{chain='C'}]) {
-
s1 = sel1 1.1 and @s and @c
+
s1 = {1.1 and @s and @c}
-
s2 = sel2 1.2 and @s and @c
+
s2 = {1.2 and @s and @c}
-
a1 = anch1 1.1 and @a and @c
+
a1 = {1.1 and @a and @c}
-
a2 = anch2 1.2 and @a and @c
+
a2 = {1.2 and @a and @c}
rigid(progress, s1, s2, a1, a2)
rigid(progress, s1, s2, a1, a2)
linear(progress, s1, s2)
linear(progress, s1, s2)

Revision as of 15:17, 7 March 2021

This page shows a way to superpose two rigid bodies so that they both have the same rotation, and they are translated such that a common anchor (center of mass, given atom) is in the same location.

The entire coordinates are copies first so that you can play around with the parameters and then reset the coordinates. The starting point is a structure with two models containing the same atoms in the same order, but with different coordinates.

function linear(progress, sel1, sel2) {
  coord1 = {@sel1}.xyz.all
  coord2 = {@sel2}.xyz.all
  len = coord1.length
  ssergorp = 1 - progress
  for (var i FROM [1,len]) {coord1[i] = (coord2[i] * progress + coord1[i] * ssergorp)}
  {@sel1}.xyz = @coord1
}

function rigid(progress, sel1, sel2, anch1, anch2) {
  fourbyfour = compare({@sel1}, {@sel2})
  total_quat = quaternion(@fourbyfour%1)
  theta = total_quat %"theta"
  ax = total_quat %"vector"
  if (theta > 160 and theta < 170) total_quat = quaternion(ax, 360 - theta)
  ssergorp = 1 - progress
  quat1 = total_quat * progress
  quat2 = total_quat * ssergorp * -1
  anchorpos = {@anch2}.xyz * progress + {@anch1}.xyz * ssergorp
  select sel1
  rotateselected @quat1 molecular
  transl1 = anchorpos - {@anch1}.xyz
  translateselected @transl1
  select sel2
  rotateselected @quat2 molecular
  transl2 = anchorpos - {@anch2}.xyz
  translateselected @transl2
}

sel = [{912-984},{1125-1162},{not (1125-1162 or 912-984)}]
anch = [{984},{1125},{not (1125-1162 or 912-984)}]

original = {all}.xyz.all
for (var i FROM [1,20]) {
  {all}.xyz = @original
  progress = 0.05 * i
  for (var j FROM [1,sel.length]) {
    s = sel[j]
    a = anch[j]
    for (var c in [{chain='A'},{chain='B'},{chain='C'}]) {
      s1 = {1.1 and @s and @c}
      s2 = {1.2 and @s and @c}
      a1 = {1.1 and @a and @c}
      a2 = {1.2 and @a and @c}
      rigid(progress, s1, s2, a1, a2)
      linear(progress, s1, s2)
    }
  }
  delay 1.0
}
{all}.xyz = @original
  
 
  # fname = "morph" + i + ".pdb"
  # select 1.1
  # write @fname
 

Example

Drag the structure with the mouse to rotate

Proteopedia Page Contributors and Editors (what is this?)

Karsten Theis

Personal tools