input description added
authorCezary Czaplewski <czarek@chem.univ.gda.pl>
Wed, 13 Dec 2017 21:34:36 +0000 (22:34 +0100)
committerCezary Czaplewski <czarek@chem.univ.gda.pl>
Wed, 13 Dec 2017 21:34:36 +0000 (22:34 +0100)
django_simple/todo/templates/base.html
django_simple/todo/templates/input.html [new file with mode: 0644]
django_simple/urls.py

index 7748d6d..55e2d39 100644 (file)
@@ -27,6 +27,7 @@
     </div>
     <ul class="nav navbar-nav" >
       <li><a href="/tutorial">Tutorial</a></li>
+      <li><a href="/input">Input data</a></li>            
       <li><a href="/about">About</a></li>
       <li><a href="/contact">Contact</a></li>
     </ul>
diff --git a/django_simple/todo/templates/input.html b/django_simple/todo/templates/input.html
new file mode 100644 (file)
index 0000000..9189f6b
--- /dev/null
@@ -0,0 +1,32 @@
+{% extends "base.html" %}
+
+{% load i18n lazysignup_tags %}
+{% block content %}
+
+<h4>
+Input data description:</h4>
+<p>
+<ol>
+<li>
+As input Unres server can use protein sequence given using one letter code
+(with XX to mark a new chain) or PDB files.
+<li>
+Only standard codes of aminoacids are recognized in PDB files.
+<li>
+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).
+<li>
+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.
+<li> A protein structure with disulfide bonds and no corresponding 
+SSBOND records will result in clashes and a very high energy 
+which can crash calculations.
+<li>
+TER records in PDB file are read to recognize chain's ends.
+</ol>
+{% endblock %}
index 8b07775..bad475c 100644 (file)
@@ -22,5 +22,8 @@ urlpatterns = [
         url(r'^tutorial', 
             TemplateView.as_view(template_name='tutorial.html'),
                 name='tutorial'),
+        url(r'^input', 
+            TemplateView.as_view(template_name='input.html'),
+                name='input'),
 
 ]