changelog and input description update
[django_unres.git] / django_simple / todo / templates / input.html
1 {% extends "base.html" %}
2
3 {% load i18n lazysignup_tags %}
4 {% block content %}
5
6 <h4>
7 Input data description:</h4>
8 <p>
9 <ol>
10 <li>
11 As input Unres server can use protein sequence given using one letter code
12 (with XX to mark a new chain) or PDB files.
13 <li>
14 Only standard codes of aminoacids are recognized in PDB files.
15 <li>
16 PDB files can be downloaded from the PDB database based on given PDB code.
17 To select only a single chain use PDB_code:chain_id notation (for example 
18 5G3Q:B), chain_id is case sensitive.
19 <li>
20 Unres server requires input PDB files with continuous (without breaks)
21 protein chains. PDB files with gaps in the structure have to be first prepared
22 by filling up all missing residues. There is a plan to add such service to
23 the UNRES server but currently, a user has to model missing fragment using
24 external software or online servers (for example Modeller software, Modloop
25 server).
26 <li>
27 Disulfide bonds are read from PDB based on SSBOND records and for multichain
28 protein proper chain records are necessary. See example:
29 <pre>
30 SSBOND   1 CYS C  107    CYS C  138
31 SSBOND   2 CYS C  124    CYS C  139
32 SSBOND   3 CYS C  137    CYS C  149
33 SSBOND   4 CYS D  107    CYS D  138
34 SSBOND   5 CYS D  124    CYS D  139
35 SSBOND   6 CYS D  137    CYS D  149
36 </pre>
37 <li> A protein structure with disulfide bonds and no corresponding 
38 SSBOND records will result in clashes and a very high energy 
39 which can crash calculations.
40 <li>
41 TER records in PDB file are read to recognize chain's ends.
42 <li>
43 Distance distribution (from SAXS experiment) can be added for MREMD
44 simulation in advanced mode. First column distance in  Angstroms, second column
45 distribution function value (separated by space).
46 <li>
47 Secondary structure restraints can be added to MD and MREMD
48 simulation in advanced mode. Sequence of letters H,E and C or - for each
49 residue is used to input helical, extended and no restraints, respectively.
50 </ol>
51 {% endblock %}