{% extends "base.html" %} {% load i18n lazysignup_tags %} {% block content %}

Input data description:

  1. As input Unres server can use protein sequence given using one letter code (with XX to mark a new chain) or PDB files.
  2. Only standard codes of aminoacids are recognized in PDB files.
  3. Unres server requires input PDB files with continuous (without breaks) protein chains. PDB files with gaps in the structure have to be first prepared by filling up all missing residues. There is a plan to add such service to the UNRES server but currently, a user has to model missing fragment using external software or online servers (for example Modeller software, Modloop server).
  4. Disulfide bonds are read from PDB based on SSBOND records and for multichain protein COMPND record with propers CHAIN: tokens listing all chains in the PDB file. See example:
    COMPND   3 CHAIN: A, B, C, D;
    SSBOND   1 CYS C  107    CYS C  138
    SSBOND   2 CYS C  124    CYS C  139
    SSBOND   3 CYS C  137    CYS C  149
    SSBOND   4 CYS D  107    CYS D  138
    SSBOND   5 CYS D  124    CYS D  139
    SSBOND   6 CYS D  137    CYS D  149
    
  5. A protein structure with disulfide bonds and no corresponding SSBOND records will result in clashes and a very high energy which can crash calculations.
  6. TER records in PDB file are read to recognize chain's ends.
  7. Distance distribution (from SAXS experiment) can be added for MREMD simulation in advanced mode. First column distance in Angstroms, second column distribution function value (separated by space).
{% endblock %}