Skip to content

Theoretical and Computational Biochemistry Group

Coarse-graining of Protein Structures

PQRM file format

We use a file format called pqrm (PDB charge radius mass). It consists of two parts:

  • Coordinate section

    field namespecifies the entry type (ATOM or HETATM)
    atom numberatom index
    atom nameshort name of atom
    residue nameresidue name in 3-letter code
    chain idoptional, not used in TEN
    x y z3 float values specifying the coordinates
    chargeoptional, not used in TEN; atomic charge
    radiusoptionally, not used in TEN; atomic radius
    massmolecular mass of interaction center in u
  • Connect entry section

    field namespecifies the entry type (CONECT)
    reference atomatom index
    bound atomsindices of atoms bound to reference atom

Program coarsegrain

The program coarsegrain converts all-atom PDB files to coarse-grained pqrm-files. Residues can be represented by one (typically at the C-alpha position) or several interaction centers (ICs) (e.g. one for the backbone and one for the side chain). The user can define which atoms to keep in the cidf file (center of interaction definition format) read by the program. Exemplary cidf files are distributed with the C++ source files of the program. One can choose between two different assignment methods for the calculation of coordinates of the ICs:

  • BYATOM: take coordinates of first atom of the IC
  • BYGEOM: take geometric center of all atoms of the IC

cidf format

string “RESIDUE”residue name (in PDB file)
IC1 (name of pqrm file)mass IC1assignment methodatoms of IC1
IC_N (name of pqrm file)mass IC_Nassignment methodatoms of IC_N
-——-final——–-——-empty——–-——-line——–

Usage

   $PATH/coarsegrain input-PDB-filename \[options\]  

Example:

   $PATH/coarsegrain "input-filename" -i Ca.cidf -o "output-filename" -h  

Download

The program is available under the Gnu Affero Public License. The package includes

  • C++ code
  • Makefile
  • cidf file

Installation

  1. Download the file coarsegrain.tar.gz
  2. Type tar -jxf coarsegrain.tar.gz
  3. Go to the directory coarsegrain/src: cd coarsegrain/src
  4. Type make

back to TEN
back to CoMoDo