Back to Filters page.
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:
<AtomicContactCount name="(&string)" partition="all" task_operations="(comma-delimited list of operations &string)" distance="(4.5 &integer)"/>
<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)"/>
<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>
Additinal options:
To obtain the same behavior as the "hphob_sc_contacts" metric published in "Global analysis of protein folding using massively parallel design, synthesis, and testing" (Science, 2017) keep defaults, except for: distance=4.3, non_local=True, res_contact=True, count_SD_NE1=True, and make only hydrophobic amino-acids (FILMVYW) packable.