diff --git a/doc/buildsystem.rst b/doc/buildsystem.rst
index fbb9656f7142cfcb43fa62643f03ca3e3cb866e2..248a7207b59e1ccf6cfd58729921fa86fe71c8c9 100644
--- a/doc/buildsystem.rst
+++ b/doc/buildsystem.rst
@@ -3,13 +3,14 @@ Building |project|
 --------------------------------------------------------------------------------
 Dependencies
 --------------------------------------------------------------------------------
-|project| is build on top of |ost_l|_ (|ost_s|) and needs at least version
-1.4. To create the build system, |cmake|_ is required in version 2.8.7 or
-higher. |python|_ works well from version 2.7. For |ost_s| and the |C++| bit of
-|project|, |boost|_ is required in version 1.47.0. To build documentation,
-|sphinx|_ 1.2b1 is used.
+|project| is build on top of |ost_l|_ (|ost_s|), requiring at least version
+1.4, and |qmean|_. To create the build system, |cmake|_ is required in version
+2.8.7 or higher. |python|_ works well from version 2.7. For |ost_s| and the
+|C++| bit of |project|, |boost|_ is required in version 1.47.0 (the same as
+used for |ost_s|). To build documentation, |sphinx|_ 1.2b1 is used.
 
 * |ost_s|_ 1.4
+* |qmean|_
 * |cmake|_ 2.8.7
 * |python|_ 2.7
 * |boost|_ 1.47.0
@@ -25,13 +26,13 @@ right from a shell with the directory containing the top-level
 
 .. code-block:: console
 
-   $ cmake . -DOST_ROOT=<PATH TO OST>
+   $ cmake . -DOST_ROOT=<PATH TO OST> -DQMEAN_ROOT=<PATH TO QMEAN>
 
-For us, at least a pointer to the |ost_s| installation directory is needed,
-handed over to |cmake| by ``-D`` into the variable ``OST_ROOT``. Other important
-variables would be ``BOOST_ROOT``, set to the same path as for |ost_s| and
-probably ``PYTHON_ROOT`` if you want to use a certain |python|. Don't forget to
-put a ``-D`` in front of options.
+For us, at least pointers to the |ost_s| and |qmean| installation directories
+are needed, handed over to |cmake| by ``-D`` into the variables ``OST_ROOT``
+and ``QMEAN_ROOT``. Other important variables would be ``BOOST_ROOT``, set to
+the same path as for |ost_s| and probably ``PYTHON_ROOT`` if you want to use a
+certain |python|. Don't forget to put a ``-D`` in front of options.
 
 Here is a list of more options used within |project|:
 
@@ -43,34 +44,51 @@ Here is a list of more options used within |project|:
 
 Instead of calling |cmake| by yourself, there is the :file:`conf-scripts`
 directory, providing smallish scripts to invoke |cmake| the right way for
-various systems. Usually those scripts just need the |ost_s| path and the
-location of the top-level :file:`CMakeLists.txt`.
+various systems. Usually those scripts just need the |ost_s| and |qmean| paths
+and the location of the top-level :file:`CMakeLists.txt`.
 
 What we highly recommend is going for out-of-source builds. This means creating
-a dedicated directory for building |project| and calling |cmake|/ a
+a dedicated directory for building |project| and calling |cmake| or a
 configuration script from there. This way, you can have several builds with
 different configurations. Also if anything goes wrong, just remove the build
 directory to get to a clean state again. No searching for |cmake| cache files or
 checking if certain files really got rebuild and similar things required.
 
 
-Important Make Targets
+Running Make
 --------------------------------------------------------------------------------
+After configuring, you want to build |project| by
+
+.. code-block:: console
+
+   $ make
+
+to populate the :file:`stage` directory with a ready-to-go version of the
+latest code.
+
+.. index::
+   single: Make targets
+
 Beside the usual ``make all`` and other default targets, there are a few
 special targets:
 
-* ``check`` Runs unit tests and if |cmake| was invoked in its standard
-  configuration also |sphinx| with the ``doctest`` and ``linkcheck`` builders
-* ``html`` Creates documentation as web page using the |sphinx| ``html`` builder
-* ``man`` Creates a manual page using the |sphinx| ``man`` builder
-* ``doc`` Creates documentation using the ``html`` and ``man`` targets
-* ``help`` Prints a list of targets available
-
+* ``check`` :index:`make check` Runs unit tests and if |cmake| was invoked in
+  its standard configuration also |sphinx| with the ``doctest`` and
+  ``linkcheck`` builders
+* ``html`` :index:`make html` Creates documentation as web page using the
+  |sphinx| ``html`` builder
+* ``man`` :index:`make man` Creates a manual page using the |sphinx| ``man``
+  builder
+* ``doc`` :index:`make doc` Creates documentation using the ``html`` and
+  ``man`` targets
+* ``help`` :index:`make help` Prints a list of targets available
 
+.. |qmean| replace:: QMEAN
+.. _qmean: http://swissmodel.expasy.org/qmean/cgi/index.cgi?
 .. _ost_l: http://www.OpenStructure.org
 .. _cmake: http://www.cmake.org/
 .. _python: https://www.python.org/
 .. _boost: http://www.boost.org/
 
 ..  LocalWords:  cmake makefiles CMakeLists txt DOCTEST LINKCHECK conf html
-..  LocalWords:  doctest linkcheck
+..  LocalWords:  doctest linkcheck qmean DQMEAN
diff --git a/doc/html/.doctrees/buildsystem.doctree b/doc/html/.doctrees/buildsystem.doctree
index 78e3ce686306acf85cac4026a4945ca4e185bc2b..f1321adc41fa0acb10d413ccb1f2a44da6533ff4 100644
Binary files a/doc/html/.doctrees/buildsystem.doctree and b/doc/html/.doctrees/buildsystem.doctree differ
diff --git a/doc/html/.doctrees/core/argcheck.doctree b/doc/html/.doctrees/core/argcheck.doctree
index 311565bf1c13c0fcb1d7245de2dc581d2276df9f..e8ebe02f0f9383e5f8282294b7e64c8590bf3b29 100644
Binary files a/doc/html/.doctrees/core/argcheck.doctree and b/doc/html/.doctrees/core/argcheck.doctree differ
diff --git a/doc/html/.doctrees/core/index.doctree b/doc/html/.doctrees/core/index.doctree
index 8def255d1b18d1f44cf7a617bdee1f4d53d2e8e9..e4fa8e5f34e1a8eabba3b9d360ec67a120404836 100644
Binary files a/doc/html/.doctrees/core/index.doctree and b/doc/html/.doctrees/core/index.doctree differ
diff --git a/doc/html/.doctrees/environment.pickle b/doc/html/.doctrees/environment.pickle
index 4087b18071f3d0651afad898362cee1143c6eaac..1c33f9ba708dc5bf34314f1cde159d79ecbd5007 100644
Binary files a/doc/html/.doctrees/environment.pickle and b/doc/html/.doctrees/environment.pickle differ
diff --git a/doc/html/_modules/index.html b/doc/html/_modules/index.html
index 8882e5649dafa9edac6d4259aa83eff9aa7fdfed..3af2c50ce44fc27c35f390a5fcfd6c13ad979373 100644
--- a/doc/html/_modules/index.html
+++ b/doc/html/_modules/index.html
@@ -85,7 +85,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:36, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/_modules/promod3/core/argcheck.html b/doc/html/_modules/promod3/core/argcheck.html
index fe054b653e24248041c3b214520c47dcc9be43b2..45c289d84de1fd9d5fbf27542595483fda275e34 100644
--- a/doc/html/_modules/promod3/core/argcheck.html
+++ b/doc/html/_modules/promod3/core/argcheck.html
@@ -174,7 +174,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:36, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/_sources/buildsystem.txt b/doc/html/_sources/buildsystem.txt
index fbb9656f7142cfcb43fa62643f03ca3e3cb866e2..248a7207b59e1ccf6cfd58729921fa86fe71c8c9 100644
--- a/doc/html/_sources/buildsystem.txt
+++ b/doc/html/_sources/buildsystem.txt
@@ -3,13 +3,14 @@ Building |project|
 --------------------------------------------------------------------------------
 Dependencies
 --------------------------------------------------------------------------------
-|project| is build on top of |ost_l|_ (|ost_s|) and needs at least version
-1.4. To create the build system, |cmake|_ is required in version 2.8.7 or
-higher. |python|_ works well from version 2.7. For |ost_s| and the |C++| bit of
-|project|, |boost|_ is required in version 1.47.0. To build documentation,
-|sphinx|_ 1.2b1 is used.
+|project| is build on top of |ost_l|_ (|ost_s|), requiring at least version
+1.4, and |qmean|_. To create the build system, |cmake|_ is required in version
+2.8.7 or higher. |python|_ works well from version 2.7. For |ost_s| and the
+|C++| bit of |project|, |boost|_ is required in version 1.47.0 (the same as
+used for |ost_s|). To build documentation, |sphinx|_ 1.2b1 is used.
 
 * |ost_s|_ 1.4
+* |qmean|_
 * |cmake|_ 2.8.7
 * |python|_ 2.7
 * |boost|_ 1.47.0
@@ -25,13 +26,13 @@ right from a shell with the directory containing the top-level
 
 .. code-block:: console
 
-   $ cmake . -DOST_ROOT=<PATH TO OST>
+   $ cmake . -DOST_ROOT=<PATH TO OST> -DQMEAN_ROOT=<PATH TO QMEAN>
 
-For us, at least a pointer to the |ost_s| installation directory is needed,
-handed over to |cmake| by ``-D`` into the variable ``OST_ROOT``. Other important
-variables would be ``BOOST_ROOT``, set to the same path as for |ost_s| and
-probably ``PYTHON_ROOT`` if you want to use a certain |python|. Don't forget to
-put a ``-D`` in front of options.
+For us, at least pointers to the |ost_s| and |qmean| installation directories
+are needed, handed over to |cmake| by ``-D`` into the variables ``OST_ROOT``
+and ``QMEAN_ROOT``. Other important variables would be ``BOOST_ROOT``, set to
+the same path as for |ost_s| and probably ``PYTHON_ROOT`` if you want to use a
+certain |python|. Don't forget to put a ``-D`` in front of options.
 
 Here is a list of more options used within |project|:
 
@@ -43,34 +44,51 @@ Here is a list of more options used within |project|:
 
 Instead of calling |cmake| by yourself, there is the :file:`conf-scripts`
 directory, providing smallish scripts to invoke |cmake| the right way for
-various systems. Usually those scripts just need the |ost_s| path and the
-location of the top-level :file:`CMakeLists.txt`.
+various systems. Usually those scripts just need the |ost_s| and |qmean| paths
+and the location of the top-level :file:`CMakeLists.txt`.
 
 What we highly recommend is going for out-of-source builds. This means creating
-a dedicated directory for building |project| and calling |cmake|/ a
+a dedicated directory for building |project| and calling |cmake| or a
 configuration script from there. This way, you can have several builds with
 different configurations. Also if anything goes wrong, just remove the build
 directory to get to a clean state again. No searching for |cmake| cache files or
 checking if certain files really got rebuild and similar things required.
 
 
-Important Make Targets
+Running Make
 --------------------------------------------------------------------------------
+After configuring, you want to build |project| by
+
+.. code-block:: console
+
+   $ make
+
+to populate the :file:`stage` directory with a ready-to-go version of the
+latest code.
+
+.. index::
+   single: Make targets
+
 Beside the usual ``make all`` and other default targets, there are a few
 special targets:
 
-* ``check`` Runs unit tests and if |cmake| was invoked in its standard
-  configuration also |sphinx| with the ``doctest`` and ``linkcheck`` builders
-* ``html`` Creates documentation as web page using the |sphinx| ``html`` builder
-* ``man`` Creates a manual page using the |sphinx| ``man`` builder
-* ``doc`` Creates documentation using the ``html`` and ``man`` targets
-* ``help`` Prints a list of targets available
-
+* ``check`` :index:`make check` Runs unit tests and if |cmake| was invoked in
+  its standard configuration also |sphinx| with the ``doctest`` and
+  ``linkcheck`` builders
+* ``html`` :index:`make html` Creates documentation as web page using the
+  |sphinx| ``html`` builder
+* ``man`` :index:`make man` Creates a manual page using the |sphinx| ``man``
+  builder
+* ``doc`` :index:`make doc` Creates documentation using the ``html`` and
+  ``man`` targets
+* ``help`` :index:`make help` Prints a list of targets available
 
+.. |qmean| replace:: QMEAN
+.. _qmean: http://swissmodel.expasy.org/qmean/cgi/index.cgi?
 .. _ost_l: http://www.OpenStructure.org
 .. _cmake: http://www.cmake.org/
 .. _python: https://www.python.org/
 .. _boost: http://www.boost.org/
 
 ..  LocalWords:  cmake makefiles CMakeLists txt DOCTEST LINKCHECK conf html
-..  LocalWords:  doctest linkcheck
+..  LocalWords:  doctest linkcheck qmean DQMEAN
diff --git a/doc/html/buildsystem.html b/doc/html/buildsystem.html
index f166ac3cba940c09def6d50481618f31f6e1639e..be1669cdb06ab01b97fcfa067fc8d24ac3da6144 100644
--- a/doc/html/buildsystem.html
+++ b/doc/html/buildsystem.html
@@ -58,13 +58,14 @@
 <h1>Building ProMod3<a class="headerlink" href="#building-project" title="Permalink to this headline">¶</a></h1>
 <div class="section" id="dependencies">
 <h2>Dependencies<a class="headerlink" href="#dependencies" title="Permalink to this headline">¶</a></h2>
-<p>ProMod3 is build on top of <a class="reference external" href="http://www.OpenStructure.org">OpenStructure</a> (OST) and needs at least version
-1.4. To create the build system, <a class="reference external" href="http://www.cmake.org/">CMake</a> is required in version 2.8.7 or
-higher. <a class="reference external" href="https://www.python.org/">Python</a> works well from version 2.7. For OST and the C++ bit of
-ProMod3, <a class="reference external" href="http://www.boost.org/">Boost</a> is required in version 1.47.0. To build documentation,
-<a class="reference external" href="http://sphinx-doc.org/">Sphinx</a> 1.2b1 is used.</p>
+<p>ProMod3 is build on top of <a class="reference external" href="http://www.OpenStructure.org">OpenStructure</a> (OST), requiring at least version
+1.4, and <a class="reference external" href="http://swissmodel.expasy.org/qmean/cgi/index.cgi?">QMEAN</a>. To create the build system, <a class="reference external" href="http://www.cmake.org/">CMake</a> is required in version
+2.8.7 or higher. <a class="reference external" href="https://www.python.org/">Python</a> works well from version 2.7. For OST and the
+C++ bit of ProMod3, <a class="reference external" href="http://www.boost.org/">Boost</a> is required in version 1.47.0 (the same as
+used for OST). To build documentation, <a class="reference external" href="http://sphinx-doc.org/">Sphinx</a> 1.2b1 is used.</p>
 <ul class="simple">
 <li><a class="reference external" href="http://www.OpenStructure.org">OST</a> 1.4</li>
+<li><a class="reference external" href="http://swissmodel.expasy.org/qmean/cgi/index.cgi?">QMEAN</a></li>
 <li><a class="reference external" href="http://www.cmake.org/">CMake</a> 2.8.7</li>
 <li><a class="reference external" href="https://www.python.org/">Python</a> 2.7</li>
 <li><a class="reference external" href="http://www.boost.org/">Boost</a> 1.47.0</li>
@@ -77,14 +78,14 @@ ProMod3, <a class="reference external" href="http://www.boost.org/">Boost</a> is
 and certain directories needed for building ProMod3. Basically it is called
 right from a shell with the directory containing the top-level
 <tt class="file docutils literal"><span class="pre">CMakeLists.txt</span></tt> as an argument:</p>
-<div class="highlight-console"><div class="highlight"><pre><span class="gp">$</span> cmake . -DOST_ROOT<span class="o">=</span>&lt;PATH TO OST&gt;
+<div class="highlight-console"><div class="highlight"><pre><span class="gp">$</span> cmake . -DOST_ROOT<span class="o">=</span>&lt;PATH TO OST&gt; -DQMEAN_ROOT<span class="o">=</span>&lt;PATH TO QMEAN&gt;
 </pre></div>
 </div>
-<p>For us, at least a pointer to the OST installation directory is needed,
-handed over to CMake by <tt class="docutils literal"><span class="pre">-D</span></tt> into the variable <tt class="docutils literal"><span class="pre">OST_ROOT</span></tt>. Other important
-variables would be <tt class="docutils literal"><span class="pre">BOOST_ROOT</span></tt>, set to the same path as for OST and
-probably <tt class="docutils literal"><span class="pre">PYTHON_ROOT</span></tt> if you want to use a certain Python. Don&#8217;t forget to
-put a <tt class="docutils literal"><span class="pre">-D</span></tt> in front of options.</p>
+<p>For us, at least pointers to the OST and QMEAN installation directories
+are needed, handed over to CMake by <tt class="docutils literal"><span class="pre">-D</span></tt> into the variables <tt class="docutils literal"><span class="pre">OST_ROOT</span></tt>
+and <tt class="docutils literal"><span class="pre">QMEAN_ROOT</span></tt>. Other important variables would be <tt class="docutils literal"><span class="pre">BOOST_ROOT</span></tt>, set to
+the same path as for OST and probably <tt class="docutils literal"><span class="pre">PYTHON_ROOT</span></tt> if you want to use a
+certain Python. Don&#8217;t forget to put a <tt class="docutils literal"><span class="pre">-D</span></tt> in front of options.</p>
 <p>Here is a list of more options used within ProMod3:</p>
 <ul class="simple">
 <li><tt class="docutils literal"><span class="pre">DISABLE_DOCUMENTATION</span></tt> Don&#8217;t build documentation, don&#8217;t search for Sphinx</li>
@@ -95,25 +96,35 @@ put a <tt class="docutils literal"><span class="pre">-D</span></tt> in front of
 </ul>
 <p>Instead of calling CMake by yourself, there is the <tt class="file docutils literal"><span class="pre">conf-scripts</span></tt>
 directory, providing smallish scripts to invoke CMake the right way for
-various systems. Usually those scripts just need the OST path and the
-location of the top-level <tt class="file docutils literal"><span class="pre">CMakeLists.txt</span></tt>.</p>
+various systems. Usually those scripts just need the OST and QMEAN paths
+and the location of the top-level <tt class="file docutils literal"><span class="pre">CMakeLists.txt</span></tt>.</p>
 <p>What we highly recommend is going for out-of-source builds. This means creating
-a dedicated directory for building ProMod3 and calling CMake/ a
+a dedicated directory for building ProMod3 and calling CMake or a
 configuration script from there. This way, you can have several builds with
 different configurations. Also if anything goes wrong, just remove the build
 directory to get to a clean state again. No searching for CMake cache files or
 checking if certain files really got rebuild and similar things required.</p>
-<div class="section" id="important-make-targets">
-<h3>Important Make Targets<a class="headerlink" href="#important-make-targets" title="Permalink to this headline">¶</a></h3>
-<p>Beside the usual <tt class="docutils literal"><span class="pre">make</span> <span class="pre">all</span></tt> and other default targets, there are a few
+<div class="section" id="running-make">
+<h3>Running Make<a class="headerlink" href="#running-make" title="Permalink to this headline">¶</a></h3>
+<p>After configuring, you want to build ProMod3 by</p>
+<div class="highlight-console"><div class="highlight"><pre><span class="gp">$</span> make
+</pre></div>
+</div>
+<p>to populate the <tt class="file docutils literal"><span class="pre">stage</span></tt> directory with a ready-to-go version of the
+latest code.</p>
+<p id="index-0">Beside the usual <tt class="docutils literal"><span class="pre">make</span> <span class="pre">all</span></tt> and other default targets, there are a few
 special targets:</p>
 <ul class="simple">
-<li><tt class="docutils literal"><span class="pre">check</span></tt> Runs unit tests and if CMake was invoked in its standard
-configuration also Sphinx with the <tt class="docutils literal"><span class="pre">doctest</span></tt> and <tt class="docutils literal"><span class="pre">linkcheck</span></tt> builders</li>
-<li><tt class="docutils literal"><span class="pre">html</span></tt> Creates documentation as web page using the Sphinx <tt class="docutils literal"><span class="pre">html</span></tt> builder</li>
-<li><tt class="docutils literal"><span class="pre">man</span></tt> Creates a manual page using the Sphinx <tt class="docutils literal"><span class="pre">man</span></tt> builder</li>
-<li><tt class="docutils literal"><span class="pre">doc</span></tt> Creates documentation using the <tt class="docutils literal"><span class="pre">html</span></tt> and <tt class="docutils literal"><span class="pre">man</span></tt> targets</li>
-<li><tt class="docutils literal"><span class="pre">help</span></tt> Prints a list of targets available</li>
+<li><tt class="docutils literal"><span class="pre">check</span></tt> <span class="target" id="index-1"></span>make check Runs unit tests and if CMake was invoked in
+its standard configuration also Sphinx with the <tt class="docutils literal"><span class="pre">doctest</span></tt> and
+<tt class="docutils literal"><span class="pre">linkcheck</span></tt> builders</li>
+<li><tt class="docutils literal"><span class="pre">html</span></tt> <span class="target" id="index-2"></span>make html Creates documentation as web page using the
+Sphinx <tt class="docutils literal"><span class="pre">html</span></tt> builder</li>
+<li><tt class="docutils literal"><span class="pre">man</span></tt> <span class="target" id="index-3"></span>make man Creates a manual page using the Sphinx <tt class="docutils literal"><span class="pre">man</span></tt>
+builder</li>
+<li><tt class="docutils literal"><span class="pre">doc</span></tt> <span class="target" id="index-4"></span>make doc Creates documentation using the <tt class="docutils literal"><span class="pre">html</span></tt> and
+<tt class="docutils literal"><span class="pre">man</span></tt> targets</li>
+<li><tt class="docutils literal"><span class="pre">help</span></tt> <span class="target" id="index-5"></span>make help Prints a list of targets available</li>
 </ul>
 </div>
 </div>
@@ -130,7 +141,7 @@ configuration also Sphinx with the <tt class="docutils literal"><span class="pre
 <li><a class="reference internal" href="#">Building ProMod3</a><ul>
 <li><a class="reference internal" href="#dependencies">Dependencies</a></li>
 <li><a class="reference internal" href="#using-cmake">Using CMake</a><ul>
-<li><a class="reference internal" href="#important-make-targets">Important Make Targets</a></li>
+<li><a class="reference internal" href="#running-make">Running Make</a></li>
 </ul>
 </li>
 </ul>
@@ -186,7 +197,7 @@ configuration also Sphinx with the <tt class="docutils literal"><span class="pre
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:04, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/core/argcheck.html b/doc/html/core/argcheck.html
index 6830e08598bea94b5a52fc5534ec93c932125b10..87da7739010efb097ea0c53d4ba03e14c222b70d 100644
--- a/doc/html/core/argcheck.html
+++ b/doc/html/core/argcheck.html
@@ -217,7 +217,7 @@ shell. <tt class="docutils literal"><span class="pre">0</span></tt> is tradition
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:04, 2014.
+      Last updated on Jun 26 16:15, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/core/index.html b/doc/html/core/index.html
index 456425c8558c93f07f8f265547846b3aa892fda4..391743016b2fd3ef8b4002ee92b45dd88263f3b1 100644
--- a/doc/html/core/index.html
+++ b/doc/html/core/index.html
@@ -123,7 +123,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:04, 2014.
+      Last updated on Jun 26 16:15, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/developers.html b/doc/html/developers.html
index 06588d82265fa678df136fe153e1c5523ab38c51..c03708a1d704e6d5137f5db8851e80e67de9ed5b 100644
--- a/doc/html/developers.html
+++ b/doc/html/developers.html
@@ -139,7 +139,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:36, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/genindex.html b/doc/html/genindex.html
index 7bd396ae6df9316e9e19bdb438a5fa7444000db4..0c7b71b0af48c558bba0c6c54638fef21cf99e76 100644
--- a/doc/html/genindex.html
+++ b/doc/html/genindex.html
@@ -179,6 +179,32 @@
 <table style="width: 100%" class="indextable genindextable"><tr>
   <td style="width: 33%" valign="top"><dl>
       
+  <dt><a href="buildsystem.html#index-1">make check</a>
+  </dt>
+
+      
+  <dt><a href="buildsystem.html#index-4">make doc</a>
+  </dt>
+
+      
+  <dt><a href="buildsystem.html#index-5">make help</a>
+  </dt>
+
+      
+  <dt><a href="buildsystem.html#index-2">make html</a>
+  </dt>
+
+  </dl></td>
+  <td style="width: 33%" valign="top"><dl>
+      
+  <dt><a href="buildsystem.html#index-3">make man</a>
+  </dt>
+
+      
+  <dt><a href="buildsystem.html#index-0">Make targets</a>
+  </dt>
+
+      
   <dt><a href="meld/loop.html#sm.meld.LoopCandidates.model">model (sm.meld.LoopCandidates attribute)</a>
   </dt>
 
@@ -308,7 +334,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:36, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/index.html b/doc/html/index.html
index 55592275790d456e43399e973fec6266f9c90df5..889a15068d9e12b1cab97df435454daebfca4f46 100644
--- a/doc/html/index.html
+++ b/doc/html/index.html
@@ -134,7 +134,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:36, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/py-modindex.html b/doc/html/py-modindex.html
index 641099bfe8e3a520c33346ee100507efaadddea6..b3827e5dbedc0efb5dbfaa604f7b39003827a4e0 100644
--- a/doc/html/py-modindex.html
+++ b/doc/html/py-modindex.html
@@ -113,7 +113,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:36, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/search.html b/doc/html/search.html
index dbfa8d260b93483448f6c6ba6c2c2745e9f5f597..3bb78e7c396b3d3024a74162be7f764f8d3fa089 100644
--- a/doc/html/search.html
+++ b/doc/html/search.html
@@ -99,7 +99,7 @@
     </div>
     <div class="footer">
         &copy; Copyright 2013, Bienchen.
-      Last updated on Jun 19 11:36, 2014.
+      Last updated on Jul 03 10:51, 2014.
       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
     </div>
   </body>
diff --git a/doc/html/searchindex.js b/doc/html/searchindex.js
index 9487f75efd2133ed092d08213aeb72cc4ade1269..b5660a1565bd0c5d767a5d741627270a5b175713 100644
--- a/doc/html/searchindex.js
+++ b/doc/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({envversion:42,terms:{aln:6,all:[8,0,1,10,6],code:[8,0,10],forget:8,chain:[10,6],messi:10,skip:10,sidechains_unit_test:10,ost:[0,1,2,3,4,5,6,7,8,9,10],fragment:1,disable_document:[8,10],prefix:[10,0],concept:10,subclass:10,abil:10,follow:[10,6],middl:10,structuralgap:1,readabl:10,init:10,program:7,under:10,introduc:10,sourc:[8,0,10],everi:[10,6],string:0,fals:[10,0,1,6],internet:10,candid:1,worst:10,failur:[10,0],veri:[10,0],affect:10,runnabl:10,tri:6,four:1,magic:10,level:[8,10],did:10,list:[8,0,1,10,6],assertequ:10,item:[10,6],fileextens:0,smallish:[8,10],align:6,dir:10,malici:10,promod_gcc_45:10,your_modul:10,direct:10,past:10,second:6,design:0,pass:10,acid:6,even:10,index:[10,4],what:[8,0,10],hide:10,sub:10,resembl:10,sum:1,invok:[8,10],anywai:10,current:10,delet:6,version:[8,10],"new":[10,1,6],boost:[0,1,2,3,4,5,6,7,8,9,10],method:1,meld:5,subtre:10,submodule1:10,honour:1,gener:10,never:10,here:[8,0,10,6],lib_stage_path:10,let:10,set_directory_properti:10,path:[8,0,10],along:10,modifi:[10,6,5],implicit:8,valu:0,wait:10,test_someth:10,search:[8,4,10],executable_output_path:10,setup_boost:10,promod3_version_minor:10,doctest:[8,10],action:10,implement:10,pack:1,honor:6,chanc:10,methionin:6,via:10,extra:10,solut:10,modul:5,submodul:10,unix:10,api:9,instal:8,total:1,unit:8,highli:8,fed:10,from:[0,1,5,6,8,9,10],describ:0,would:[8,10],regist:10,two:10,next:10,everybodi:10,few:[8,10,1,6],live:10,call:[8,10],recommend:8,loadalign:6,checkout:10,tell:[10,0],tightli:10,more:[8,10,6],sort:1,trustworthi:10,peopl:10,relat:10,notic:10,warn:10,flag:[10,0],include_directori:10,particular:10,known:0,rare:10,hold:[1,6],cach:[8,10],must:10,py_run:10,hous:10,setup:[10,5],work:[8,10],histori:10,remain:6,can:[8,0,10,6],torsion_scor:1,purpos:10,root:10,fetch:[10,0],def:10,control:10,give:10,process:10,add_argu:0,indic:0,topic:10,candit:1,want:[8,10],backbonelist:1,hydrogen:6,packing_scor:1,alwai:10,gcc:10,cours:10,end:[8,0,1,10],thing:[8,10],rather:10,peptid:[1,6],comfort:0,calpha_onli:6,"__init__":10,instead:[8,0,10],config:10,updat:10,python_vers:10,product:10,entityhandl:[1,6],rebas:10,mess:10,dive:10,after:10,usabl:10,sortbyscor:1,befor:10,wrong:8,attent:10,date:10,multipl:10,data:10,grow:6,man:[8,10],"short":10,practic:10,third:10,mol_alg:10,sit:10,correspond:[10,1],stash:10,disabl:10,issu:[10,7],alias:10,"switch":10,maintain:10,environ:10,allow:10,order:1,origin:10,promod3_version_major:10,help:[8,10],over:[8,10,6],insight:10,increas:1,through:10,files_to_be_remov:10,gitignor:10,still:10,pointer:8,entiti:[10,1],output_vari:10,fix:[10,0],selenium:6,structuralgaplist:6,carri:[10,0],complex:10,onc:10,python_doc_url:10,therefor:10,easier:1,linkcheck:[8,10],them:10,good:10,"return":[0,1,6],thei:[10,1],python:[0,1,2,3,4,5,6,7,8,9,10],dai:0,exot:10,"break":10,framework:10,conquer:10,clash_bb_scor:1,verifi:0,front:[8,0,10],now:[10,6],minimalist:6,cmake_cxx_flags_releas:10,libexec_stage_path:10,name:[10,0],rmsd:1,anyth:[8,10],separ:10,easili:10,achiev:10,each:10,debug:10,found:10,went:10,higher:8,side:10,mean:[8,0],compil:10,monolith:10,parwis:6,strip:6,idea:[10,5],realli:[8,0,10],runtest:10,"static":10,coord:1,our:10,special:[8,10],out:[8,10],variabl:[8,10],shown:10,goe:[8,10],promod3_unittest:10,crucial:10,content:[10,4,2],reader:10,print:[8,6],got:8,exec_program:10,clone:10,common:[10,0],model:7,make_directori:10,runtimeerror:[1,6],given:[0,1],free:10,standard:8,headlin:10,reason:10,base:[0,6],put:[8,0,10],org:10,basi:10,could:[10,6],success:[0,1],keep:10,turn:[10,0],clash_sc_scor:1,place:10,think:10,first:[10,5],oper:10,softwar:10,major:10,suffix:0,obviou:10,feel:10,sidechains_pymod:10,number:[1,6],yourself:[8,10],restrict:10,mai:[10,6],alreadi:10,done:10,messag:[10,0],blank:10,stabl:10,miss:[0,1,6],straight:10,exit_statu:0,differ:[8,10],script:[8,0,10],top:[8,10],perfectli:10,mkdir:10,system:[8,10,5],least:[8,10],tradition:0,attach:6,stori:10,master:10,too:10,termin:0,scheme:10,"final":[10,6],store:[10,1,6],shell:[8,0],option:[8,0,10],tool:0,copi:[10,6],restrict_chain:6,openstructur:[0,1,2,3,4,5,6,7,8,9,10],subsequ:6,pars:0,boost_include_dir:10,mostli:10,rst:10,conop:10,than:10,kind:10,setup_compiler_flag:10,whenev:10,provid:[8,10],seamlessli:10,tree:10,unrecognis:0,project:10,find_packag:10,reus:6,str:[0,6],were:10,posit:[0,1],toward:10,markup:10,python_binari:10,sometim:10,mind:10,argument:8,packag:10,manner:10,have:[8,10,1,6],"__main__":10,need:[8,0,10],fasta:6,tidi:10,cmake_current_source_dir:10,optimis:10,rmsdto:1,imagin:10,built:10,advic:10,inform:6,diverg:10,self:10,also:[8,0,10,6],without:[0,6],take:[10,6],which:[10,6,7],thoroughli:10,noth:10,singl:[10,6],"_opt":10,sure:10,clash:1,track:0,buildrawmodel:6,compress:0,somethingtest:10,most:[10,0,6],hotfix:10,"class":[],renam:5,url:10,doc:[8,10],later:10,cover:[10,0,7],doe:[10,0,6],ext:0,declar:10,clean:[8,10],someth:10,cmakelist:[8,10],show:10,dbg:10,attachview:6,bring:10,add_doc_sourc:10,fine:10,find:10,involv:10,access:1,onli:[10,0,6],locat:8,explain:10,configur:[8,10],activ:10,state:8,should:[10,0],score:1,suppos:[10,1],templat:6,folder:10,move:10,hit:10,unus:10,variou:8,get:[8,10],cannot:10,loadpdb:6,report:[10,6],toolbox:10,requir:[8,10,1],add_changelog_to_doc:10,enabl:0,"2b1":8,gather:[10,7],whether:0,"float":1,integr:10,contain:[8,0,10,6,9],python_root:8,where:10,remov:8,view:10,user:[],set:[8,0,1,10,6],seq:10,allatom_scor:1,frame:10,around:10,ost_include_dir:10,see:10,temporarili:10,result:6,smng:5,arg:10,testcas:10,reserv:0,sport:10,awar:10,statu:10,detect:0,parent:6,review:10,version_great:10,enumer:10,label:10,figur:10,header_stage_path:10,subdir:10,simplest:10,awai:10,paramet:[0,1,6],approach:10,attribut:10,accord:10,extend:10,sole:10,cmake_cxx_compiler_vers:10,test_your_modul:10,solv:10,come:[10,0],popul:10,fail:[10,1],extens:[0,1],howev:1,disable_doctest:[8,10],promod3_version_patch:10,tutori:10,grain:10,fno:10,modif:6,whole:[10,6],pdb:[0,6],comment:10,sidechains_rst:10,"1ake":6,point:[10,1],cxx:10,overview:10,unittest:10,argumentpars:0,pop:10,walk:10,residu:[1,6],header:10,param:1,codetest:10,test_submodule1:10,assum:10,torsion:1,quit:10,template_structur:6,evalu:10,coupl:10,rebuild:[8,10],three:10,been:10,sinc:[10,0],compon:10,trigger:10,besid:8,treat:[10,6],basic:[8,10,6],ost_root:[8,10],addit:[10,0],seq_alg:10,tini:10,quickli:10,life:[10,1],convert:6,gap:[1,6],coordin:[],togeth:10,input:0,fileexist:0,educ:10,those:[8,10],"case":10,cmake_c_compiler_vers:10,look:[10,0],raw:9,testfileexistsfals:10,servic:10,properti:10,formatt:10,calcul:1,match:[10,6],abov:10,error:0,dost_root:[8,10],loop:9,stage_dir:10,spawn:10,opt:0,test_sidechain:10,helper:1,sidechain:[10,1,6],henc:10,non:10,itself:10,clutter:10,conf:[8,10],protein:[9,6],dedic:[8,10],sever:[8,10],reviv:10,develop:[],fedora:10,etc:10,author:10,parti:10,belong:10,savepdb:6,same:[8,1],"while":[10,0],member:[10,6],binari:10,drawback:10,admir:10,document:[8,5],conflict:10,complet:[10,6],http:10,optim:10,bienchen:10,argpars:0,hand:8,driven:10,rais:[1,6],disable_linkcheck:[8,10],initi:5,extern:10,respons:10,stack:10,expand:10,recent:10,off:[10,6],pymod:10,nevertheless:10,macro:10,builder:8,well:[8,10,1,6],exampl:[8,10,6],command:[],branchnam:10,thi:[0,1,6,7,8,9,10],endif:10,gzip:0,everyth:10,loss:10,spend:10,usual:[8,10],cmake_support:10,clash_scor:1,just:[8,10],entri:10,mol:10,reduced_scor:1,obtain:6,rest:[0,1,2,3,4,5,6,7,8,9,10],touch:10,web:8,loopcandid:1,restructuredtext:[0,1,2,3,4,5,6,7,8,9,10],makefil:[8,10],except:10,littl:10,add:[10,1],densiti:1,els:10,save:10,boost_root:8,bin:10,advis:10,format:10,handl:6,specimen:0,setup_stag:10,piec:10,source2:10,source1:10,elabor:10,bit:[8,10],cmake_compiler_is_gnucxx:10,mod:10,insert:[1,6],like:[10,6],lost:10,incred:6,manual:[8,10],html:[8,10,5],test_:10,test_awesome_featur:10,"boolean":0,either:[10,6],output:0,hook:10,page:[8,4,10],www:10,right:[8,10],often:0,some:[10,0],begin:10,resolv:10,intern:10,proper:10,thu:0,txt:[8,10],lead:0,avoid:10,per:[10,7],exit:0,select:6,recognis:10,sequenc:[9,1,6],condit:10,amino:6,core:0,plu:10,run:[8,10],cmake_source_dir:10,backbon:[1,6],step:10,repositori:[10,5],"__name__":10,cmake_minimum_requir:10,intervent:10,mmcif:0,chapter:10,src:10,about:[10,6],actual:[10,1],materi:10,manag:10,coars:10,commit:10,ost_doc_url:10,produc:8,within:[8,10],automat:[10,0],due:[1,6],promod3_version_str:10,empti:10,cmake_cxx_flag:10,cmake_module_path:10,announc:10,merg:10,git:[8,5],fill:10,log:10,wai:[8,10],support:0,renumb:6,custom:10,avail:[8,10],strict:10,sortbycorrel:1,much:[10,6],interfac:10,includ:[10,0,5],lot:[10,0],suit:10,forward:10,parse_arg:0,unfortun:10,"function":0,headach:10,enough:10,tupl:0,forg:10,wno:10,back:10,link:[8,10],atom:[1,6],don:[8,10],line:[],inlin:10,"true":[10,0,1,6],bug:10,pull:10,tripl:0,immedi:10,consist:10,possibl:[10,6],"default":[8,10],type:[0,1,6],insertinto:1,displai:0,below:10,otherwis:10,problem:10,similar:8,testutil:10,featur:10,creat:[8,10],"int":0,certain:8,utilis:[10,0],fellow:10,incomplet:6,exist:[10,0,1],file:8,deuterium:6,check:[8,0,10],probabl:[8,10],echo:10,again:[8,10],calpha:6,when:[10,6],detail:[10,6],other:[8,10,6],bool:[0,1],seem:10,test:8,you:[8,0,10],phosphoserin:6,correl:1,bb_list:1,toentiti:1,additional_make_clean_fil:10,determin:0,rawmodelingresult:6,devot:7,cmake_build_typ:10,add_subdirectori:10,briefli:10,consid:10,homolog:7,doptim:10,fatal_error:10,stai:10,reduc:1,sphinx:[0,1,2,3,4,5,6,7,8,9,10],algorithm:6,project_binary_dir:10,directori:8,descript:10,pseudo:6,rule:10,ignor:6,time:[10,6],push:10},objtypes:{"0":"py:module","1":"py:function","2":"py:method","3":"py:attribute","4":"py:class"},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","method","Python method"],"3":["py","attribute","Python attribute"],"4":["py","class","Python class"]},filenames:["core/argcheck","meld/loop","developers","users","index","changelog","meld/rawmodel","core/index","buildsystem","meld/index","contributing"],titles:["<tt class=\"docutils literal\"><span class=\"pre\">argcheck</span></tt> - Standard tests for command line arguments","Loop Modeling","Documentation For Developes","Documentation For Users","Welcome to ProMod3&#8217;s documentation!","Changelog","Raw Coordinate Modeling","<tt class=\"docutils literal\"><span class=\"pre\">core</span></tt> - ProMod3 core functionality","Building ProMod3","<tt class=\"docutils literal\"><span class=\"pre\">meld</span></tt> - Coordinate modeling","Contributing"],objects:{"promod3.core.argcheck":{FileExtension:[0,1,1,""],FileExists:[0,1,1,""]},"sm.meld.LoopCandidate":{correl:[1,3,1,""],clash_score:[1,3,1,""],allatom_score:[1,3,1,""],score:[1,3,1,""],reduced_score:[1,3,1,""],torsion_score:[1,3,1,""],InsertInto:[1,2,1,""],gap:[1,3,1,""],clash_sc_score:[1,3,1,""],ToEntity:[1,2,1,""],clash_bb_score:[1,3,1,""],coords:[1,3,1,""],packing_score:[1,3,1,""],RmsdTo:[1,2,1,""]},"sm.meld":{LoopCandidate:[1,4,1,""],LoopCandidates:[1,4,1,""],BuildRawModel:[6,1,1,""],RawModelingResult:[6,4,1,""]},"sm.meld.RawModelingResult":{model:[6,3,1,""],gaps:[6,3,1,""]},"sm.meld.LoopCandidates":{SortByScore:[1,2,1,""],model:[1,3,1,""],SortByCorrel:[1,2,1,""],Add:[1,2,1,""]},promod3:{core:[7,0,1,""],meld:[9,0,1,""]}},titleterms:{pre:[0,7,9],model:[9,1,6],own:10,modul:10,argument:0,indic:4,raw:6,api:[1,6],file:0,tabl:4,your:10,unit:10,git:10,cmake:[8,10],welcom:4,start:10,make:8,write:10,how:10,build:8,branch:10,test:[10,0],"import":8,document:[10,4,2,3],promod3:[8,4,7],meld:9,"function":7,core:7,liter:[0,7,9],argcheck:0,contribut:10,standard:0,coordin:[9,6],user:3,releas:5,develop:2,line:0,"class":[0,7,9],stage:10,target:8,changelog:5,directori:10,docutil:[0,7,9],introduct:[0,6],structur:10,command:0,span:[0,7,9],chang:5,loop:1,depend:8}})
\ No newline at end of file
+Search.setIndex({envversion:42,terms:{aln:6,all:[8,0,1,10,6],code:[8,0,10],forget:8,chain:[10,6],messi:10,skip:10,sidechains_unit_test:10,ost:[0,1,2,3,4,5,6,7,8,9,10],fragment:1,disable_document:[8,10],prefix:[10,0],concept:10,subclass:10,abil:10,follow:[10,6],middl:10,structuralgap:1,readabl:10,init:10,program:7,under:10,introduc:10,sourc:[8,0,10],everi:[10,6],string:0,fals:[10,0,1,6],internet:10,candid:1,worst:10,failur:[10,0],veri:[10,0],affect:10,runnabl:10,tri:6,four:1,magic:10,level:[8,10],did:10,list:[8,0,1,10,6],assertequ:10,item:[10,6],fileextens:0,smallish:[8,10],servic:10,dir:10,malici:10,promod_gcc_45:10,your_modul:10,direct:10,past:10,second:6,design:0,pass:10,acid:6,even:10,index:[10,4],what:[8,0,10],hide:10,sub:10,resembl:10,sum:1,invok:[8,10],anywai:10,current:10,delet:6,version:[8,10],"new":[10,1,6],boost:[0,1,2,3,4,5,6,7,8,9,10],method:1,meld:5,subtre:10,submodule1:10,honour:1,gener:10,never:10,here:[8,0,10,6],lib_stage_path:10,let:10,set_directory_properti:10,path:[8,0,10],along:10,modifi:[10,6,5],implicit:8,valu:0,wait:10,test_someth:10,search:[8,4,10],executable_output_path:10,setup_boost:10,promod3_version_minor:10,doctest:[8,10],action:10,implement:10,pack:1,honor:6,chanc:10,methionin:6,via:10,extra:10,solut:10,modul:5,submodul:10,unix:10,api:9,instal:8,total:1,unit:[],highli:8,fed:10,from:[0,1,5,6,8,9,10],describ:0,would:[8,10],regist:10,two:10,next:10,everybodi:10,few:[8,10,1,6],live:10,call:[8,10],recommend:8,loadalign:6,checkout:10,tell:[10,0],tightli:10,more:[8,10,6],sort:1,trustworthi:10,peopl:10,relat:10,notic:10,warn:10,flag:[10,0],include_directori:10,particular:10,known:0,rare:10,hold:[1,6],cach:[8,10],must:10,py_run:10,hous:10,setup:[10,5],work:[8,10],histori:10,remain:6,can:[8,0,10,6],torsion_scor:1,purpos:10,root:10,fetch:[10,0],def:10,control:10,give:10,process:10,add_argu:0,indic:[],topic:10,candit:1,want:[8,10],backbonelist:1,hydrogen:6,packing_scor:1,alwai:10,gcc:10,cours:10,end:[8,0,1,10],thing:[8,10],rather:10,peptid:[1,6],comfort:0,calpha_onli:6,"__init__":10,instead:[8,0,10],config:10,updat:10,python_vers:10,product:10,entityhandl:[1,6],rebas:10,mess:10,dive:10,after:[8,10],usabl:10,sortbyscor:1,befor:10,wrong:8,attent:10,date:10,multipl:10,data:10,grow:6,man:[8,10],"short":10,practic:10,third:10,mol_alg:10,sit:10,correspond:[10,1],stash:10,disabl:10,issu:[10,7],alias:10,"switch":10,maintain:10,environ:10,allow:10,order:1,origin:10,promod3_version_major:10,help:[8,10],over:[8,10,6],insight:10,increas:1,through:10,files_to_be_remov:10,gitignor:10,still:10,pointer:8,entiti:[10,1],output_vari:10,fix:[10,0],selenium:6,structuralgaplist:6,carri:[10,0],complex:10,onc:10,python_doc_url:10,therefor:10,easier:1,linkcheck:[8,10],them:10,good:10,"return":[0,1,6],thei:[10,1],python:[0,1,2,3,4,5,6,7,8,9,10],dai:0,exot:10,"break":10,framework:10,conquer:10,clash_bb_scor:1,verifi:0,front:[8,0,10],now:[10,6],minimalist:6,cmake_cxx_flags_releas:10,libexec_stage_path:10,name:[10,0],rmsd:1,anyth:[8,10],separ:10,easili:10,achiev:10,each:10,debug:10,found:10,went:10,higher:8,side:10,mean:[8,0],compil:10,monolith:10,parwis:6,strip:6,idea:[10,5],realli:[8,0,10],runtest:10,"static":10,coord:1,our:10,special:[8,10],out:[8,10],variabl:[8,10],shown:10,goe:[8,10],promod3_unittest:10,crucial:10,content:[10,4,2],reader:10,print:[8,6],got:8,exec_program:10,clone:10,common:[10,0],model:[],make_directori:10,runtimeerror:[1,6],given:[0,1],free:10,standard:[],headlin:10,reason:10,base:[0,6],put:[8,0,10],org:10,basi:10,could:[10,6],keep:10,turn:[10,0],clash_sc_scor:1,place:10,think:10,first:[10,5],oper:10,softwar:10,major:10,suffix:0,obviou:10,feel:10,sidechains_pymod:10,number:[1,6],yourself:[8,10],restrict:10,mai:[10,6],alreadi:10,done:10,messag:[10,0],blank:10,stabl:10,miss:[0,1,6],straight:10,exit_statu:0,differ:[8,10],script:[8,0,10],top:[8,10],perfectli:10,mkdir:10,system:[8,10,5],least:[8,10],tradition:0,attach:6,stori:10,master:10,too:10,termin:0,scheme:10,"final":[10,6],store:[10,1,6],shell:[8,0],option:[8,0,10],tool:0,copi:[10,6],restrict_chain:6,openstructur:[0,1,2,3,4,5,6,7,8,9,10],subsequ:6,pars:0,boost_include_dir:10,mostli:10,rst:10,conop:10,than:10,kind:10,setup_compiler_flag:10,whenev:10,provid:[8,10],seamlessli:10,tree:10,unrecognis:0,project:10,find_packag:10,reus:6,str:[0,6],were:10,posit:[0,1],toward:10,markup:10,python_binari:10,sometim:10,mind:10,argument:[],packag:10,manner:10,have:[8,10,1,6],"__main__":10,need:[8,0,10],fasta:6,tidi:10,cmake_current_source_dir:10,optimis:10,rmsdto:1,imagin:10,built:10,advic:10,inform:6,diverg:10,self:10,also:[8,0,10,6],without:[0,6],take:[10,6],which:[10,6,7],thoroughli:10,noth:10,singl:[10,6],"_opt":10,sure:10,clash:1,track:0,buildrawmodel:6,compress:0,somethingtest:10,most:[10,0,6],hotfix:10,"class":[],renam:5,url:10,doc:[8,10],later:10,cover:[10,0,7],doe:[10,0,6],ext:0,declar:10,clean:[8,10],usual:[8,10],someth:10,cmakelist:[8,10],show:10,dbg:10,attachview:6,bring:10,add_doc_sourc:10,fine:10,find:10,involv:10,access:1,onli:[10,0,6],locat:8,explain:10,configur:[8,10],activ:10,state:8,should:[10,0],score:1,suppos:[10,1],templat:6,folder:10,move:10,hit:10,unus:10,variou:8,get:[8,10],cannot:10,loadpdb:6,report:[10,6],toolbox:10,requir:[8,10,1],add_changelog_to_doc:10,enabl:0,"2b1":8,gather:[10,7],whether:0,"float":1,integr:10,contain:[8,0,10,6,9],python_root:8,where:10,remov:8,view:10,user:[],set:[8,0,1,10,6],seq:10,allatom_scor:1,frame:10,around:10,ost_include_dir:10,see:10,temporarili:10,result:6,smng:5,arg:10,testcas:10,reserv:0,sport:10,awar:10,statu:10,detect:0,parent:6,review:10,version_great:10,enumer:10,label:10,figur:10,header_stage_path:10,subdir:10,simplest:10,awai:10,paramet:[0,1,6],approach:10,attribut:10,accord:10,extend:10,sole:10,cmake_cxx_compiler_vers:10,test_your_modul:10,solv:10,come:[10,0],popul:[8,10],fail:[10,1],extens:[0,1],howev:1,disable_doctest:[8,10],promod3_version_patch:10,tutori:10,grain:10,fno:10,modif:6,whole:[10,6],pdb:[0,6],comment:10,sidechains_rst:10,"1ake":6,point:[10,1],cxx:10,overview:10,unittest:10,argumentpars:0,pop:10,walk:10,residu:[1,6],header:10,param:1,codetest:10,test_submodule1:10,assum:10,torsion:1,quit:10,template_structur:6,evalu:10,coupl:10,rebuild:[8,10],three:10,been:10,sinc:[10,0],compon:10,trigger:10,besid:8,treat:[10,6],basic:[8,10,6],ost_root:[8,10],addit:[10,0],seq_alg:10,tini:10,quickli:10,life:[10,1],convert:6,gap:[1,6],coordin:[],togeth:10,input:0,fileexist:0,educ:10,those:[8,10],"case":10,cmake_c_compiler_vers:10,look:[10,0],raw:9,testfileexistsfals:10,align:6,properti:10,strict:10,formatt:10,calcul:1,match:[10,6],abov:10,error:0,dost_root:[8,10],loop:9,stage_dir:10,spawn:10,opt:0,test_sidechain:10,helper:1,readi:8,sidechain:[10,1,6],henc:10,non:10,itself:10,clutter:10,conf:[8,10],protein:[9,6],dedic:[8,10],sever:[8,10],reviv:10,develop:[],fedora:10,etc:10,author:10,parti:10,belong:10,savepdb:6,same:[8,1],"while":[10,0],member:[10,6],binari:10,drawback:10,admir:10,document:5,conflict:10,complet:[10,6],http:10,optim:10,bienchen:10,argpars:0,hand:8,driven:10,rais:[1,6],disable_linkcheck:[8,10],initi:5,extern:10,respons:10,stack:10,expand:10,recent:10,off:[10,6],pymod:10,nevertheless:10,macro:10,builder:8,well:[8,10,1,6],exampl:[8,10,6],command:[],branchnam:10,thi:[0,1,6,7,8,9,10],endif:10,gzip:0,everyth:10,loss:10,spend:10,latest:8,cmake_support:10,clash_scor:1,just:[8,10],entri:10,mol:10,reduced_scor:1,obtain:6,rest:[0,1,2,3,4,5,6,7,8,9,10],touch:10,web:8,loopcandid:1,restructuredtext:[0,1,2,3,4,5,6,7,8,9,10],makefil:[8,10],except:10,littl:10,add:[10,1],densiti:1,els:10,save:10,boost_root:8,bin:10,advis:10,format:10,handl:6,specimen:0,setup_stag:10,piec:10,source2:10,source1:10,elabor:10,bit:[8,10],cmake_compiler_is_gnucxx:10,mod:10,insert:[1,6],like:[10,6],success:[0,1],incred:6,manual:[8,10],html:[8,10,5],test_:10,test_awesome_featur:10,"boolean":0,either:[10,6],output:0,hook:10,page:[8,4,10],www:10,right:[8,10],often:0,some:[10,0],begin:10,resolv:10,intern:10,proper:10,qmean:8,thu:0,txt:[8,10],lead:0,avoid:10,per:[10,7],exit:0,select:6,recognis:10,sequenc:[9,1,6],condit:10,amino:6,core:[],plu:10,run:10,cmake_source_dir:10,backbon:[1,6],step:10,repositori:[10,5],"__name__":10,cmake_minimum_requir:10,intervent:10,mmcif:0,chapter:10,src:10,about:[10,6],actual:[10,1],materi:10,manag:10,coars:10,commit:10,ost_doc_url:10,produc:8,qmean_root:8,within:[8,10],automat:[10,0],due:[1,6],promod3_version_str:10,empti:10,cmake_cxx_flag:10,cmake_module_path:10,announc:10,merg:10,git:5,fill:10,log:10,wai:[8,10],support:0,renumb:6,custom:10,avail:[8,10],lost:10,sortbycorrel:1,much:[10,6],interfac:10,includ:[10,0,5],lot:[10,0],suit:10,forward:10,parse_arg:0,unfortun:10,"function":[],headach:10,enough:10,tupl:0,forg:10,wno:10,back:10,link:[8,10],atom:[1,6],don:[8,10],line:[],inlin:10,"true":[10,0,1,6],bug:10,pull:10,tripl:0,immedi:10,consist:10,possibl:[10,6],"default":[8,10],type:[0,1,6],insertinto:1,displai:0,below:10,otherwis:10,problem:10,similar:8,testutil:10,featur:10,creat:[8,10],"int":0,certain:8,utilis:[10,0],fellow:10,incomplet:6,exist:[10,0,1],file:[],dqmean_root:8,deuterium:6,check:[8,0,10],probabl:[8,10],echo:10,again:[8,10],calpha:6,when:[10,6],detail:[10,6],other:[8,10,6],bool:[0,1],seem:10,test:[],you:[8,0,10],phosphoserin:6,correl:1,bb_list:1,toentiti:1,additional_make_clean_fil:10,determin:0,rawmodelingresult:6,devot:7,cmake_build_typ:10,add_subdirectori:10,briefli:10,consid:10,homolog:7,doptim:10,fatal_error:10,stai:10,reduc:1,sphinx:[0,1,2,3,4,5,6,7,8,9,10],algorithm:6,project_binary_dir:10,directori:[],descript:10,pseudo:6,rule:10,ignor:6,time:[10,6],push:10},objtypes:{"0":"py:module","1":"py:function","2":"py:method","3":"py:attribute","4":"py:class"},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","method","Python method"],"3":["py","attribute","Python attribute"],"4":["py","class","Python class"]},filenames:["core/argcheck","meld/loop","developers","users","index","changelog","meld/rawmodel","core/index","buildsystem","meld/index","contributing"],titles:["<tt class=\"docutils literal\"><span class=\"pre\">argcheck</span></tt> - Standard tests for command line arguments","Loop Modeling","Documentation For Developes","Documentation For Users","Welcome to ProMod3&#8217;s documentation!","Changelog","Raw Coordinate Modeling","<tt class=\"docutils literal\"><span class=\"pre\">core</span></tt> - ProMod3 core functionality","Building ProMod3","<tt class=\"docutils literal\"><span class=\"pre\">meld</span></tt> - Coordinate modeling","Contributing"],objects:{"promod3.core.argcheck":{FileExtension:[0,1,1,""],FileExists:[0,1,1,""]},"sm.meld.LoopCandidate":{correl:[1,3,1,""],clash_score:[1,3,1,""],allatom_score:[1,3,1,""],score:[1,3,1,""],reduced_score:[1,3,1,""],torsion_score:[1,3,1,""],InsertInto:[1,2,1,""],gap:[1,3,1,""],clash_sc_score:[1,3,1,""],ToEntity:[1,2,1,""],clash_bb_score:[1,3,1,""],coords:[1,3,1,""],packing_score:[1,3,1,""],RmsdTo:[1,2,1,""]},"sm.meld":{LoopCandidate:[1,4,1,""],LoopCandidates:[1,4,1,""],BuildRawModel:[6,1,1,""],RawModelingResult:[6,4,1,""]},"sm.meld.RawModelingResult":{model:[6,3,1,""],gaps:[6,3,1,""]},"sm.meld.LoopCandidates":{SortByScore:[1,2,1,""],model:[1,3,1,""],SortByCorrel:[1,2,1,""],Add:[1,2,1,""]},promod3:{core:[7,0,1,""],meld:[9,0,1,""]}},titleterms:{pre:[0,7,9],model:[9,1,6],own:10,modul:10,argument:0,indic:4,raw:6,api:[1,6],file:0,tabl:4,argcheck:0,your:10,unit:10,git:10,cmake:[8,10],welcom:4,start:10,make:8,write:10,how:10,build:8,branch:10,test:[10,0],"import":[],document:[10,4,2,3],promod3:[8,4,7],meld:9,"function":7,core:7,liter:[0,7,9],run:8,contribut:10,standard:0,coordin:[9,6],user:3,releas:5,develop:2,line:0,"class":[0,7,9],stage:10,target:[],changelog:5,directori:10,docutil:[0,7,9],introduct:[0,6],structur:10,command:0,span:[0,7,9],chang:5,loop:1,depend:8}})
\ No newline at end of file