Back to Mover page.

EnsureExclusivelySharedJumpMover

Autogenerated Tag Syntax Documentation:


Set up foldtree such that there exists a jump that builds all selected residues and does not build any unselected residues

<EnsureExclusivelySharedJumpMover name="(&string;)"
        residue_selector="(&string;)" />
  • residue_selector: . The name of a previously declared residue selector or a logical expression of AND, NOT (!), OR, parentheses, and the names of previously declared residue selectors. Any capitalization of AND, NOT, and OR is accepted. An exclamation mark can be used instead of NOT. Boolean operators have their traditional priorities: NOT then AND then OR. For example, if selectors s1, s2, and s3 have been declared, you could write: 's1 or s2 and not s3' which would select a particular residue if that residue were selected by s1 or if it were selected by s2 but not by s3.

Example:

<ROSETTASCRIPTS>
  <RESIDUE_SELECTORS>
    <Chain name="sele" chains="1,3"/>
  </RESIDUE_SELECTORS>

  <MOVERS>
    <EnsureExclusivelySharedJumpMover name="ensure_jump" residue_selector="sele"/> 
  </MOVERS>

  <JUMP_SELECTORS>
    <ExclusivelySharedJumpSelector name="js" residue_selector="sele"/>
  </JUMP_SELECTORS>

  <RESIDUE_SELECTORS>
    <JumpDownstream name="downstream" jump_selector="js"/>
  </RESIDUE_SELECTORS>

  <SIMPLE_METRICS>
    <SelectedResiduesPyMOLMetric name="starting_pymol_selection" residue_selector="sele" custom_type="start"/>
    <SelectedResiduesPyMOLMetric name="final_pymol_selection" residue_selector="downstream" custom_type="final"/>
  </SIMPLE_METRICS>

  <PROTOCOLS>
    <Add mover_name="ensure_jump"/>
    <Add metrics="starting_pymol_selection,final_pymol_selection" />
  </PROTOCOLS>
</ROSETTASCRIPTS>