Member Site › Forums › Rosetta 3 › Rosetta 3 – Applications › mover “RepackMinimize” does not support chains > 2?
- This topic has 6 replies, 3 voices, and was last updated 11 years, 11 months ago by
Anonymous.
-
AuthorPosts
-
-
May 20, 2013 at 6:38 pm #8790
Anonymous
First off, even the documentation (https://www.rosettacommons.org/manuals/archive/rosetta3.4_user_guide/Movers_%28RosettaScripts%29#RepackMinimize) doesn’t really recommend using RepackMinimize – using a separate PackRotamersMover and MinMover (or TaskAwareMinMover) will allow for better control.
As for the error – it’s a horrible bug. It’s expecting min_rb to be vector of bools, one for each jump, but it’s assigning a single bool to the entry. And no, there’s no way to get around it. Either don’t set minimize_rb (it should default to all true anyway), or use use the separate PackRotamersMover/MinMover.
-
May 20, 2013 at 8:28 pm #8792
Anonymous
Rocco filed the bug here: https://carbon.structbio.vanderbilt.edu/mantisbt/view.php?id=274
-
May 21, 2013 at 1:19 am #8795
Anonymous
Thank you for pointing out the bug.
Actually, the XML script I used here was adopted from protocol_capture/RosettaScripts/pp-interfaceredesign/flexbb-interfacedesign.xml, which was originally published in the paper ‘RosettaScripts: A Scripting Language Interface to the Rosetta Macromolecular Modeling Suite’. This script has four ‘RepackMinimize’ mover with one ‘Backrub’ mover to do the design. -
May 21, 2013 at 1:56 am #8796
Anonymous
I also found mover “BackrubDD” has attribute “partner1” and “partner2” but no “jumps”. I have checked the source codes of “BackrubDD” in protocols/protein_interface_design/movers/BackrubDDMover.cc, it has conditional block:
if( pose.conformation().num_chains() == 2 ){
}
else if ( !residues_.size() ) { // pose does not have 2 chains, backrub all (protein)
}
which means for structures with more than 2 chains, the “partner1” and “partner2” are meaningless, all residues will be moved. -
May 21, 2013 at 6:43 pm #8804
Anonymous
Submitted to the tracker: https://carbon.structbio.vanderbilt.edu/mantisbt/view.php?id=275
By the way, I believe the Rosetta bug tracker should be open from submissions from non-developers. If you run across other bugs, feel free to make a bug tracker account and submit them yourself.
-
May 22, 2013 at 1:58 am #8806
Anonymous
many thanks!
Hope to get version 3.5 released soon.
-
-
AuthorPosts
- You must be logged in to reply to this topic.