You are here

fix backbone design of interface residue

4 posts / 0 new
Last post
fix backbone design of interface residue
#1

Dear all,
I am using rosetta3.5 to design the dimer interface of a known complex. I have designed hundreds of sequences but it seems that they are same. I use rosetta_source/bin/fixbb.linuxgccrelease @flag
the flag I use is
-s dimer.pdb
-resfile dimer.resfile
-database Rosetta3.5/rosetta_database/
-ex1
-ex2
-nstruct 10
-linmem_ig 10
-extrachi_cutoff 0
-ignore_unrecognized_res
-no_optH false
-skip_set_reasonable_fold_tree
-no_his_his_pairE
-mute core.io core.scoring core.conformation

did I make mistakes in flag?

AttachmentSize
dimer.pdb_.png117.2 KB
dimer.resfile.png2.7 KB
Post Situation: 
Tue, 2013-12-17 19:23
Lindsay

Given your resfile, it's not too surprising that you are getting very little or no sequence diversity in your output. Your resfile is fixing everything except ~18 amino acids on a helix.

The packer, which is used to do fixed-backbone design, can be very convergent if the search space is small enough. And the thing that expands the search space is not so much the number of residues, but the combinatorial assortment of residues. With just the 18 residues spread out along the helix, you have rather little combinatorial complexity. Each residue only sees a few residues on either side of it. In addition, the fixed residues surrounding the helix further cut down on the complexity, by limiting the types of amino acids and number of rotamers which can actually fit at each position. I'm guessing that you're only getting a few output sequences because the packer can efficiently search the possibility space, and runs into the same lowest energy structure each time.

If you're looking for diversity, there's several ways to do it.

The first is to expand the flexibility in the sidechains. Instead of having NATRO for the residues surrounding the designed residues, try making them NATAA. This will increase the flexibility of the designed pocket, allowing other possibilities to show themselves.

I'm not sure how much it will gain you, but you can also increase the rotamer sampling. You can add -ex3 and -ex4 flags, to also diversify the chi3 and chi4 rotamers, for those residues which have them. You could also increase how finely you diversify the rotamers. Right now you're diversifying the chi1 and chi2 rotamers by plus and minus one standard deviation. You can use the -ex_:level options to change that. For example, "-ex1:level 5" will sample at plus or minus 0.5, 1, 1.5 and 2.0 standard deviations. (The levels are slightly non-obvious. See the full options documentation https://www.rosettacommons.org/manuals/archive/rosetta3.5_user_guide/d5/... for details.) You could also add in some of the rare rotamers which are typically not sampled. The options "-dunbrack_prob_buried 1.0" and "-dunbrack_prob_nonburied 1.0" will add in all of the rare rotamers. (Note that these options, especially in combination, can greatly slow down your runs. Add them in slowly, and check that performance is not too compromised.)

Another option is forgo the diversification in the design phase, but attempt to put it into the preparation stage. Instead of having a single starting structure from which you generate multiple output models, have a set of input structures from each of which you only generate a few output models. There's a number of ways to get the input diversity, but one way is to use the relax protocol (particularly a constrained relax protocol if you don't want to move the structure too much) and use the multiple output structures. The slight diversity of backbones and sidechains in the starting structures may result in slightly different output structures for the fixedbb design portion.

Wed, 2013-12-18 08:10
rmoretti

I have tried NATAA but the results are nearly same. I will try to prepare more starting structure as you suggest. Thank you!

But if I paste these two chains together as one chain, the output sequences are very diverse. I don't understand why the different of two approaches is huge.

Wed, 2013-12-18 16:06
Lindsay

I think it's a bug in Rosetta3.5. As mentioned previously ( https://www.rosettacommons.org/node/3486 ) the issue doesn't seem to be present in the more recent weekly releases of Rosetta. As it looked like it's fixed in more recent versions, I didn't bother to track down the exact reason.

Thu, 2013-12-19 07:46
rmoretti