Commit 21f4813c by Mustafa Tekpinar

If a pdbfile is provided, normweightmode becomes sstjetormaxtwocomponent…

If a pdbfile is provided, normweightmode becomes sstjetormaxtwocomponent automatically. Else, it is tjet.
parent 8603802b
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 22c71542c2e9339759d7f2af8f251cf8
config: fe2e7449c75c4a1331acfe403ef4e427
tags: 645f666f9bcd5a90fca523b33c5a78b7
......@@ -60,7 +60,7 @@ you may not need ‘sudo’ word before the docker command at all.
.. code:: bash
sudo docker run -ti --rm --mount type=bind,source=$PWD,target=/home/tekpinar/research/myexample \
tekpinar/esgemme-docker:v1.3.0
tekpinar/esgemme-docker:v1.4.0
You are in the container (your virtual operating system) now. You
created a folder called myexample in your container with the previous
......@@ -94,8 +94,7 @@ evolutionary information:
.. code:: bash
esgemme aliBLAT.fasta -r input -f aliBLAT.fasta \
--pdbfile blat-af2.pdb \
--normweightmode sstjetormax
--pdbfile blat-af2.pdb
Predicting the effect of a subset of single point mutations
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
......@@ -117,11 +116,11 @@ structural information. First, let's do it without structural information:
-m Stiffler_2015_BLAT_ECOLX.mut
You can include structural information in the following way:
.. code:: bash
esgemme aliBLAT.fasta -r input -f aliBLAT.fasta \
--pdbfile blat-af2.pdb \
--normweightmode sstjetormax \
-m Stiffler_2015_BLAT_ECOLX.mut
You will have BLAT_normPred_evolCombi.txt file in your folder. However, the output
......
......@@ -15,12 +15,30 @@ ESGEMME has the following external dependencies:
* java
* naccess: http://www.bioinf.manchester.ac.uk/naccess/
* muscle: https://www.drive5.com/muscle/
* seqinr R package: https://cran.r-project.org/web/packages/seqinr/index.html
* dssp for secondary structure prediction.
After you installed JET2 define a parameter called JET2_PATH inside your .profile file.
You can open .profile as follows:
These tools should be installed to be able to use ESGEMME.
.. code:: bash
gedit ~/.profile
You should add a command like below to the end of that file, save and exit.
.. code:: bash
export JET2_PATH=/home/tekpinar/JET2/
Please, do not forget to replace /home/tekpinar/JET2 with your own file path.
Then, source the saved .profile so that the environment variable will be taken into account:
.. code:: bash
source ~/.profile
JET2 is essential and it should be installed to be able to use ESGEMME.
Preparation of the environment and installation of ESGEMME
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
......@@ -54,13 +72,16 @@ Prepare your environment and install the required packages:
#Dssp installation
If you are using Ubuntu 20.04, you can install dssp by the following command
.. code:: bash
sudo apt-get install dssp
Otherwise, you can install it from the source by the following commands.
Please note that default dssp in Ubuntu 22.04 is not working properly.
.. code:: bash
wget https://github.com/cmbi/dssp/archive/refs/heads/master.zip && \
......@@ -75,6 +96,7 @@ Please note that default dssp in Ubuntu 22.04 is not working properly.
sudo rm -f master.zip
#HHSUITE installation
.. code:: bash
wget https://github.com/soedinglab/hh-suite/releases/download/v3.3.0/hhsuite-3.3.0-AVX2-Linux.tar.gz && \
......@@ -88,16 +110,43 @@ Please note that default dssp in Ubuntu 22.04 is not working properly.
Check the location of hhsuite folder and add it to your path
In my case it was in /home/tekpinar/research/lcqb folder. Therefore, I added the following line
to my .profile file.
PATH="/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/hhsuite/scripts:$PATH"
Open .profile file with gedit:
Then
source ~/.profile
.. code:: bash
gedit ~/.profile
Now, add the following line to the end of the file.
.. code:: bash
PATH="/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/hhsuite/scripts:$PATH"
Of course, your path will not be /home/tekpinar/research/lcqb/ and you have to modify the path according to
your system. Save the file and exit. Then,
.. code:: bash
source ~/.profile
#
cd ESGEMME
#Download ESGEMME from http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME repository and go inside the ESGEMME folder.!
You can download the master version using command line as follows:
.. code:: bash
git clone http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME.git
If you would like the development version:
.. code:: bash
git clone -b development http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME.git
.. code:: bash
cd ESGEMME
......@@ -115,6 +164,7 @@ file according to your system.
cd ../
#Installing the required R packages
.. code:: bash
sudo Rscript -e 'install.packages("seqinr", repos="http://cran.us.r-project.org", dependencies=TRUE)'
......
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '1.3.0',
VERSION: '1.4.0',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
......
......@@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Analyzing and Modifying the ESGEMME Output &mdash; esgemme 1.3.0 documentation</title>
<title>Analyzing and Modifying the ESGEMME Output &mdash; esgemme 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
......
......@@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Using ESGEMME via Docker &mdash; esgemme 1.3.0 documentation</title>
<title>Using ESGEMME via Docker &mdash; esgemme 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
......@@ -128,7 +128,7 @@ file in fasta format:</p>
<p>If it shows you a list of options, you are on a good track. On MacOS,
you may not need ‘sudo’ word before the docker command at all.</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>sudo docker run -ti --rm --mount <span class="nv">type</span><span class="o">=</span>bind,source<span class="o">=</span><span class="nv">$PWD</span>,target<span class="o">=</span>/home/tekpinar/research/myexample <span class="se">\</span>
tekpinar/esgemme-docker:v1.3.0
tekpinar/esgemme-docker:v1.4.0
</pre></div>
</div>
<p>You are in the container (your virtual operating system) now. You
......@@ -154,8 +154,7 @@ files.</p>
<p>If you want to utilize structural information (highly recommended) as well as
evolutionary information:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>esgemme aliBLAT.fasta -r input -f aliBLAT.fasta <span class="se">\</span>
--pdbfile blat-af2.pdb <span class="se">\</span>
--normweightmode sstjetormax
--pdbfile blat-af2.pdb
</pre></div>
</div>
</section>
......@@ -174,11 +173,12 @@ structural information. First, let’s do it without structural information:</p>
-m Stiffler_2015_BLAT_ECOLX.mut
</pre></div>
</div>
<p>You can include structural information in the following way:
.. code:: bash</p>
<blockquote>
<div><p>esgemme aliBLAT.fasta -r input -f aliBLAT.fasta –pdbfile blat-af2.pdb –normweightmode sstjetormax -m Stiffler_2015_BLAT_ECOLX.mut</p>
</div></blockquote>
<p>You can include structural information in the following way:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>esgemme aliBLAT.fasta -r input -f aliBLAT.fasta <span class="se">\</span>
--pdbfile blat-af2.pdb <span class="se">\</span>
-m Stiffler_2015_BLAT_ECOLX.mut
</pre></div>
</div>
<p>You will have BLAT_normPred_evolCombi.txt file in your folder. However, the output
format is completely different from the entire mutational landscape scanning file.
Each line of this file is a mutation and its predicted effect separated by a space.
......
......@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index &mdash; esgemme 1.3.0 documentation</title>
<title>Index &mdash; esgemme 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
......
......@@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to esgemme’s documentation! &mdash; esgemme 1.3.0 documentation</title>
<title>Welcome to esgemme’s documentation! &mdash; esgemme 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
......
......@@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Preparing Your Own Input &mdash; esgemme 1.3.0 documentation</title>
<title>Preparing Your Own Input &mdash; esgemme 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
......
......@@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Installation &mdash; esgemme 1.3.0 documentation</title>
<title>Installation &mdash; esgemme 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]>
......@@ -92,13 +92,24 @@ steps required to install it from the source.</p>
<ul>
<li><p>java</p></li>
<li><p>naccess: <a class="reference external" href="http://www.bioinf.manchester.ac.uk/naccess/">http://www.bioinf.manchester.ac.uk/naccess/</a></p></li>
<li><p>muscle: <a class="reference external" href="https://www.drive5.com/muscle/">https://www.drive5.com/muscle/</a></p></li>
</ul>
</li>
<li><p>seqinr R package: <a class="reference external" href="https://cran.r-project.org/web/packages/seqinr/index.html">https://cran.r-project.org/web/packages/seqinr/index.html</a></p></li>
<li><p>dssp for secondary structure prediction.</p></li>
</ul>
<p>These tools should be installed to be able to use ESGEMME.</p>
<p>After you installed JET2 define a parameter called JET2_PATH inside your .profile file.
You can open .profile as follows:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>gedit ~/.profile
</pre></div>
</div>
<p>You should add a command like below to the end of that file, save and exit.</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span><span class="nb">export</span> <span class="nv">JET2_PATH</span><span class="o">=</span>/home/tekpinar/JET2/
</pre></div>
</div>
<p>Please, do not forget to replace /home/tekpinar/JET2 with your own file path.</p>
<p>Then, source the saved .profile so that the environment variable will be taken into account:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span><span class="nb">source</span> ~/.profile
</pre></div>
</div>
<p>JET2 is essential and it should be installed to be able to use ESGEMME.</p>
</section>
<section id="preparation-of-the-environment-and-installation-of-esgemme">
<h2>Preparation of the environment and installation of ESGEMME<a class="headerlink" href="#preparation-of-the-environment-and-installation-of-esgemme" title="Permalink to this heading"></a></h2>
......@@ -126,39 +137,67 @@ sudo apt-get clean <span class="o">&amp;&amp;</span> <span class="se">\</span>
sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
</pre></div>
</div>
<p>#Dssp installation
If you are using Ubuntu 20.04, you can install dssp by the following command
.. code:: bash</p>
<blockquote>
<div><p>sudo apt-get install dssp</p>
</div></blockquote>
<p>#Dssp installation</p>
<p>If you are using Ubuntu 20.04, you can install dssp by the following command</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>sudo apt-get install dssp
</pre></div>
</div>
<p>Otherwise, you can install it from the source by the following commands.
Please note that default dssp in Ubuntu 22.04 is not working properly.
.. code:: bash</p>
<blockquote>
<div><p>wget <a class="reference external" href="https://github.com/cmbi/dssp/archive/refs/heads/master.zip">https://github.com/cmbi/dssp/archive/refs/heads/master.zip</a> &amp;&amp; unzip -o master.zip &amp;&amp; cd dssp-master/ &amp;&amp; ./autogen.sh &amp;&amp; ./configure &amp;&amp; make &amp;&amp; sudo make install &amp;&amp; sudo ln -s /usr/local/bin/mkdssp /usr/local/bin/dssp &amp;&amp; cd ../ &amp;&amp; sudo rm -rf dssp-master/ &amp;&amp; sudo rm -f master.zip</p>
</div></blockquote>
<p>#HHSUITE installation
.. code:: bash</p>
<blockquote>
<div><p>wget <a class="reference external" href="https://github.com/soedinglab/hh-suite/releases/download/v3.3.0/hhsuite-3.3.0-AVX2-Linux.tar.gz">https://github.com/soedinglab/hh-suite/releases/download/v3.3.0/hhsuite-3.3.0-AVX2-Linux.tar.gz</a> &amp;&amp; mkdir hhsuite &amp;&amp; mv hhsuite-3.3.0-AVX2-Linux.tar.gz hhsuite/ &amp;&amp; cd hhsuite &amp;&amp; tar xvfz hhsuite-3.3.0-AVX2-Linux.tar.gz &amp;&amp; rm -f hhsuite-3.3.0-AVX2-Linux.tar.gz</p>
</div></blockquote>
Please note that default dssp in Ubuntu 22.04 is not working properly.</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>wget https://github.com/cmbi/dssp/archive/refs/heads/master.zip <span class="o">&amp;&amp;</span> <span class="se">\</span>
unzip -o master.zip <span class="o">&amp;&amp;</span> <span class="nb">cd</span> dssp-master/ <span class="o">&amp;&amp;</span> <span class="se">\</span>
./autogen.sh <span class="o">&amp;&amp;</span> <span class="se">\</span>
./configure <span class="o">&amp;&amp;</span> <span class="se">\</span>
make <span class="o">&amp;&amp;</span> <span class="se">\</span>
sudo make install <span class="o">&amp;&amp;</span> <span class="se">\</span>
sudo ln -s /usr/local/bin/mkdssp /usr/local/bin/dssp <span class="o">&amp;&amp;</span> <span class="se">\</span>
<span class="nb">cd</span> ../ <span class="o">&amp;&amp;</span> <span class="se">\</span>
sudo rm -rf dssp-master/ <span class="o">&amp;&amp;</span> <span class="se">\</span>
sudo rm -f master.zip
</pre></div>
</div>
<p>#HHSUITE installation</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>wget https://github.com/soedinglab/hh-suite/releases/download/v3.3.0/hhsuite-3.3.0-AVX2-Linux.tar.gz <span class="o">&amp;&amp;</span> <span class="se">\</span>
mkdir hhsuite <span class="o">&amp;&amp;</span> <span class="se">\</span>
mv hhsuite-3.3.0-AVX2-Linux.tar.gz hhsuite/ <span class="o">&amp;&amp;</span> <span class="se">\</span>
<span class="nb">cd</span> hhsuite <span class="o">&amp;&amp;</span> <span class="se">\</span>
tar xvfz hhsuite-3.3.0-AVX2-Linux.tar.gz <span class="o">&amp;&amp;</span> <span class="se">\</span>
rm -f hhsuite-3.3.0-AVX2-Linux.tar.gz
</pre></div>
</div>
<p>#Add it to your path permanently inside .bashrc or .profile or .bash_profile
Check the location of hhsuite folder and add it to your path
In my case it was in /home/tekpinar/research/lcqb folder. Therefore, I added the following line
to my .profile file.
PATH=”/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/hhsuite/scripts:$PATH”</p>
<p>Then
source ~/.profile</p>
Open .profile file with gedit:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>gedit ~/.profile
</pre></div>
</div>
<p>Now, add the following line to the end of the file.</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span><span class="nv">PATH</span><span class="o">=</span><span class="s2">&quot;/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/hhsuite/scripts:</span><span class="nv">$PATH</span><span class="s2">&quot;</span>
</pre></div>
</div>
<p>Of course, your path will not be /home/tekpinar/research/lcqb/ and you have to modify the path according to
your system. Save the file and exit. Then,</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span><span class="nb">source</span> ~/.profile
</pre></div>
</div>
<p>#</p>
<blockquote>
<div><p>cd ESGEMME</p>
</div></blockquote>
<p>#Download ESGEMME from <a class="reference external" href="http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME">http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME</a> repository and go inside the ESGEMME folder.!
.. code:: bash</p>
<blockquote>
<div><p>cd ESGEMME</p>
</div></blockquote>
You can download the master version using command line as follows:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>git clone http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME.git
</pre></div>
</div>
<p>If you would like the development version:</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>git clone -b development http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME.git
</pre></div>
</div>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span><span class="nb">cd</span> ESGEMME
</pre></div>
</div>
</section>
<section id="configuring-default-conf-file">
<h2>Configuring default.conf file<a class="headerlink" href="#configuring-default-conf-file" title="Permalink to this heading"></a></h2>
......@@ -170,11 +209,10 @@ file according to your system.</p>
<span class="nb">cd</span> ../
</pre></div>
</div>
<p>#Installing the required R packages
.. code:: bash</p>
<blockquote>
<div><p>sudo Rscript -e ‘install.packages(“seqinr”, repos=”<a class="reference external" href="http://cran.us.r-project.org">http://cran.us.r-project.org</a>”, dependencies=TRUE)’</p>
</div></blockquote>
<p>#Installing the required R packages</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>sudo Rscript -e <span class="s1">&#39;install.packages(&quot;seqinr&quot;, repos=&quot;http://cran.us.r-project.org&quot;, dependencies=TRUE)&#39;</span>
</pre></div>
</div>
<p>#Installing secondary programs such as ev_couplings to obtain MSA files.</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>wget https://github.com/debbiemarkslab/plmc/archive/refs/heads/master.zip <span class="o">&amp;&amp;</span> <span class="se">\</span>
unzip -o master.zip <span class="o">&amp;&amp;</span> <span class="se">\</span>
......
......@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Search &mdash; esgemme 1.3.0 documentation</title>
<title>Search &mdash; esgemme 1.4.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
......
Search.setIndex({"docnames": ["analysis", "docker", "index", "input-preparation", "installation"], "filenames": ["analysis.rst", "docker.rst", "index.rst", "input-preparation.rst", "installation.rst"], "titles": ["Analyzing and Modifying the ESGEMME Output", "Using ESGEMME via Docker", "Welcome to esgemme\u2019s documentation!", "Preparing Your Own Input", "Installation"], "terms": {"There": [0, 3], "hardcod": 0, "limit": 0, "howev": [0, 1, 3], "valu": 0, "rang": 0, "between": 0, "12": 0, "2": 0, "gener": 0, "The": [0, 1, 3], "lower": 0, "mean": 0, "impact": [0, 1, 3], "while": 0, "close": 0, "0": [0, 1, 3, 4], "doe": [0, 3], "have": [0, 1, 3, 4], "ani": 0, "signific": 0, "we": [0, 1, 3, 4], "should": [0, 4], "note": [0, 4], "most": 0, "ar": [0, 1, 3, 4], "deleteri": 0, "alwai": 0, "case": [0, 1, 4], "By": 0, "default": [0, 2], "onli": [0, 1, 4], "combin": 0, "independ": 0, "epistat": 0, "three": 0, "file": [0, 1, 2, 3], "myprot_normpred_evolcombi": 0, "txt": [0, 1], "myprot": 0, "short": 0, "name": [0, 1], "msa": [0, 1, 2, 4], "your": [0, 1, 2, 4], "protein": [0, 1, 3], "contain": [0, 1, 3, 4], "20": [0, 4], "row": 0, "amino": 0, "acid": 0, "alphabet": 0, "order": [0, 1], "l": [0, 3], "column": [0, 3], "where": [0, 3], "number": 0, "interest": [0, 1, 3], "sinc": [0, 4], "thi": [0, 1, 3, 4], "horizont": 0, "easi": 0, "read": 0, "r": [0, 1, 4], "python": [0, 4], "difficult": 0, "find": 0, "you": [0, 1, 3, 4], "myprot_normpred_evolcombitranspos": 0, "As": [0, 1], "impli": 0, "transpos": 0, "version": 0, "result": 0, "It": [0, 3, 4], "easier": 0, "just": 0, "check": [0, 1, 4], "correspond": 0, "prepar": [1, 2], "imag": [0, 3, 4], "oranges_r": 0, "matplotlib": 0, "color": 0, "map": 0, "can": [0, 1, 3, 4], "chang": [0, 1, 3], "ad": [0, 3, 4], "colormap": 0, "turbo_r": 0, "more": [0, 3], "fanci": 0, "look": 0, "dure": 0, "call": [0, 1, 4], "argument": 0, "accept": 0, "all": [0, 1, 3, 4], "If": [0, 1, 4], "want": [0, 1, 3], "see": [0, 1, 3], "contribut": 0, "well": [0, 1], "add": [0, 4], "verbos": 0, "true": [0, 4], "us": [0, 2, 3, 4], "predict": [0, 4], "same": [0, 1], "format": [0, 1, 3], "a2c": 0, "6": 0, "23": 0, "a2d": 0, "1": [0, 3], "d286f": 0, "need": 1, "instal": [1, 2], "machin": 1, "consult": 1, "follow": [1, 3, 4], "page": [1, 2], "http": [1, 3, 4], "doc": 1, "com": [1, 3, 4], "i": [1, 3, 4], "am": 1, "assum": 1, "some": 1, "basic": 1, "familiar": 1, "linux": [1, 4], "unix": 1, "maco": 1, "termin": [1, 3], "command": [1, 3, 4], "let": [1, 3], "s": [1, 3, 4], "start": [1, 3], "our": [1, 3, 4], "favorit": 1, "app": 1, "must": 1, "creat": [1, 3], "folder": [1, 3, 4], "tutori": 1, "go": [1, 3, 4], "empti": 1, "mkdir": [1, 4], "cd": [1, 3, 4], "download": [1, 4], "sampl": 1, "provid": 1, "repositori": [1, 4], "exercis": 1, "first": 1, "sequenc": [1, 3], "align": [1, 3], "fasta": [1, 3], "wget": [1, 4], "gitlab": [1, 4], "lcqb": [1, 4], "upmc": [1, 4], "fr": [1, 4], "tekpinar": [1, 3, 4], "raw": [1, 2], "8d766d4d11af0e93c9da8fc2c5cc1bfc457d2936": 1, "aliblat": 1, "don": 1, "t": 1, "try": 1, "curl": 1, "pleas": [1, 3, 4], "verifi": 1, "now": [1, 3], "pdb": [1, 2], "databank": 1, "blat": 1, "af2": 1, "In": [1, 4], "make": [1, 3, 4], "sure": [1, 3], "sudo": [1, 3, 4], "h": 1, "show": 1, "list": [1, 3, 4], "option": 1, "good": 1, "track": 1, "On": 1, "mai": 1, "word": 1, "befor": [1, 3], "ti": [1, 3], "rm": [1, 3, 4], "mount": [1, 3], "type": [1, 3], "bind": [1, 3], "sourc": [1, 3, 4], "pwd": [1, 3], "target": [1, 3], "home": [1, 3, 4], "research": [1, 3, 4], "myexampl": [1, 3], "v1": [1, 3], "3": [1, 3, 4], "virtual": 1, "oper": 1, "system": [1, 4], "previou": 1, "when": 1, "ls": [1, 3], "suppos": [1, 3], "host": 1, "place": 1, "step": [1, 3, 4], "evolutionari": [1, 4], "inform": 1, "from": [1, 3, 4], "an": [1, 3, 4], "esgemme_path": [], "py": [], "f": [1, 4], "after": 1, "few": [1, 3], "minut": [1, 3], "least": 1, "two": 1, "blat_normpred_evolcombi": 1, "png": [0, 1], "util": [1, 4], "structur": [1, 3, 4], "highli": 1, "recommend": [1, 4], "pdbfile": 1, "normweightmod": 1, "sstjetormax": 1, "bunch": 1, "mut": 1, "simpl": 1, "text": 1, "each": 1, "line": [1, 4], "d26a": 1, "fortun": 1, "master": [1, 4], "stiffler_2015_blat_ecolx": 1, "similar": 1, "possibl": 1, "wai": 1, "do": [1, 3], "without": 1, "m": 1, "includ": 1, "code": [1, 4], "bash": [1, 4], "output": [1, 2], "complet": 1, "differ": 1, "scan": 1, "its": [1, 4], "separ": 1, "space": 1, "addit": 1, "won": 1, "like": [1, 3], "sometim": 1, "doubl": 1, "tripl": 1, "perform": 1, "e26d": 1, "y44r": 1, "e56n": 1, "a77f": 1, "h94v": 1, "second": 1, "colon": 1, "charact": 1, "via": 2, "docker": [2, 3, 4], "requir": [2, 3, 4], "get": [2, 4], "exampl": [2, 3], "input": 2, "data": 2, "singl": 2, "point": 2, "mutat": [2, 3], "calcul": 2, "multipl": [2, 3], "run": [2, 3], "sever": 2, "job": 2, "analyz": 2, "modifi": 2, "score": 2, "Their": 2, "interpret": 2, "entir": 2, "landscap": 2, "select": [2, 3], "own": 2, "colabfold": 2, "depend": [2, 3], "environ": 2, "configur": 2, "conf": 2, "index": [2, 4], "modul": 2, "search": 2, "understand": 3, "certain": 3, "gap": 3, "quickest": 3, "method": 3, "obtain": [3, 4], "both": 3, "web": [3, 4], "site": [3, 4], "colab": 3, "googl": 3, "github": [3, 4], "sokrypton": 3, "blob": 3, "main": 3, "alphafold2": 3, "ipynb": 3, "sign": 3, "gmail": 3, "account": 3, "click": 3, "connect": 3, "button": 3, "top": 3, "right": 3, "hand": 3, "side": 3, "clean": [3, 4], "query_sequ": 3, "box": 3, "past": 3, "For": 3, "me": 3, "adenyl": 3, "kinas": 3, "ak": 3, "my": [3, 4], "www": [3, 4], "rcsb": 3, "org": [3, 4], "entri": 3, "4ake": 3, "displai": 3, "jobnam": 3, "someth": 3, "sens": 3, "menu": 3, "bar": 3, "notebook": 3, "edit": 3, "view": 3, "insert": 3, "runtim": 3, "tool": [3, 4], "help": 3, "process": 3, "take": 3, "hour": 3, "size": 3, "give": 3, "a3m": 3, "up": 3, "5": 3, "model": 3, "put": 3, "directori": 3, "unfortun": 3, "those": 3, "gui": 3, "program": [3, 4], "ugen": 3, "jalview": 3, "labor": 3, "intens": 3, "procedur": 3, "here": [3, 4], "small": 3, "develop": 3, "esgemm": 3, "script": [3, 4], "hhsuit": [3, 4], "convert": 3, "reformat": 3, "pl": 3, "fa": 3, "final": 3, "demust": 3, "removegap": 3, "o": [3, 4], "ake_nogap": 3, "congratul": 3, "ii": 3, "myprotein": 3, "implement": 4, "ha": 4, "been": 4, "test": 4, "mani": 4, "determin": 4, "user": 4, "come": 4, "extern": 4, "joint": 4, "tree": 4, "jet2": 4, "java": 4, "naccess": 4, "bioinf": 4, "manchest": 4, "ac": 4, "uk": 4, "muscl": 4, "drive5": 4, "seqinr": 4, "packag": 4, "cran": 4, "project": 4, "html": 4, "dssp": 4, "secondari": 4, "These": 4, "abl": 4, "defin": [], "export": [], "variabl": [], "path": 4, "insid": 4, "import": 4, "essenti": 4, "paramet": 4, "part": [3, 4], "intern": 4, "etc": 4, "correct": 4, "softwar": 4, "section": 4, "accord": 4, "ubuntu": 4, "22": 4, "04": 4, "apt": 4, "updat": 4, "fix": 4, "miss": 4, "y": 4, "properti": 4, "common": 4, "autotool": 4, "dev": 4, "automak": 4, "build": 4, "python3": 4, "pip": 4, "base": 4, "core": 4, "jre": 4, "ncbi": 4, "blast": 4, "nano": 4, "less": 4, "csh": 4, "hmmer": 4, "libboost": 4, "rf": 4, "var": 4, "lib": 4, "tmp": 4, "otherwis": 4, "work": 4, "properli": 4, "cmbi": 4, "archiv": 4, "ref": 4, "head": 4, "zip": 4, "unzip": 4, "autogen": 4, "sh": 4, "ln": 4, "usr": 4, "local": 4, "bin": 4, "mkdssp": 4, "soedinglab": 4, "hh": 4, "suit": 4, "releas": 4, "v3": 4, "avx2": 4, "tar": 4, "gz": 4, "mv": 4, "xvfz": 4, "perman": 4, "bashrc": 4, "profil": 4, "bash_profil": 4, "locat": 4, "wa": 4, "therefor": 4, "Then": 4, "rscript": 4, "e": 4, "repo": 4, "ev_coupl": 4, "pip3": 4, "debbiemarkslab": 4, "plmc": 4, "openmp32": 4, "cp": 4, "one": 3, "last": 3, "reach": 3, "goal": 3, "id": 3, "descript": 3, "too": 3, "long": 3, "shorten": 3, "them": 3, "awk": 3, "begin": 3, "fs": 3, "nf": 3, "printf": 3, "n": 3, "els": 3, "print": 3, "ake_nogaps_short_nam": 3, "recheck": 3, "remov": 3, "extra": 3}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"analyz": 0, "modifi": 0, "esgemm": [0, 1, 2, 4], "output": 0, "raw": 0, "score": 0, "Their": 0, "interpret": 0, "entir": [0, 1], "singl": [0, 1], "point": [0, 1], "mutat": [0, 1], "landscap": [0, 1], "calcul": [0, 1], "select": 0, "multipl": [0, 1], "us": 1, "via": 1, "docker": 1, "requir": 1, "get": 1, "exampl": 1, "input": [1, 3], "data": 1, "obtain": 1, "predict": 1, "effect": 1, "subset": 1, "run": 1, "sever": 1, "job": 1, "welcom": 2, "s": 2, "document": 2, "content": 2, "indic": 2, "tabl": 2, "prepar": [3, 4], "your": 3, "own": 3, "msa": 3, "pdb": 3, "colabfold": 3, "instal": 4, "depend": 4, "sourc": [], "code": [], "environ": 4, "configur": 4, "default": 4, "conf": 4, "file": 4}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 56}})
\ No newline at end of file
Search.setIndex({"docnames": ["analysis", "docker", "index", "input-preparation", "installation"], "filenames": ["analysis.rst", "docker.rst", "index.rst", "input-preparation.rst", "installation.rst"], "titles": ["Analyzing and Modifying the ESGEMME Output", "Using ESGEMME via Docker", "Welcome to esgemme\u2019s documentation!", "Preparing Your Own Input", "Installation"], "terms": {"There": [0, 3], "hardcod": 0, "limit": 0, "howev": [0, 1, 3], "valu": 0, "rang": 0, "between": 0, "12": 0, "2": 0, "gener": 0, "The": [0, 1, 3], "lower": 0, "mean": 0, "impact": [0, 1, 3], "while": 0, "close": 0, "0": [0, 1, 3, 4], "doe": [0, 3], "have": [0, 1, 3, 4], "ani": 0, "signific": 0, "we": [0, 1, 3, 4], "should": [0, 4], "note": [0, 4], "most": 0, "ar": [0, 1, 3, 4], "deleteri": 0, "alwai": 0, "case": [0, 1, 4], "By": 0, "default": [0, 2], "onli": [0, 1, 4], "combin": 0, "independ": 0, "epistat": 0, "three": 0, "file": [0, 1, 2, 3], "myprot_normpred_evolcombi": 0, "txt": [0, 1], "myprot": 0, "short": 0, "name": [0, 1], "msa": [0, 1, 2, 4], "your": [0, 1, 2, 4], "protein": [0, 1, 3], "contain": [0, 1, 3, 4], "20": [0, 4], "row": 0, "amino": 0, "acid": 0, "alphabet": 0, "order": [0, 1], "l": [0, 3], "column": [0, 3], "where": [0, 3], "number": 0, "interest": [0, 1, 3], "sinc": [0, 4], "thi": [0, 1, 3, 4], "horizont": 0, "easi": 0, "read": 0, "r": [0, 1, 4], "python": [0, 4], "difficult": 0, "find": 0, "you": [0, 1, 3, 4], "myprot_normpred_evolcombitranspos": 0, "As": [0, 1], "impli": 0, "transpos": 0, "version": [0, 4], "result": 0, "It": [0, 3, 4], "easier": 0, "just": 0, "check": [0, 1, 4], "correspond": 0, "prepar": [1, 2], "imag": [0, 3, 4], "oranges_r": 0, "matplotlib": 0, "color": 0, "map": 0, "can": [0, 1, 3, 4], "chang": [0, 1, 3], "ad": [0, 3, 4], "colormap": 0, "turbo_r": 0, "more": [0, 3], "fanci": 0, "look": 0, "dure": 0, "call": [0, 1, 4], "argument": 0, "accept": 0, "all": [0, 1, 3, 4], "If": [0, 1, 4], "want": [0, 1, 3], "see": [0, 1, 3], "contribut": 0, "well": [0, 1], "add": [0, 4], "verbos": 0, "true": [0, 4], "us": [0, 2, 3, 4], "predict": 0, "same": [0, 1], "format": [0, 1, 3], "a2c": 0, "6": 0, "23": 0, "a2d": 0, "1": [0, 3], "d286f": 0, "need": 1, "instal": [1, 2], "machin": 1, "consult": 1, "follow": [1, 3, 4], "page": [1, 2], "http": [1, 3, 4], "doc": 1, "com": [1, 3, 4], "i": [1, 3, 4], "am": 1, "assum": 1, "some": 1, "basic": 1, "familiar": 1, "linux": [1, 4], "unix": 1, "maco": 1, "termin": [1, 3], "command": [1, 3, 4], "let": [1, 3], "s": [1, 3, 4], "start": [1, 3], "our": [1, 3, 4], "favorit": 1, "app": 1, "must": 1, "creat": [1, 3], "folder": [1, 3, 4], "tutori": 1, "go": [1, 3, 4], "empti": 1, "mkdir": [1, 4], "cd": [1, 3, 4], "download": [1, 4], "sampl": 1, "provid": 1, "repositori": [1, 4], "exercis": 1, "first": 1, "sequenc": [1, 3], "align": [1, 3], "fasta": [1, 3], "wget": [1, 4], "gitlab": [1, 4], "lcqb": [1, 4], "upmc": [1, 4], "fr": [1, 4], "tekpinar": [1, 3, 4], "raw": [1, 2], "8d766d4d11af0e93c9da8fc2c5cc1bfc457d2936": 1, "aliblat": 1, "don": 1, "t": 1, "try": 1, "curl": 1, "pleas": [1, 3, 4], "verifi": 1, "now": [1, 3, 4], "pdb": [1, 2], "databank": 1, "blat": 1, "af2": 1, "In": [1, 4], "make": [1, 3, 4], "sure": [1, 3], "sudo": [1, 3, 4], "h": 1, "show": 1, "list": [1, 3, 4], "option": 1, "good": 1, "track": 1, "On": 1, "mai": 1, "word": 1, "befor": [1, 3], "ti": [1, 3], "rm": [1, 3, 4], "mount": [1, 3], "type": [1, 3], "bind": [1, 3], "sourc": [1, 3, 4], "pwd": [1, 3], "target": [1, 3], "home": [1, 3, 4], "research": [1, 3, 4], "myexampl": [1, 3], "v1": [1, 3], "3": [3, 4], "virtual": 1, "oper": 1, "system": [1, 4], "previou": 1, "when": 1, "ls": [1, 3], "suppos": [1, 3], "host": 1, "place": 1, "step": [1, 3, 4], "evolutionari": [1, 4], "inform": 1, "from": [1, 3, 4], "an": [1, 3, 4], "esgemme_path": [], "py": [], "f": [1, 4], "after": [1, 4], "few": [1, 3], "minut": [1, 3], "least": 1, "two": 1, "blat_normpred_evolcombi": 1, "png": [0, 1], "util": [1, 4], "structur": [1, 3], "highli": 1, "recommend": [1, 4], "pdbfile": 1, "normweightmod": [], "sstjetormax": [], "bunch": 1, "mut": 1, "simpl": 1, "text": 1, "each": 1, "line": [1, 4], "d26a": 1, "fortun": 1, "master": [1, 4], "stiffler_2015_blat_ecolx": 1, "similar": 1, "possibl": 1, "wai": 1, "do": [1, 3, 4], "without": 1, "m": 1, "includ": 1, "code": [], "bash": [], "output": [1, 2], "complet": 1, "differ": 1, "scan": 1, "its": [1, 4], "separ": 1, "space": 1, "addit": 1, "won": 1, "like": [1, 3, 4], "sometim": 1, "doubl": 1, "tripl": 1, "perform": 1, "e26d": 1, "y44r": 1, "e56n": 1, "a77f": 1, "h94v": 1, "second": 1, "colon": 1, "charact": 1, "via": 2, "docker": [2, 3, 4], "requir": [2, 3, 4], "get": [2, 4], "exampl": [2, 3], "input": 2, "data": 2, "singl": 2, "point": 2, "mutat": [2, 3], "calcul": 2, "multipl": [2, 3], "run": [2, 3], "sever": 2, "job": 2, "analyz": 2, "modifi": [2, 4], "score": 2, "Their": 2, "interpret": 2, "entir": 2, "landscap": 2, "select": [2, 3], "own": [2, 4], "colabfold": 2, "depend": [2, 3], "environ": 2, "configur": 2, "conf": 2, "index": 2, "modul": 2, "search": 2, "understand": 3, "certain": 3, "gap": 3, "quickest": 3, "method": 3, "obtain": [3, 4], "both": 3, "web": [3, 4], "site": [3, 4], "colab": 3, "googl": 3, "github": [3, 4], "sokrypton": 3, "blob": 3, "main": 3, "alphafold2": 3, "ipynb": 3, "sign": 3, "gmail": 3, "account": [3, 4], "click": 3, "connect": 3, "button": 3, "top": 3, "right": 3, "hand": 3, "side": 3, "clean": [3, 4], "query_sequ": 3, "box": 3, "past": 3, "For": 3, "me": 3, "adenyl": 3, "kinas": 3, "ak": 3, "my": [3, 4], "www": [3, 4], "rcsb": 3, "org": [3, 4], "entri": 3, "4ake": 3, "displai": 3, "jobnam": 3, "someth": 3, "sens": 3, "menu": 3, "bar": 3, "notebook": 3, "edit": 3, "view": 3, "insert": 3, "runtim": 3, "tool": 3, "help": 3, "process": 3, "take": 3, "hour": 3, "size": 3, "give": 3, "a3m": 3, "up": 3, "5": 3, "model": 3, "put": 3, "directori": 3, "unfortun": 3, "those": 3, "gui": 3, "program": [3, 4], "ugen": 3, "jalview": 3, "labor": 3, "intens": 3, "procedur": 3, "here": [3, 4], "small": 3, "develop": [3, 4], "esgemm": 3, "script": [3, 4], "hhsuit": [3, 4], "convert": 3, "reformat": 3, "pl": 3, "fa": 3, "final": 3, "demust": 3, "removegap": 3, "o": [3, 4], "ake_nogap": 3, "congratul": 3, "ii": 3, "myprotein": 3, "implement": 4, "ha": 4, "been": 4, "test": 4, "mani": 4, "determin": 4, "user": 4, "come": 4, "extern": 4, "joint": 4, "tree": 4, "jet2": 4, "java": 4, "naccess": 4, "bioinf": 4, "manchest": 4, "ac": 4, "uk": 4, "muscl": 4, "drive5": [], "seqinr": 4, "packag": 4, "cran": 4, "project": 4, "html": [], "dssp": 4, "secondari": 4, "These": [], "abl": 4, "defin": 4, "export": 4, "variabl": 4, "path": 4, "insid": 4, "import": 4, "essenti": 4, "paramet": 4, "part": [3, 4], "intern": 4, "etc": 4, "correct": 4, "softwar": 4, "section": 4, "accord": 4, "ubuntu": 4, "22": 4, "04": 4, "apt": 4, "updat": 4, "fix": 4, "miss": 4, "y": 4, "properti": 4, "common": 4, "autotool": 4, "dev": 4, "automak": 4, "build": 4, "python3": 4, "pip": 4, "base": 4, "core": 4, "jre": 4, "ncbi": 4, "blast": 4, "nano": 4, "less": 4, "csh": 4, "hmmer": 4, "libboost": 4, "rf": 4, "var": 4, "lib": 4, "tmp": 4, "otherwis": 4, "work": 4, "properli": 4, "cmbi": 4, "archiv": 4, "ref": 4, "head": 4, "zip": 4, "unzip": 4, "autogen": 4, "sh": 4, "ln": 4, "usr": 4, "local": 4, "bin": 4, "mkdssp": 4, "soedinglab": 4, "hh": 4, "suit": 4, "releas": 4, "v3": 4, "avx2": 4, "tar": 4, "gz": 4, "mv": 4, "xvfz": 4, "perman": 4, "bashrc": 4, "profil": 4, "bash_profil": 4, "locat": 4, "wa": 4, "therefor": 4, "Then": 4, "rscript": 4, "e": 4, "repo": 4, "ev_coupl": 4, "pip3": 4, "debbiemarkslab": 4, "plmc": 4, "openmp32": 4, "cp": 4, "one": 3, "last": 3, "reach": 3, "goal": 3, "id": 3, "descript": 3, "too": 3, "long": 3, "shorten": 3, "them": 3, "awk": 3, "begin": 3, "fs": 3, "nf": 3, "printf": 3, "n": 3, "els": 3, "print": 3, "ake_nogaps_short_nam": 3, "recheck": 3, "remov": 3, "extra": 3, "jet2_path": 4, "open": 4, "gedit": 4, "below": 4, "end": 4, "save": 4, "exit": 4, "forget": 4, "replac": 4, "so": 4, "taken": 4, "Of": 4, "cours": 4, "would": 4, "git": 4, "clone": 4, "b": 4, "4": 1}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"analyz": 0, "modifi": 0, "esgemm": [0, 1, 2, 4], "output": 0, "raw": 0, "score": 0, "Their": 0, "interpret": 0, "entir": [0, 1], "singl": [0, 1], "point": [0, 1], "mutat": [0, 1], "landscap": [0, 1], "calcul": [0, 1], "select": 0, "multipl": [0, 1], "us": 1, "via": 1, "docker": 1, "requir": 1, "get": 1, "exampl": 1, "input": [1, 3], "data": 1, "obtain": 1, "predict": 1, "effect": 1, "subset": 1, "run": 1, "sever": 1, "job": 1, "welcom": 2, "s": 2, "document": 2, "content": 2, "indic": 2, "tabl": 2, "prepar": [3, 4], "your": 3, "own": 3, "msa": 3, "pdb": 3, "colabfold": 3, "instal": 4, "depend": 4, "sourc": [], "code": [], "environ": 4, "configur": 4, "default": 4, "conf": 4, "file": 4}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 56}})
\ No newline at end of file
......@@ -66,8 +66,8 @@
\newlabel{installation:installing-the-dependencies}{{4.1}{9}{Installing the dependencies:}{section.4.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}Preparation of the environment and installation of ESGEMME}{9}{section.4.2}\protected@file@percent }
\newlabel{installation:preparation-of-the-environment-and-installation-of-esgemme}{{4.2}{9}{Preparation of the environment and installation of ESGEMME}{section.4.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Configuring default.conf file}{10}{section.4.3}\protected@file@percent }
\newlabel{installation:configuring-default-conf-file}{{4.3}{10}{Configuring default.conf file}{section.4.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Configuring default.conf file}{11}{section.4.3}\protected@file@percent }
\newlabel{installation:configuring-default-conf-file}{{4.3}{11}{Configuring default.conf file}{section.4.3}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Indices and tables}{13}{chapter.5}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
......
# Fdb version 3
["makeindex esgemme.idx"] 1685453958 "esgemme.idx" "esgemme.ind" "esgemme" 1687444567
"esgemme.idx" 1687444567 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
["makeindex esgemme.idx"] 1685453958 "esgemme.idx" "esgemme.ind" "esgemme" 1690799114
"esgemme.idx" 1690799114 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
(generated)
"esgemme.ilg"
"esgemme.ind"
["pdflatex"] 1687444567 "esgemme.tex" "esgemme.pdf" "esgemme" 1687444567
["pdflatex"] 1690799114 "esgemme.tex" "esgemme.pdf" "esgemme" 1690799114
"/etc/texmf/web2c/texmf.cnf" 1686915816 475 c0e671620eb5563b2130f56340a5fde8 ""
"/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 ""
"/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm" 1136768653 3584 adb004a0c8e7c46ee66cad73671f37b4 ""
......@@ -140,13 +140,13 @@
"/usr/share/texmf/web2c/texmf.cnf" 1644012257 39432 7155514e09a3d69036fac785183a21c2 ""
"/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1686916200 128028 f533b797fba58d231669ea19e894e23e ""
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1686916204 1405647 c55a0c388547b619d75d774fd8f2cdb7 ""
"esgemme.aux" 1687444567 6419 c32f711de29f755f1a8f1c5ee6077663 "pdflatex"
"esgemme.aux" 1690799114 6419 037bf31d3f88d011950af339c73af556 "pdflatex"
"esgemme.ind" 1686042164 0 d41d8cd98f00b204e9800998ecf8427e "makeindex esgemme.idx"
"esgemme.out" 1687444567 4691 484d3d84b85998e14ab085f1c3f73044 "pdflatex"
"esgemme.tex" 1687444567 23794 9a708ce4fd09d7c14a8bc1cefc956d6a ""
"esgemme.toc" 1687444567 1865 658ec1920d49935d82736b327430eefc "pdflatex"
"esgemme.out" 1690799114 4691 484d3d84b85998e14ab085f1c3f73044 "pdflatex"
"esgemme.tex" 1690799113 25966 8a5eac4dcdc00629d4123d916f953398 ""
"esgemme.toc" 1690799114 1865 e1a0930e11e4c97727c86b4733bd4152 "pdflatex"
"sphinx.sty" 1657784170 12780 919e6ba449302e2597e7722681a087c6 ""
"sphinxhighlight.sty" 1687444567 6679 76d10c62e0f0661410b46f5db6118e26 ""
"sphinxhighlight.sty" 1690799113 6679 76d10c62e0f0661410b46f5db6118e26 ""
"sphinxlatexadmonitions.sty" 1657784170 6238 2d867d769abf3f72abc17ef52adff78b ""
"sphinxlatexcontainers.sty" 1686042164 901 d3a3a1b7b2547f47ade2499350b5c420 ""
"sphinxlatexgraphics.sty" 1686042164 4840 a9578332b6f3b35e198751fb632c9b79 ""
......@@ -161,7 +161,7 @@
"sphinxlatexstyletext.sty" 1657784170 6177 c18841ce3fafc366cd3b145f8faa4c37 ""
"sphinxlatextables.sty" 1657784170 21848 2827eb0b11b99b185a8b77317d3e131c ""
"sphinxmanual.cls" 1686042164 4241 7b0d7a37df7b5715fb0dbd585c52ecdb ""
"sphinxmessages.sty" 1687444567 745 3f5fcd6cdd7964ed608767954a8ced6f ""
"sphinxmessages.sty" 1690799113 745 3f5fcd6cdd7964ed608767954a8ced6f ""
"sphinxoptionsgeometry.sty" 1686042164 2061 47bb34b8ed8a78823eb0c886abfb9f4d ""
"sphinxoptionshyperref.sty" 1686042164 1094 79beb8b8a3f10784f8cce804e0f9d3aa ""
"sphinxpackagefootnote.sty" 1657784170 15217 dd26fe418b6fb1b26b18f042a7f43d40 ""
......
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex 2023.6.16) 22 JUN 2023 16:36
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex 2023.6.16) 31 JUL 2023 12:25
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
......@@ -799,14 +799,14 @@ Chapter 3.
]
LaTeX Font Info: Trying to load font information for TS1+txtt on input line
455.
454.
(/usr/share/texlive/texmf-dist/tex/latex/txfonts/ts1txtt.fd
File: ts1txtt.fd 2000/12/15 v3.1
)
LaTeX Font Info: Font shape `T1/txtt/m/it' in size <10> not available
(Font) Font shape `T1/txtt/m/sl' tried instead on input line 456.
(Font) Font shape `T1/txtt/m/sl' tried instead on input line 455.
Underfull \hbox (badness 10000) in paragraph at lines 460--464
Underfull \hbox (badness 10000) in paragraph at lines 459--463
[]\T1/qtm/m/n/10 Con-grat-u-la-tions! Now, you have all the in-put files re-qui
red for ES-GEMME: I. An in-put MSA:
[]
......@@ -814,18 +814,12 @@ red for ES-GEMME: I. An in-put MSA:
[8]
Chapter 4.
LaTeX Font Info: Trying to load font information for TS1+qtm on input line 4
82.
81.
(/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd
File: ts1qtm.fd 2009/09/25 v1.2 font definition file for TS1/qtm
) [9
]
Underfull \hbox (badness 5490) in paragraph at lines 561--563
\T1/qtm/m/n/10 master/ && ./au-to-gen.sh && ./con-fig-ure && make && sudo make
in-stall && sudo ln -s
[]
[10] [11] [12
] [10] [11] [12
]
Chapter 5.
......@@ -836,11 +830,11 @@ Package rerunfilecheck Info: File `esgemme.out' has not changed.
Here is how much of TeX's memory you used:
14657 strings out of 480247
233344 string characters out of 5896151
571746 words of memory out of 5000000
597746 words of memory out of 5000000
32185 multiletter control sequences out of 15000+600000
520869 words of font info for 70 fonts, out of 8000000 for 9000
15 hyphenation exceptions out of 8191
70i,11n,76p,563b,568s stack positions out of 5000i,500n,10000p,200000b,80000s
70i,11n,76p,432b,568s stack positions out of 5000i,500n,10000p,200000b,80000s
{/usr/share/texmf/fonts/enc/dvips/tex-gyre/q-ts1.enc}{/usr/share/texmf/fonts/
enc/dvips/tex-gyre/q-ec.enc}</usr/share/texlive/texmf-dist/fonts/type1/public/a
msfonts/cm/cmmi5.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts
......@@ -851,10 +845,10 @@ usr/share/texlive/texmf-dist/fonts/type1/public/txfonts/t1xbtt.pfb></usr/share/
texlive/texmf-dist/fonts/type1/public/txfonts/t1xtt.pfb></usr/share/texlive/tex
mf-dist/fonts/type1/public/txfonts/t1xtt.pfb></usr/share/texlive/texmf-dist/fon
ts/type1/public/txfonts/tcxtt.pfb>
Output written on esgemme.pdf (17 pages, 165015 bytes).
Output written on esgemme.pdf (17 pages, 164984 bytes).
PDF statistics:
264 PDF objects out of 1000 (max. 8388607)
225 compressed objects within 3 object streams
259 PDF objects out of 1000 (max. 8388607)
220 compressed objects within 3 object streams
51 named destinations out of 1000 (max. 500000)
173 words of extra memory for PDF output out of 10000 (max. 10000000)
......@@ -61,8 +61,8 @@
\title{esgemme}
\date{Jun 22, 2023}
\release{1.3.0}
\date{Jul 31, 2023}
\release{1.4.0}
\author{Mustafa Tekpinar}
\newcommand{\sphinxlogo}{\vbox{}}
\renewcommand{\releasename}{Release}
......@@ -155,7 +155,7 @@ you may not need ‘sudo’ word before the docker command at all.
\begin{sphinxVerbatim}[commandchars=\\\{\}]
sudo docker run \PYGZhy{}ti \PYGZhy{}\PYGZhy{}rm \PYGZhy{}\PYGZhy{}mount \PYG{n+nv}{type}\PYG{o}{=}bind,source\PYG{o}{=}\PYG{n+nv}{\PYGZdl{}PWD},target\PYG{o}{=}/home/tekpinar/research/myexample \PYG{l+s+se}{\PYGZbs{}}
tekpinar/esgemme\PYGZhy{}docker:v1.3.0
tekpinar/esgemme\PYGZhy{}docker:v1.4.0
\end{sphinxVerbatim}
\sphinxAtStartPar
......@@ -195,8 +195,7 @@ evolutionary information:
\begin{sphinxVerbatim}[commandchars=\\\{\}]
esgemme aliBLAT.fasta \PYGZhy{}r input \PYGZhy{}f aliBLAT.fasta \PYG{l+s+se}{\PYGZbs{}}
\PYGZhy{}\PYGZhy{}pdbfile blat\PYGZhy{}af2.pdb \PYG{l+s+se}{\PYGZbs{}}
\PYGZhy{}\PYGZhy{}normweightmode sstjetormax
\PYGZhy{}\PYGZhy{}pdbfile blat\PYGZhy{}af2.pdb
\end{sphinxVerbatim}
......@@ -223,12 +222,12 @@ esgemme aliBLAT.fasta \PYGZhy{}r input \PYGZhy{}f aliBLAT.fasta \PYG{l+s+se}{\PY
\sphinxAtStartPar
You can include structural information in the following way:
.. code:: bash
\begin{quote}
\sphinxAtStartPar
esgemme aliBLAT.fasta \sphinxhyphen{}r input \sphinxhyphen{}f aliBLAT.fasta \textendash{}pdbfile blat\sphinxhyphen{}af2.pdb \textendash{}normweightmode sstjetormax \sphinxhyphen{}m Stiffler\_2015\_BLAT\_ECOLX.mut
\end{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
esgemme aliBLAT.fasta \PYGZhy{}r input \PYGZhy{}f aliBLAT.fasta \PYG{l+s+se}{\PYGZbs{}}
\PYGZhy{}\PYGZhy{}pdbfile blat\PYGZhy{}af2.pdb \PYG{l+s+se}{\PYGZbs{}}
\PYGZhy{}m Stiffler\PYGZus{}2015\PYGZus{}BLAT\PYGZus{}ECOLX.mut
\end{sphinxVerbatim}
\sphinxAtStartPar
You will have BLAT\_normPred\_evolCombi.txt file in your folder. However, the output
......@@ -491,24 +490,37 @@ java
\sphinxAtStartPar
naccess: \sphinxurl{http://www.bioinf.manchester.ac.uk/naccess/}
\item {}
\sphinxAtStartPar
muscle: \sphinxurl{https://www.drive5.com/muscle/}
\end{itemize}
\end{itemize}
\item {}
\sphinxAtStartPar
seqinr R package: \sphinxurl{https://cran.r-project.org/web/packages/seqinr/index.html}
After you installed JET2 define a parameter called JET2\_PATH inside your .profile file.
You can open .profile as follows:
\begin{sphinxVerbatim}[commandchars=\\\{\}]
gedit \PYGZti{}/.profile
\end{sphinxVerbatim}
\item {}
\sphinxAtStartPar
dssp for secondary structure prediction.
You should add a command like below to the end of that file, save and exit.
\end{itemize}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
\PYG{n+nb}{export} \PYG{n+nv}{JET2\PYGZus{}PATH}\PYG{o}{=}/home/tekpinar/JET2/
\end{sphinxVerbatim}
\sphinxAtStartPar
Please, do not forget to replace /home/tekpinar/JET2 with your own file path.
\sphinxAtStartPar
Then, source the saved .profile so that the environment variable will be taken into account:
\begin{sphinxVerbatim}[commandchars=\\\{\}]
\PYG{n+nb}{source} \PYGZti{}/.profile
\end{sphinxVerbatim}
\sphinxAtStartPar
These tools should be installed to be able to use ESGEMME.
JET2 is essential and it should be installed to be able to use ESGEMME.
\section{Preparation of the environment and installation of ESGEMME}
......@@ -544,43 +556,68 @@ sudo rm \PYGZhy{}rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
\sphinxAtStartPar
\#Dssp installation
If you are using Ubuntu 20.04, you can install dssp by the following command
.. code:: bash
\begin{quote}
\sphinxAtStartPar
sudo apt\sphinxhyphen{}get install dssp
\end{quote}
If you are using Ubuntu 20.04, you can install dssp by the following command
\begin{sphinxVerbatim}[commandchars=\\\{\}]
sudo apt\PYGZhy{}get install dssp
\end{sphinxVerbatim}
\sphinxAtStartPar
Otherwise, you can install it from the source by the following commands.
Please note that default dssp in Ubuntu 22.04 is not working properly.
.. code:: bash
\begin{quote}
\sphinxAtStartPar
wget \sphinxurl{https://github.com/cmbi/dssp/archive/refs/heads/master.zip} \&\& unzip \sphinxhyphen{}o master.zip \&\& cd dssp\sphinxhyphen{}master/ \&\& ./autogen.sh \&\& ./configure \&\& make \&\& sudo make install \&\& sudo ln \sphinxhyphen{}s /usr/local/bin/mkdssp /usr/local/bin/dssp \&\& cd ../ \&\& sudo rm \sphinxhyphen{}rf dssp\sphinxhyphen{}master/ \&\& sudo rm \sphinxhyphen{}f master.zip
\end{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
wget https://github.com/cmbi/dssp/archive/refs/heads/master.zip \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
unzip \PYGZhy{}o master.zip \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{n+nb}{cd} dssp\PYGZhy{}master/ \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
./autogen.sh \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
./configure \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
make \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
sudo make install \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
sudo ln \PYGZhy{}s /usr/local/bin/mkdssp /usr/local/bin/dssp \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
\PYG{n+nb}{cd} ../ \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
sudo rm \PYGZhy{}rf dssp\PYGZhy{}master/ \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
sudo rm \PYGZhy{}f master.zip
\end{sphinxVerbatim}
\sphinxAtStartPar
\#HHSUITE installation
.. code:: bash
\begin{quote}
\sphinxAtStartPar
wget \sphinxurl{https://github.com/soedinglab/hh-suite/releases/download/v3.3.0/hhsuite-3.3.0-AVX2-Linux.tar.gz} \&\& mkdir hhsuite \&\& mv hhsuite\sphinxhyphen{}3.3.0\sphinxhyphen{}AVX2\sphinxhyphen{}Linux.tar.gz hhsuite/ \&\& cd hhsuite \&\& tar xvfz hhsuite\sphinxhyphen{}3.3.0\sphinxhyphen{}AVX2\sphinxhyphen{}Linux.tar.gz \&\& rm \sphinxhyphen{}f hhsuite\sphinxhyphen{}3.3.0\sphinxhyphen{}AVX2\sphinxhyphen{}Linux.tar.gz
\end{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
wget https://github.com/soedinglab/hh\PYGZhy{}suite/releases/download/v3.3.0/hhsuite\PYGZhy{}3.3.0\PYGZhy{}AVX2\PYGZhy{}Linux.tar.gz \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
mkdir hhsuite \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
mv hhsuite\PYGZhy{}3.3.0\PYGZhy{}AVX2\PYGZhy{}Linux.tar.gz hhsuite/ \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
\PYG{n+nb}{cd} hhsuite \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
tar xvfz hhsuite\PYGZhy{}3.3.0\PYGZhy{}AVX2\PYGZhy{}Linux.tar.gz \PYG{o}{\PYGZam{}\PYGZam{}} \PYG{l+s+se}{\PYGZbs{}}
rm \PYGZhy{}f hhsuite\PYGZhy{}3.3.0\PYGZhy{}AVX2\PYGZhy{}Linux.tar.gz
\end{sphinxVerbatim}
\sphinxAtStartPar
\#Add it to your path permanently inside .bashrc or .profile or .bash\_profile
Check the location of hhsuite folder and add it to your path
In my case it was in /home/tekpinar/research/lcqb folder. Therefore, I added the following line
to my .profile file.
PATH=”/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/hhsuite/scripts:\$PATH”
Open .profile file with gedit:
\begin{sphinxVerbatim}[commandchars=\\\{\}]
gedit \PYGZti{}/.profile
\end{sphinxVerbatim}
\sphinxAtStartPar
Then
source \textasciitilde{}/.profile
Now, add the following line to the end of the file.
\begin{sphinxVerbatim}[commandchars=\\\{\}]
\PYG{n+nv}{PATH}\PYG{o}{=}\PYG{l+s+s2}{\PYGZdq{}}\PYG{l+s+s2}{/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/hhsuite/scripts:}\PYG{n+nv}{\PYGZdl{}PATH}\PYG{l+s+s2}{\PYGZdq{}}
\end{sphinxVerbatim}
\sphinxAtStartPar
Of course, your path will not be /home/tekpinar/research/lcqb/ and you have to modify the path according to
your system. Save the file and exit. Then,
\begin{sphinxVerbatim}[commandchars=\\\{\}]
\PYG{n+nb}{source} \PYGZti{}/.profile
\end{sphinxVerbatim}
\sphinxAtStartPar
\#
......@@ -592,12 +629,22 @@ cd ESGEMME
\sphinxAtStartPar
\#Download ESGEMME from \sphinxurl{http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME} repository and go inside the ESGEMME folder.!
.. code:: bash
\begin{quote}
You can download the master version using command line as follows:
\begin{sphinxVerbatim}[commandchars=\\\{\}]
git clone http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME.git
\end{sphinxVerbatim}
\sphinxAtStartPar
cd ESGEMME
\end{quote}
If you would like the development version:
\begin{sphinxVerbatim}[commandchars=\\\{\}]
git clone \PYGZhy{}b development http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME.git
\end{sphinxVerbatim}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
\PYG{n+nb}{cd} ESGEMME
\end{sphinxVerbatim}
\section{Configuring default.conf file}
......@@ -615,12 +662,10 @@ pip3 install \PYGZhy{}e . \PYG{o}{\PYGZam{}\PYGZam{}}\PYG{l+s+se}{\PYGZbs{}}
\sphinxAtStartPar
\#Installing the required R packages
.. code:: bash
\begin{quote}
\sphinxAtStartPar
sudo Rscript \sphinxhyphen{}e ‘install.packages(“seqinr”, repos=”\sphinxurl{http://cran.us.r-project.org}”, dependencies=TRUE)’
\end{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
sudo Rscript \PYGZhy{}e \PYG{l+s+s1}{\PYGZsq{}install.packages(\PYGZdq{}seqinr\PYGZdq{}, repos=\PYGZdq{}http://cran.us.r\PYGZhy{}project.org\PYGZdq{}, dependencies=TRUE)\PYGZsq{}}
\end{sphinxVerbatim}
\sphinxAtStartPar
\#Installing secondary programs such as ev\_couplings to obtain MSA files.
......
......@@ -16,5 +16,5 @@
\contentsline {chapter}{\numberline {4}Installation}{9}{chapter.4}%
\contentsline {section}{\numberline {4.1}Installing the dependencies:}{9}{section.4.1}%
\contentsline {section}{\numberline {4.2}Preparation of the environment and installation of ESGEMME}{9}{section.4.2}%
\contentsline {section}{\numberline {4.3}Configuring default.conf file}{10}{section.4.3}%
\contentsline {section}{\numberline {4.3}Configuring default.conf file}{11}{section.4.3}%
\contentsline {chapter}{\numberline {5}Indices and tables}{13}{chapter.5}%
......@@ -23,7 +23,7 @@ copyright = '2023, Mustafa Tekpinar'
author = 'Mustafa Tekpinar'
# The full version, including alpha/beta/rc tags
release = '1.3.0'
release = '1.4.0'
# -- General configuration ---------------------------------------------------
......
......@@ -60,7 +60,7 @@ you may not need ‘sudo’ word before the docker command at all.
.. code:: bash
sudo docker run -ti --rm --mount type=bind,source=$PWD,target=/home/tekpinar/research/myexample \
tekpinar/esgemme-docker:v1.3.0
tekpinar/esgemme-docker:v1.4.0
You are in the container (your virtual operating system) now. You
created a folder called myexample in your container with the previous
......@@ -94,8 +94,7 @@ evolutionary information:
.. code:: bash
esgemme aliBLAT.fasta -r input -f aliBLAT.fasta \
--pdbfile blat-af2.pdb \
--normweightmode sstjetormax
--pdbfile blat-af2.pdb
Predicting the effect of a subset of single point mutations
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
......@@ -117,11 +116,11 @@ structural information. First, let's do it without structural information:
-m Stiffler_2015_BLAT_ECOLX.mut
You can include structural information in the following way:
.. code:: bash
esgemme aliBLAT.fasta -r input -f aliBLAT.fasta \
--pdbfile blat-af2.pdb \
--normweightmode sstjetormax \
-m Stiffler_2015_BLAT_ECOLX.mut
You will have BLAT_normPred_evolCombi.txt file in your folder. However, the output
......
......@@ -72,13 +72,16 @@ Prepare your environment and install the required packages:
#Dssp installation
If you are using Ubuntu 20.04, you can install dssp by the following command
.. code:: bash
sudo apt-get install dssp
Otherwise, you can install it from the source by the following commands.
Please note that default dssp in Ubuntu 22.04 is not working properly.
.. code:: bash
wget https://github.com/cmbi/dssp/archive/refs/heads/master.zip && \
......@@ -93,6 +96,7 @@ Please note that default dssp in Ubuntu 22.04 is not working properly.
sudo rm -f master.zip
#HHSUITE installation
.. code:: bash
wget https://github.com/soedinglab/hh-suite/releases/download/v3.3.0/hhsuite-3.3.0-AVX2-Linux.tar.gz && \
......@@ -117,6 +121,7 @@ Now, add the following line to the end of the file.
.. code:: bash
PATH="/home/tekpinar/research/lcqb/hhsuite/bin:/home/tekpinar/research/lcqb/hhsuite/scripts:$PATH"
Of course, your path will not be /home/tekpinar/research/lcqb/ and you have to modify the path according to
your system. Save the file and exit. Then,
......@@ -132,6 +137,7 @@ your system. Save the file and exit. Then,
You can download the master version using command line as follows:
.. code:: bash
git clone http://gitlab.lcqb.upmc.fr/tekpinar/ESGEMME.git
If you would like the development version:
......
......@@ -972,7 +972,7 @@ def parse_command_line():
parser.add_argument('--normweightmode', dest='normweightmode', type=str, \
help="It can be one of these: 'tjet', 'cv', 'pc',"+\
"max, tjetormax or sstjetormaxtwocomponent. Default is 'tjet'.",
required=False, default="sstjetormaxtwocomponent")
required=False, default="tjet")
parser.add_argument('--verbose', dest='verbose', type=bool, \
help="This argument controls amount of the output. Default is 'False'."+\
......@@ -1441,6 +1441,14 @@ def main():
args = parse_command_line()
# If a structure file is provided, utilize structural information.
if(args.pdbfile==None):
args.normweightmode='tjet'
print("Using '{}' as normalization weight.".format(args.normweightmode))
else:
args.normweightmode='sstjetormaxtwocomponent'
print("Using '{}' as normalization weight.".format(args.normweightmode))
doit(args.input, args.mutations, args.retrievingMethod, args.blastFile,\
args.fastaFile, args.nIter,args.NSeqs, args.jetfile, args.pdbfile,\
args.normweightmode, args.alphabet, args.verbose, args.offset, \
......
......@@ -29,7 +29,7 @@ then
echo "Using blat-af2.pdb for the structural feature calculations!"
echo "Entire mutational map of the protein will be calculated!"
esgemme ../data/aliBLAT.fasta -r input -f ../data/aliBLAT.fasta \
--pdbfile ../data/blat-af2.pdb --normweightmode max
--pdbfile ../data/blat-af2.pdb
elif [ "$1" == "withpdb-withmutfile" ]
then
......@@ -38,28 +38,7 @@ then
echo "Using blat-af2.pdb for the structural feature calculations!"
echo "Only effects of mutations specified in the Stiffler_2015_BLAT_ECOLX.mut file will be calculated!"
esgemme ../data/aliBLAT.fasta -r input -f ../data/aliBLAT.fasta \
--pdbfile ../data/blat-af2.pdb --normweightmode max \
-m ../data/Stiffler_2015_BLAT_ECOLX.mut
elif [ "$1" == "sstjetormax" ]
then
#Please note that CV isa structural feature and it can not be calculated if you don't specify a pdb file.
echo "Using blat-af2.pdb for the secondary structure based calculations!"
echo "Only effects of mutations specified in the Stiffler_2015_BLAT_ECOLX.mut file will be calculated!"
esgemme ../data/aliBLAT.fasta -r input -f ../data/aliBLAT.fasta \
--pdbfile ../data/blat-af2.pdb --normweightmode sstjetormax \
-m ../data/Stiffler_2015_BLAT_ECOLX.mut
demust compare -i ../data/BLAT_ECOLX_Stiffler_2015_experimental.dat --itype singleline -j BLAT_normPred_evolCombi.txt --jtype singleline
elif [ "$1" == "tjetormax" ]
then
#Please note that CV isa structural feature and it can not be calculated if you don't specify a pdb file.
echo "Using blat-af2.pdb for the secondary structure based calculations!"
echo "Only effects of mutations specified in the Stiffler_2015_BLAT_ECOLX.mut file will be calculated!"
esgemme ../data/aliBLAT.fasta -r input -f ../data/aliBLAT.fasta \
--pdbfile ../data/blat-af2.pdb --normweightmode tjetormax \
-m ../data/Stiffler_2015_BLAT_ECOLX.mut
--pdbfile ../data/blat-af2.pdb -m ../data/Stiffler_2015_BLAT_ECOLX.mut
demust compare -i ../data/BLAT_ECOLX_Stiffler_2015_experimental.dat --itype singleline -j BLAT_normPred_evolCombi.txt --jtype singleline
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment