Back to TaskOperations page.
Sets catalytic residues to designable. Prior to being called, this task operation REQUIRES that enzdes constraints be added to the pose. This can be accomplished using the <AddOrRemoveMatchCsts /> mover as shown in the example. This could be combined with the <SetCatalyticResPackBehavior /> task operation to set the catalytic residues to repack and design the spheres around them.
<DesignCatalyticResidues name="(&string)" region_shell="(&real)" regions_to_design="(&int)" repack_non_selected="(&bool)" />
Example The following example redesigns a sphere of 8 A radius centered at catalytic residues. Residues outside of the sphere are fixed.
<TASKOPERATIONS>
<SetCatalyticResPackBehavior name="repack_cat" fix_catalytic_aa="0" />
<DesignCatalyticResidues name="des_catalytic" region_shell="8.0" regions_to_design="1" repack_non_selected="0" />
</TASKOPERATIONS>
<MOVERS>
<AddOrRemoveMatchCsts name="add_csts" cstfile="my_csts.cst" cst_instruction="add_new" />
<PackRotamersMover name="design" task_operations="des_catalytic,repack_cat" />
</MOVERS>
<PROTOCOLS>
<Add mover_name="add_csts" />
<Add mover_name="design" />
</PROTOCOLS>