stru.part: Partition of Structural Regions

View source: R/accdpx.R

stru.partR Documentation

Partition of Structural Regions

Description

Carries out a partition of the structural regions of a given protein.

Usage

stru.part(pdb, cutoff = 0.25)

Arguments

pdb

is either a PDB id, or the path to a pdb file

cutoff

accessibility below which a residue is considered to be buried.

Details

The accessibilities of a residue computed in the complex (ACCc) and in the monomer (ACCm) allow to distinguish four structural regions as follows.

Interior: ACCc < cutoff & (ACCm - ACCc) = 0.

Surface: ACCc > cutoff & (ACCm - ACCc) = 0.

Support: ACCm < cutoff & (ACCm - ACCc) > 0.

Rim: ACCc > cutoff & (ACCm - ACCc) > 0.

Core: ACCm > cutoff & ACCc < cutoff.

Value

A dataframe where each residue is assigned to one of the four structural groups considered.

Author(s)

Juan Carlos Aledo

References

Levy (2010) J. Mol. Biol. 403: 660-670 (PMID: 20868694).

See Also

atom.dpx(), res.dpx(), acc.dssp()

Examples

## Not run: stru.part('1u8f')

ptm documentation built on Aug. 7, 2022, 5:05 p.m.

Related to stru.part in ptm...