You are here

Symmetry definition for coiled-coil dimer and trimer

3 posts / 0 new
Last post
Symmetry definition for coiled-coil dimer and trimer
#1

Hi,

I'm trying to define symmetry with Rosetta de novo symmetry definition script:
https://www.rosettacommons.org/manuals/archive/rosetta3.5_user_guide/d4/...

I would like to get a symmetry where two helix chains are antiparallel, how can I do it? I know how to get two parallel chains symmetry.

Also, I would like to get trimer symmetry where two chains are parallel and one is antiparallel. How can I make it?

best wishes,
Krzysiek

Post Situation: 
Fri, 2013-10-11 05:33
kszczepaniak

For two anti-parallel helices, the symmetry is also C2, just like the two parallel helices case. The only difference is where the axis of symmetry is pointing. For the parallel case, the axis of symmetry is aligned along the helices. For the anti-parallel case, the axis is perpendicular to the helices.

I'm not sure if there's a good way in the symmetry code itself to enforce the parallel versus anti-parallel arrangement. My guess is that what you'd get is dependent on the exact protocol you're using and what the energy function thinks of the two cases. You may be able to apply constraints (e.g. distance constraints between the ends of the two helices) to favor one over the other.

Regarding the trimer, if you have a three helix bundle with two parallel and one anti-parallel, then that's not really "symmetric". There's no line you can draw through that conformation which gives a rotation less than 360 degrees resulting in an identical conformation - it's just not geometrically feasible. That said, I think the Rosetta symmetry mechanism may be flexible enough to allow it. None of the automated tools are likely to generate such a symmetry definition file for you, but you may be able to hand edit one. Generate a number of different symmetry files of differing complexities and try to get an understanding of what each of the parts mean. You may be able to adjust one of the parameters for the third member of the trimer such that it flips it end over end.

Worst case scenario, you have to model it without symmetry. That may actually be the better course of action, anyway. Using the symmetry machinery implies things about sidechain positions and backbone conformations which might not actually be the case for this trimer.

Fri, 2013-10-11 08:29
rmoretti

Thank you for your reply.

Trimer case is indeed much more difficult so I would like to focus on anti-parallel dimer for now.

I generated parallel C2 symmetry file using previously mentioned script and I was trying to understand what is happening inside this file using Rosetta symmetry guide: https://www.rosettacommons.org/manuals/archive/rosetta3.5_user_guide/d1/...

For C2 the file looks like that (automatic generation by de novo script, -symm_type cn -nsub 2):

symmetry_name c2
subunits 2
recenter
number_of_interfaces 1
E = 2*VRT0001 + 1*(VRT0001:VRT0002)
anchor_residue COM
virtual_transforms_start
start -1,0,0 0,1,0 0,0,0
rot Rz 2
virtual_transforms_stop
connect_virtual JUMP1 VRT0001 VRT0002
set_dof BASEJUMP x(50) angle_x(0:360) angle_y(0:360) angle_z(0:360)

As I understand 'rot Rz 2' command is locating chains parallel to each other.
Now, what should be done is locate them parallel and then flip one of the chains.
I think that inserting following command istead of 'rot Rz 2' could do it:
rot Rz_angle 180.0
rot Rx_angle 180.0
rot Rz_angle 180.0

What do you think about this approach?

K.

Mon, 2013-10-14 09:25
kszczepaniak