Last edited May 31 2010 by Frank DiMaio. Code by Frank DiMaio and Ingemar Andre.
All the code is contained in the Perl script src/apps/public/symmetry/make_symmdef_file.pl.
This script automatically creates symmetry definition files corresponding to the symmetry in some template PDB. If the template is not symmetrical it is "symmetrized" by the script.
This routine does not create symmetry definition files for ab initio symmetric modeling with fold_and_dock. Use See make_symmdef_file_denovo instead.
If the input PDB is very asymmetric, the output PDB may be very far from the input. Generally this is undesirable; you may want to model this system asymmetrically.
The following symmetry types are currently unsupported by the script:
The script currently recognizes three different symmetry types: noncrystallographic (point) symmetries, crystallographic symmetry, and helical symmetry. A fourth (experimental) option, "pseudo-symmetry," models a nonsymmetric system using the symmetry machinery to attempt to reduce the conformational space (and running time) of the search at the cost of some accuracy.
These options are common to all symmetry modes:
-m (NCS|CRYST|HELIX|PSEUDO) : [default NCS] which symmetric mode to run
NCS: generate noncrystallographic (point) symmetries from multiple chains in a PDB file
CRYST: generate crystallographic symmetry (fixed unit cell) from the CRYST1 line in a PDB file
HELIX: generate helical/fiber symmetry from multiple chains in a PDB file
PSEUDO: (EXPERIMENTAL) generate pseudo-symmetric system
-p <string> : Input PDB file (one of -b or -p _must_ be given)
-r <real> : [default 10.0] the max CA-CA distance between two interacting chains
-f : [default false] enable fast distance checking (recommended for large systems)
These options are common to noncrystallographic symmetry modes (NCS):
-a <char> : [default A] the chain ID of the main chain
-i <char> : [default B] the chain IDs of one chain in each symmetric subcomplex
These options are specific to crystallographic symmetry modes (CRYST):
-c <real>x6 : override the unit cell parameters in the PDB with these values
-s <string> : override the spacegroup in the PDB with these values
-k <real> : (EXPERIMENTAL) Approximate the protein as a ball of this radius (only if no '-p'!)
These options are specific to helical symmetry modes (HELIX):
-a <char> : [default A] the chain ID of the main chain
-b <char> : [default B] the chain ID of the next chain along the fiber/helix
-i <char> : the chain ID of a chain in -a's point symmetry group
-t <real> : [default 2] the number of helical turns to generate along the -b direction
-c <char> : (EXPERIMENTAL) the chain ID of the symm chain perpendicular to the -b chain (simple 2D symmetry)
-u <real> : (EXPERIMENTAL) [default 1] the number of repeats to generate along the -c direction
These options are specific to the (experimental) pseudo symmetry mode (PSEUDO):
-a <char> : [default A] the chain ID of the main chain
NCS mode
A sample command script (to generate D3 symmetry, with chains A, B, and C forming a point group and chains D,E, and F forming a second point group):
make_symmdef_file.pl -m NCS -p D3.pdb -a A -i B E -r 12 > D3.symm
Several files are generated:
CRYST mode
Sample command script (using the CRYST1 line in the PDB file):
make_symmdef_file.pl -m CRYST -p p65.pdb > p65.symm
Several files are generated:
The input PDB (to Rosetta) in this case is simply 'p65.pdb', the input file sent to the script.
HELIX mode
Sample command script (with chains A, C, E, ... tracing up the helical axis and B, D, F, ... forming C2 symmetries up the axis):
make_symmdef_file.pl -m HELIX -p fiber.pdb -a A -b C -i B -r 12 -t 5 > fiber.symm
Several files are generated:
A total of 5 turns of the helix (-t 5) are generated.
Alternately, a helical twist can be forced by appending : n to the helical chain. For example, the command script:
make_symmdef_file.pl -m HELIX -p fiber2.pdb -a A -b B:3 > fiber2.symm
forces the helix to have 3 subunits per turn.
Make sure that the system in *_symm.pdb looks right before submitting a symmetric refinement job!