Back to Filters page.

AtomicContactCount

Counts sidechain carbon-carbon contacts among the specified residues under the given distance cutoff.

Iterates across all side-chain atoms of residues specified as packable in the given task operation, defaulting to all residues if no task operation is given, counting carbon-carbon pairs. Optionally restricts count to cross-jump contacts or cross-chain contacts. Optionally normalizes contact count by cross-jump or cross-chain interface sasa.

Operates in three modes:

  • 'all' - Counts all side-chain carbon-carbon contacts among residues specified in the task operation.
   <AtomicContactCount name="(&string)" partition="all" task_operations="(comma-delimited list of operations &string)"  distance="(4.5 &integer)"/>
  • 'jump' - Counts all side-chain carbon-carbon contacts spanning the specified jump among the specified residues. Normalize-by-sasa calculates sasa score using the specified jump and the sasa filter.
    <AtomicContactCount name="(&string)" partition="jump" task_operations="(comma-delimited list of operations &string)"  distance="(4.5 &integer)" jump="(1 &integer)" normalize_by_sasa="(0 &bool)"/>
  • 'chain' - Counts all side-chain carbon-carbon contacts between residues on different chains among the specified residues. Normalize-by-sasa defaults to all calculating sasa for all chains in the pose, optional 'detect_by_task' only calculates interface sasa among chains containing residues specified in the task. May under-calculate sasa if the task operation unexpectedly excludes all residues within a chain.
   <AtomicContactCount name="(&string)" partition="chain" task_operations="(comma-delimited list of operations &string)"  distance="(4.5 &integer)" normalize_by_sasa="(0*|detect_by_task|1 &str)"/>

Example:

To count atomic contacts between aromatic and apolar residues, an OperateOnCertainResidues task operation to select aromatic and apolar residues is passed to the AtomicContactCount filter.

   <TASKOPERATIONS>
     <OperateOnCertainResidues name="aromatic_apolar">
       <NoResFilter>
         <ResidueType aromatic="1" apolar="1"/>
       </NoResFilter>
       <PreventRepackingRLT/>
     </OperateOnCertainResidues>
   </TASKOPERATIONS>
   ....
   <FILTERS>
     <AtomicContactCount name="cc_jump" partition="jump" jump="1" normalize_by_sasa="0" task_operations="aromatic_apolar" confidence="0"/>
     <AtomicContactCount name="cc_jump_norm" partition="jump" jump="1" normalize_by_sasa="1" task_operations="aromatic_apolar" confidence="0"/>
   </FILTERS>
   ...
   <PROTOCOLS>
     <Add filter_name="cc_jump"/>
     <Add filter_name="cc_jump_norm"/>
   </PROTOCOLS>

See Also