Commit 0c7fe1f3 by Mustafa Tekpinar

Removed ESGEMME_PATH dependecy for R files.

Since esgemme calls two R scripts, namely
pred.R and computePred.R, to do the calculations,
I added them as package resource. They are copied
to the folder where ESGEMME is initiated. I'm
trying to remove this kind of path dependencies
to make the program automatically installable and
portable.
parent a17f0f90
...@@ -15,7 +15,7 @@ COPY ./ESGEMME/requirements.txt ./ESGEMME/requirements.txt ...@@ -15,7 +15,7 @@ COPY ./ESGEMME/requirements.txt ./ESGEMME/requirements.txt
COPY ./ESGEMME/README.md ./ESGEMME/README.md COPY ./ESGEMME/README.md ./ESGEMME/README.md
COPY ./ESGEMME/pred.R ./ESGEMME/pred.R COPY ./ESGEMME/pred.R ./ESGEMME/pred.R
COPY ./ESGEMME/computePred.R ./ESGEMME/computePred.R COPY ./ESGEMME/computePred.R ./ESGEMME/computePred.R
COPY ./ESGEMME/default.conf ./ESGEMME/default.conf COPY ./ESGEMME/esgemme/default.conf ./ESGEMME/esgemme/default.conf
COPY ./ESGEMME/data/ ./ESGEMME/data/ COPY ./ESGEMME/data/ ./ESGEMME/data/
COPY ./ESGEMME/examples/ ./ESGEMME/examples/ COPY ./ESGEMME/examples/ ./ESGEMME/examples/
COPY ./demust/ ./demust/ COPY ./demust/ ./demust/
......
Analyzing the ESGEMME output Analyzing and Modifying the ESGEMME Output
---------------------------- ==========================================
By default, ESGEMME will output the following files: \* Raw ESGEMME Scores and Their Interpretation
myProt_normPred_evolEpi.txt \* myProt_normPred_evolInd.txt \* -------------------------------------------
myProt_normPred_evolCombi.txt There is not a hardcoded limit for raw ESGEMME scores. However, the values
range between [-12, 2] generally. The lower values mean the mutations is impactful,
The most important output file is **myProt_normPred_evolCombi.txt**. The while values close to 0 means the mutation does not have any significant impact.
values of interest are the normalized predictions (normPred). Each file
contains a 20 x n matrix, where n is the number of positions (columns) in the We should note that most of the 'impactful' mutations are deleterious but
query sequence. If the user provides her/his own list of mutations, then it is not always the case.
only the global epistatic model will be run and the output file will
contain 2 columns, the first one with the mutations, the second one with Entire Single Point Mutation Landscape Calculations
the normalized predicted effects. ---------------------------------------------------
By default, ESGEMME will only output the combined (independent
and epistatic) scores*:
There are three output files:
#. myProt_normPred_evolCombi.txt
myProt is the short name in the MSA file for your protein. The
'myProt_normPred_evolCombi.txt' file contains 20 rows (for 20 amino acids
in alphabetical order) and L columns, where L is the number of amino acids
in your protein of interest. Since this file is horizontal, it is easy to
read it in R or Python but difficult to find the mutations you are interested.
#. myProt_normPred_evolCombiTransposed.txt
As the name implies, this is the transposed version of the combined results.
It is easier to find the mutations you are interested in this file. Just
check the row corresponding to the mutation.
#. myProt_normPred_evolCombi.Preparing
This is the image file of the combined results. It selects 'Oranges_r'
matplotlib color map by default. You can change it by adding '--colormap turbo_r'
for a more fancy look during the esgemme call. It --colormap argument accepts
all the color maps in matplotlib.
Note*: If you want to see epistatic and independent contributions as well,
you should add '--verbose true' argument while calling esgemme.
Selected Single Point or Multiple Point Mutation Calculations
-------------------------------------------------------------
Since you used a mutation file to predict mutations, you will have your combined (epistatic+independent)
results in the same format, such as :
*. myProt_normPred_evolCombi.txt:
A2C -6.23
A2D -1.23
.
.
.
D286F -0.23
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" /> <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" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Analyzing the ESGEMME output &mdash; esgemme 1.3.0 documentation</title> <title>Analyzing and Modifying the ESGEMME Output &mdash; esgemme 1.3.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" /> <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<!--[if lt IE 9]> <!--[if lt IE 9]>
...@@ -45,7 +45,12 @@ ...@@ -45,7 +45,12 @@
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> <p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul class="current"> <ul class="current">
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li> <li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Analyzing the ESGEMME output</a></li> <li class="toctree-l1 current"><a class="current reference internal" href="#">Analyzing and Modifying the ESGEMME Output</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#raw-esgemme-scores-and-their-interpretation">Raw ESGEMME Scores and Their Interpretation</a></li>
<li class="toctree-l2"><a class="reference internal" href="#entire-single-point-mutation-landscape-calculations">Entire Single Point Mutation Landscape Calculations</a></li>
<li class="toctree-l2"><a class="reference internal" href="#selected-single-point-or-multiple-point-mutation-calculations">Selected Single Point or Multiple Point Mutation Calculations</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li> <li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li> <li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul> </ul>
...@@ -64,7 +69,7 @@ ...@@ -64,7 +69,7 @@
<div role="navigation" aria-label="Page navigation"> <div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs"> <ul class="wy-breadcrumbs">
<li><a href="index.html" class="icon icon-home" aria-label="Home"></a></li> <li><a href="index.html" class="icon icon-home" aria-label="Home"></a></li>
<li class="breadcrumb-item active">Analyzing the ESGEMME output</li> <li class="breadcrumb-item active">Analyzing and Modifying the ESGEMME Output</li>
<li class="wy-breadcrumbs-aside"> <li class="wy-breadcrumbs-aside">
<a href="_sources/analysis.rst.txt" rel="nofollow"> View page source</a> <a href="_sources/analysis.rst.txt" rel="nofollow"> View page source</a>
</li> </li>
...@@ -74,18 +79,64 @@ ...@@ -74,18 +79,64 @@
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody"> <div itemprop="articleBody">
<section id="analyzing-the-esgemme-output"> <section id="analyzing-and-modifying-the-esgemme-output">
<h1>Analyzing the ESGEMME output<a class="headerlink" href="#analyzing-the-esgemme-output" title="Permalink to this heading"></a></h1> <h1>Analyzing and Modifying the ESGEMME Output<a class="headerlink" href="#analyzing-and-modifying-the-esgemme-output" title="Permalink to this heading"></a></h1>
<p>By default, ESGEMME will output the following files: * <section id="raw-esgemme-scores-and-their-interpretation">
myProt_normPred_evolEpi.txt * myProt_normPred_evolInd.txt * <h2>Raw ESGEMME Scores and Their Interpretation<a class="headerlink" href="#raw-esgemme-scores-and-their-interpretation" title="Permalink to this heading"></a></h2>
myProt_normPred_evolCombi.txt</p> <p>There is not a hardcoded limit for raw ESGEMME scores. However, the values
<p>The most important output file is <strong>myProt_normPred_evolCombi.txt</strong>. The range between [-12, 2] generally. The lower values mean the mutations is impactful,
values of interest are the normalized predictions (normPred). Each file while values close to 0 means the mutation does not have any significant impact.</p>
contains a 20 x n matrix, where n is the number of positions (columns) in the <p>We should note that most of the ‘impactful’ mutations are deleterious but
query sequence. If the user provides her/his own list of mutations, then it is not always the case.</p>
only the global epistatic model will be run and the output file will </section>
contain 2 columns, the first one with the mutations, the second one with <section id="entire-single-point-mutation-landscape-calculations">
the normalized predicted effects.</p> <h2>Entire Single Point Mutation Landscape Calculations<a class="headerlink" href="#entire-single-point-mutation-landscape-calculations" title="Permalink to this heading"></a></h2>
<p>By default, ESGEMME will only output the combined (independent
and epistatic) scores*:</p>
<p>There are three output files:</p>
<ol class="arabic">
<li><p>myProt_normPred_evolCombi.txt</p>
<blockquote>
<div><p>myProt is the short name in the MSA file for your protein. The
‘myProt_normPred_evolCombi.txt’ file contains 20 rows (for 20 amino acids
in alphabetical order) and L columns, where L is the number of amino acids
in your protein of interest. Since this file is horizontal, it is easy to
read it in R or Python but difficult to find the mutations you are interested.</p>
</div></blockquote>
</li>
<li><p>myProt_normPred_evolCombiTransposed.txt</p>
<blockquote>
<div><p>As the name implies, this is the transposed version of the combined results.
It is easier to find the mutations you are interested in this file. Just
check the row corresponding to the mutation.</p>
</div></blockquote>
</li>
<li><p>myProt_normPred_evolCombi.Preparing</p>
<blockquote>
<div><p>This is the image file of the combined results. It selects ‘Oranges_r’
matplotlib color map by default. You can change it by adding ‘–colormap turbo_r’
for a more fancy look during the esgemme call. It –colormap argument accepts
all the color maps in matplotlib.</p>
</div></blockquote>
</li>
</ol>
<p>Note*: If you want to see epistatic and independent contributions as well,
you should add ‘–verbose true’ argument while calling esgemme.</p>
</section>
<section id="selected-single-point-or-multiple-point-mutation-calculations">
<h2>Selected Single Point or Multiple Point Mutation Calculations<a class="headerlink" href="#selected-single-point-or-multiple-point-mutation-calculations" title="Permalink to this heading"></a></h2>
<p>Since you used a mutation file to predict mutations, you will have your combined (epistatic+independent)
results in the same format, such as :</p>
<dl class="simple">
<dt><a href="#id1"><span class="problematic" id="id2">*</span></a>. myProt_normPred_evolCombi.txt:</dt><dd><p>A2C -6.23
A2D -1.23
.
.
.
D286F -0.23</p>
</dd>
</dl>
</section>
</section> </section>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<script src="_static/js/theme.js"></script> <script src="_static/js/theme.js"></script>
<link rel="index" title="Index" href="genindex.html" /> <link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" /> <link rel="search" title="Search" href="search.html" />
<link rel="next" title="Analyzing the ESGEMME output" href="analysis.html" /> <link rel="next" title="Analyzing and Modifying the ESGEMME Output" href="analysis.html" />
<link rel="prev" title="Welcome to esgemme’s documentation!" href="index.html" /> <link rel="prev" title="Welcome to esgemme’s documentation!" href="index.html" />
</head> </head>
...@@ -56,7 +56,8 @@ ...@@ -56,7 +56,8 @@
<li class="toctree-l2"><a class="reference internal" href="#running-several-jobs-using-docker">Running several jobs using docker</a></li> <li class="toctree-l2"><a class="reference internal" href="#running-several-jobs-using-docker">Running several jobs using docker</a></li>
</ul> </ul>
</li> </li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing the ESGEMME output</a></li> <li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESGEMME Output</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html#raw-esgemme-scores-and-their-interpretation">Raw ESGEMME Scores and Their Interpretation</a></li>
<li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li> <li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li> <li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul> </ul>
...@@ -210,7 +211,7 @@ mutation and its predicted effect, separated by a space.</p> ...@@ -210,7 +211,7 @@ mutation and its predicted effect, separated by a space.</p>
</div> </div>
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer"> <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
<a href="index.html" class="btn btn-neutral float-left" title="Welcome to esgemme’s documentation!" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a> <a href="index.html" class="btn btn-neutral float-left" title="Welcome to esgemme’s documentation!" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="analysis.html" class="btn btn-neutral float-right" title="Analyzing the ESGEMME output" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a> <a href="analysis.html" class="btn btn-neutral float-right" title="Analyzing and Modifying the ESGEMME Output" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
</div> </div>
<hr/> <hr/>
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> <p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul> <ul>
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li> <li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing the ESGEMME output</a></li> <li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESGEMME Output</a></li>
<li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li> <li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li> <li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul> </ul>
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> <p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul> <ul>
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li> <li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing the ESGEMME output</a></li> <li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESGEMME Output</a></li>
<li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li> <li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li> <li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul> </ul>
...@@ -86,7 +86,12 @@ ...@@ -86,7 +86,12 @@
<li class="toctree-l2"><a class="reference internal" href="docker.html#running-several-jobs-using-docker">Running several jobs using docker</a></li> <li class="toctree-l2"><a class="reference internal" href="docker.html#running-several-jobs-using-docker">Running several jobs using docker</a></li>
</ul> </ul>
</li> </li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing the ESGEMME output</a></li> <li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESGEMME Output</a><ul>
<li class="toctree-l2"><a class="reference internal" href="analysis.html#raw-esgemme-scores-and-their-interpretation">Raw ESGEMME Scores and Their Interpretation</a></li>
<li class="toctree-l2"><a class="reference internal" href="analysis.html#entire-single-point-mutation-landscape-calculations">Entire Single Point Mutation Landscape Calculations</a></li>
<li class="toctree-l2"><a class="reference internal" href="analysis.html#selected-single-point-or-multiple-point-mutation-calculations">Selected Single Point or Multiple Point Mutation Calculations</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a><ul> <li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a><ul>
<li class="toctree-l2"><a class="reference internal" href="input-preparation.html#preparing-your-input-msa-and-pdb-with-colabfold">Preparing Your Input MSA and PDB with Colabfold</a></li> <li class="toctree-l2"><a class="reference internal" href="input-preparation.html#preparing-your-input-msa-and-pdb-with-colabfold">Preparing Your Input MSA and PDB with Colabfold</a></li>
</ul> </ul>
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
<link rel="index" title="Index" href="genindex.html" /> <link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" /> <link rel="search" title="Search" href="search.html" />
<link rel="next" title="Installation" href="installation.html" /> <link rel="next" title="Installation" href="installation.html" />
<link rel="prev" title="Analyzing the ESGEMME output" href="analysis.html" /> <link rel="prev" title="Analyzing and Modifying the ESGEMME Output" href="analysis.html" />
</head> </head>
<body class="wy-body-for-nav"> <body class="wy-body-for-nav">
...@@ -45,7 +45,8 @@ ...@@ -45,7 +45,8 @@
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> <p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul class="current"> <ul class="current">
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li> <li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing the ESGEMME output</a></li> <li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESGEMME Output</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html#raw-esgemme-scores-and-their-interpretation">Raw ESGEMME Scores and Their Interpretation</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Preparing Your Own Input</a><ul> <li class="toctree-l1 current"><a class="current reference internal" href="#">Preparing Your Own Input</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#preparing-your-input-msa-and-pdb-with-colabfold">Preparing Your Input MSA and PDB with Colabfold</a></li> <li class="toctree-l2"><a class="reference internal" href="#preparing-your-input-msa-and-pdb-with-colabfold">Preparing Your Input MSA and PDB with Colabfold</a></li>
</ul> </ul>
...@@ -141,7 +142,7 @@ II. An input PDB: myprotein.pdb</p> ...@@ -141,7 +142,7 @@ II. An input PDB: myprotein.pdb</p>
</div> </div>
</div> </div>
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer"> <footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
<a href="analysis.html" class="btn btn-neutral float-left" title="Analyzing the ESGEMME output" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a> <a href="analysis.html" class="btn btn-neutral float-left" title="Analyzing and Modifying the ESGEMME Output" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="installation.html" class="btn btn-neutral float-right" title="Installation" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a> <a href="installation.html" class="btn btn-neutral float-right" title="Installation" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
</div> </div>
......
...@@ -44,7 +44,8 @@ ...@@ -44,7 +44,8 @@
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> <p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul class="current"> <ul class="current">
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li> <li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing the ESGEMME output</a></li> <li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESGEMME Output</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html#raw-esgemme-scores-and-their-interpretation">Raw ESGEMME Scores and Their Interpretation</a></li>
<li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li> <li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Installation</a><ul> <li class="toctree-l1 current"><a class="current reference internal" href="#">Installation</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#installing-the-dependencies">Installing the dependencies:</a></li> <li class="toctree-l2"><a class="reference internal" href="#installing-the-dependencies">Installing the dependencies:</a></li>
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> <p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul> <ul>
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li> <li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESGEMME via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing the ESGEMME output</a></li> <li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESGEMME Output</a></li>
<li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li> <li class="toctree-l1"><a class="reference internal" href="input-preparation.html">Preparing Your Own Input</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li> <li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul> </ul>
......
Search.setIndex({"docnames": ["analysis", "docker", "index", "input-preparation", "installation"], "filenames": ["analysis.rst", "docker.rst", "index.rst", "input-preparation.rst", "installation.rst"], "titles": ["Analyzing the ESGEMME output", "Using ESGEMME via Docker", "Welcome to esgemme\u2019s documentation!", "Preparing Your Own Input", "Installation"], "terms": {"By": 0, "default": [0, 2], "follow": [0, 1, 3, 4], "file": [0, 1, 2, 3], "myprot_normpred_evolepi": 0, "txt": [0, 1], "myprot_normpred_evolind": 0, "myprot_normpred_evolcombi": 0, "The": [0, 1, 3], "most": 0, "import": [0, 4], "i": [0, 1, 3, 4], "valu": 0, "interest": [0, 1, 3], "ar": [0, 1, 3, 4], "normal": 0, "predict": [0, 4], "normpr": 0, "each": [0, 1], "contain": [0, 1, 3, 4], "20": 0, "x": 0, "n": 0, "matrix": 0, "where": [0, 3], "number": 0, "posit": 0, "column": [0, 3], "queri": 0, "sequenc": [0, 1, 3], "If": [0, 1, 4], "user": [0, 4], "provid": [0, 1], "her": 0, "hi": 0, "own": [0, 2], "list": [0, 1, 3], "mutat": [0, 2, 3], "onli": [0, 1, 4], "global": 0, "epistat": 0, "model": [0, 3], "run": [0, 2, 3], "2": 0, "first": [0, 1], "one": 0, "second": [0, 1], "effect": 0, "you": [1, 3, 4], "need": 1, "have": [1, 3, 4], "instal": [1, 2], "your": [1, 2, 4], "machin": 1, "can": [1, 3], "consult": 1, "page": [1, 2], "thi": [1, 3, 4], "http": [1, 3, 4], "doc": 1, "com": [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], "let": [1, 3], "": [1, 3], "start": [1, 3], "our": [1, 3, 4], "favorit": 1, "app": 1, "must": 1, "creat": [1, 3], "folder": [1, 3, 4], "call": [1, 4], "tutori": 1, "go": [1, 3], "empti": 1, "mkdir": 1, "cd": [1, 3], "download": [1, 4], "sampl": 1, "repositori": 1, "exercis": 1, "we": [1, 3, 4], "align": [1, 3], "fasta": [1, 3], "format": [1, 3], "wget": 1, "gitlab": [1, 4], "lcqb": [1, 4], "upmc": [1, 4], "fr": [1, 4], "tekpinar": [1, 3, 4], "blob": [1, 3], "master": 1, "aliblat": 1, "don": 1, "t": 1, "try": 1, "same": 1, "curl": 1, "pleas": [1, 3], "verifi": 1, "now": [1, 3], "pdb": [1, 2], "protein": [1, 3], "databank": 1, "blat": 1, "af2": 1, "In": 1, "order": 1, "make": [1, 3], "sure": [1, 3], "sudo": [1, 3], "h": 1, "show": 1, "option": 1, "good": 1, "track": 1, "On": 1, "mai": 1, "word": 1, "befor": [1, 3], "all": [1, 3], "ti": [1, 3], "rm": [1, 3], "mount": [1, 3], "type": [1, 3], "bind": [1, 3], "sourc": [1, 2, 3], "pwd": [1, 3], "target": [1, 3], "home": [1, 3], "research": [1, 3], "myexampl": [1, 3], "v1": [1, 3], "3": [1, 3, 4], "0": [1, 3], "virtual": 1, "oper": 1, "system": [1, 4], "previou": 1, "chang": [1, 3], "when": 1, "check": 1, "l": [1, 3], "suppos": [1, 3], "see": [1, 3], "host": 1, "place": 1, "step": [1, 3, 4], "evolutionari": [1, 4], "inform": 1, "from": [1, 3, 4], "an": [1, 3, 4], "msa": [1, 2], "python": [1, 4], "esgemme_path": [1, 4], "py": 1, "r": [1, 4], "f": 1, "after": 1, "few": [1, 3], "minut": [1, 3], "least": 1, "two": 1, "name": 1, "blat_normpred_evolcombi": 1, "png": 1, "want": [1, 3], "util": 1, "structur": [1, 3, 4], "highli": 1, "recommend": [1, 4], "well": 1, "pdbfile": 1, "normweightmod": 1, "sstjetormax": 1, "bunch": 1, "prepar": [1, 2], "mut": 1, "simpl": 1, "text": 1, "line": 1, "d26a": 1, "fortun": 1, "raw": 1, "stiffler_2015_blat_ecolx": 1, "similar": 1, "possibl": 1, "wai": 1, "do": [1, 3], "without": 1, "m": 1, "includ": 1, "code": [1, 2], "bash": 1, "howev": [1, 3], "output": [1, 2], "complet": 1, "differ": 1, "scan": 1, "its": [1, 4], "separ": 1, "space": 1, "addit": 1, "won": 1, "like": [1, 3], "case": 1, "sometim": 1, "doubl": 1, "tripl": 1, "perform": 1, "e26d": 1, "y44r": 1, "e56n": 1, "a77f": 1, "h94v": 1, "impact": [1, 3], "As": 1, "colon": 1, "charact": 1, "us": [2, 3, 4], "via": 2, "docker": [2, 3, 4], "requir": [2, 3, 4], "get": 2, "exampl": [2, 3], "input": 2, "data": 2, "singl": 2, "point": 2, "calcul": 2, "multipl": [2, 3], "sever": 2, "job": 2, "analyz": 2, "colabfold": 2, "depend": [2, 3], "environ": 2, "configur": 2, "conf": 2, "index": [2, 4], "modul": 2, "search": 2, "understand": 3, "certain": 3, "doe": 3, "gap": 3, "quickest": 3, "method": 3, "obtain": 3, "both": 3, "web": [3, 4], "site": [3, 4], "colab": 3, "googl": 3, "github": 3, "sokrypton": 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, "query_sequ": 3, "box": 3, "past": 3, "For": 3, "me": 3, "select": 3, "adenyl": 3, "kinas": 3, "ak": 3, "my": 3, "www": [3, 4], "rcsb": 3, "org": [3, 4], "entri": 3, "4ake": 3, "displai": 3, "jobnam": 3, "someth": 3, "more": 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, "It": [3, 4], "give": 3, "a3m": 3, "up": 3, "5": 3, "put": 3, "directori": [3, 4], "unfortun": 3, "those": 3, "gui": 3, "program": 3, "ugen": 3, "jalview": 3, "labor": 3, "intens": 3, "procedur": 3, "here": [3, 4], "small": 3, "develop": 3, "ad": 3, "esgemm": [3, 4], "imag": [3, 4], "script": 3, "hhsuit": 3, "convert": 3, "reformat": 3, "pl": 3, "fa": 3, "final": 3, "demust": 3, "removegap": 3, "o": 3, "ake_nogap": 3, "congratul": 3, "ii": 3, "myprotein": 3, "implement": 4, "ha": 4, "been": 4, "test": 4, "sinc": 4, "mani": 4, "determin": 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, "should": 4, "abl": 4, "defin": 4, "export": 4, "variabl": 4, "path": 4, "insid": 4, "essenti": 4, "paramet": 4, "part": 4, "intern": 4, "etc": 4, "correct": 4, "softwar": 4, "section": 4, "accord": 4}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"analyz": 0, "esgemm": [0, 1, 2], "output": 0, "us": 1, "via": 1, "docker": 1, "requir": 1, "get": [1, 4], "exampl": 1, "input": [1, 3], "data": 1, "singl": 1, "point": 1, "mutat": 1, "calcul": 1, "obtain": 1, "entir": 1, "landscap": 1, "predict": 1, "effect": 1, "subset": 1, "multipl": 1, "run": 1, "sever": 1, "job": 1, "welcom": 2, "": 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": 4, "code": 4, "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": 8, "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": 57}, "alltitles": {"Analyzing the ESGEMME output": [[0, "analyzing-the-esgemme-output"]], "Using ESGEMME via Docker": [[1, "using-esgemme-via-docker"]], "Requirements": [[1, "requirements"]], "Getting the example input data": [[1, "getting-the-example-input-data"]], "Single point mutation calculations": [[1, "single-point-mutation-calculations"]], "Obtaining the entire single point mutation landscape": [[1, "obtaining-the-entire-single-point-mutation-landscape"]], "Predicting the effect of a subset of single point mutations": [[1, "predicting-the-effect-of-a-subset-of-single-point-mutations"]], "Multiple point mutation calculations": [[1, "multiple-point-mutation-calculations"]], "Running several jobs using docker": [[1, "running-several-jobs-using-docker"]], "Welcome to esgemme\u2019s documentation!": [[2, "welcome-to-esgemme-s-documentation"]], "Contents:": [[2, null]], "Indices and tables": [[2, "indices-and-tables"]], "Preparing Your Own Input": [[3, "preparing-your-own-input"]], "Preparing Your Input MSA and PDB with Colabfold": [[3, "preparing-your-input-msa-and-pdb-with-colabfold"]], "Installation": [[4, "installation"]], "Installing the dependencies:": [[4, "installing-the-dependencies"]], "Getting the source code and preparing the environment:": [[4, "getting-the-source-code-and-preparing-the-environment"]], "Configuring default.conf file": [[4, "configuring-default-conf-file"]]}, "indexentries": {}}) 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": {"By": 0, "default": [0, 2], "follow": [1, 3, 4], "file": [0, 1, 2, 3], "myprot_normpred_evolepi": [], "txt": [0, 1], "myprot_normpred_evolind": [], "myprot_normpred_evolcombi": 0, "The": [0, 1, 3], "most": 0, "import": 4, "i": [0, 1, 3, 4], "valu": 0, "interest": [0, 1, 3], "ar": [0, 1, 3, 4], "normal": [], "predict": [0, 4], "normpr": [], "each": 1, "contain": [0, 1, 3, 4], "20": 0, "x": [], "n": [], "matrix": [], "where": [0, 3], "number": 0, "posit": [], "column": [0, 3], "queri": [], "sequenc": [1, 3], "If": [0, 1, 4], "user": 4, "provid": 1, "her": [], "hi": [], "own": 2, "list": [1, 3], "mutat": [2, 3], "onli": [0, 1, 4], "global": [], "epistat": 0, "model": 3, "run": [2, 3], "2": 0, "first": 1, "one": [], "second": 1, "effect": [], "you": [0, 1, 3, 4], "need": 1, "have": [0, 1, 3, 4], "instal": [1, 2], "your": [0, 1, 2, 4], "machin": 1, "can": [0, 1, 3], "consult": 1, "page": [1, 2], "thi": [0, 1, 3, 4], "http": [1, 3, 4], "doc": 1, "com": [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], "let": [1, 3], "": [1, 3], "start": [1, 3], "our": [1, 3, 4], "favorit": 1, "app": 1, "must": 1, "creat": [1, 3], "folder": [1, 3, 4], "call": [0, 1, 4], "tutori": 1, "go": [1, 3], "empti": 1, "mkdir": 1, "cd": [1, 3], "download": [1, 4], "sampl": 1, "repositori": 1, "exercis": 1, "we": [0, 1, 3, 4], "align": [1, 3], "fasta": [1, 3], "format": [0, 1, 3], "wget": 1, "gitlab": [1, 4], "lcqb": [1, 4], "upmc": [1, 4], "fr": [1, 4], "tekpinar": [1, 3, 4], "blob": [1, 3], "master": 1, "aliblat": 1, "don": 1, "t": 1, "try": 1, "same": [0, 1], "curl": 1, "pleas": [1, 3], "verifi": 1, "now": [1, 3], "pdb": [1, 2], "protein": [0, 1, 3], "databank": 1, "blat": 1, "af2": 1, "In": 1, "order": [0, 1], "make": [1, 3], "sure": [1, 3], "sudo": [1, 3], "h": 1, "show": 1, "option": 1, "good": 1, "track": 1, "On": 1, "mai": 1, "word": 1, "befor": [1, 3], "all": [0, 1, 3], "ti": [1, 3], "rm": [1, 3], "mount": [1, 3], "type": [1, 3], "bind": [1, 3], "sourc": [1, 2, 3], "pwd": [1, 3], "target": [1, 3], "home": [1, 3], "research": [1, 3], "myexampl": [1, 3], "v1": [1, 3], "3": [1, 3, 4], "0": [0, 1, 3], "virtual": 1, "oper": 1, "system": [1, 4], "previou": 1, "chang": [0, 1, 3], "when": 1, "check": [0, 1], "l": [0, 1, 3], "suppos": [1, 3], "see": [0, 1, 3], "host": 1, "place": 1, "step": [1, 3, 4], "evolutionari": [1, 4], "inform": 1, "from": [1, 3, 4], "an": [1, 3, 4], "msa": [0, 1, 2], "python": [0, 1, 4], "esgemme_path": [1, 4], "py": 1, "r": [0, 1, 4], "f": 1, "after": 1, "few": [1, 3], "minut": [1, 3], "least": 1, "two": 1, "name": [0, 1], "blat_normpred_evolcombi": 1, "png": 1, "want": [0, 1, 3], "util": 1, "structur": [1, 3, 4], "highli": 1, "recommend": [1, 4], "well": [0, 1], "pdbfile": 1, "normweightmod": 1, "sstjetormax": 1, "bunch": 1, "prepar": [0, 1, 2], "mut": 1, "simpl": 1, "text": 1, "line": 1, "d26a": 1, "fortun": 1, "raw": [1, 2], "stiffler_2015_blat_ecolx": 1, "similar": 1, "possibl": 1, "wai": 1, "do": [1, 3], "without": 1, "m": 1, "includ": 1, "code": [1, 2], "bash": 1, "howev": [0, 1, 3], "output": [1, 2], "complet": 1, "differ": 1, "scan": 1, "its": [1, 4], "separ": 1, "space": 1, "addit": 1, "won": 1, "like": [1, 3], "case": [0, 1], "sometim": 1, "doubl": 1, "tripl": 1, "perform": 1, "e26d": 1, "y44r": 1, "e56n": 1, "a77f": 1, "h94v": 1, "impact": [0, 1, 3], "As": [0, 1], "colon": 1, "charact": 1, "us": [0, 2, 3, 4], "via": 2, "docker": [2, 3, 4], "requir": [2, 3, 4], "get": 2, "exampl": [2, 3], "input": 2, "data": 2, "singl": 2, "point": 2, "calcul": 2, "multipl": [2, 3], "sever": 2, "job": 2, "analyz": 2, "colabfold": 2, "depend": [2, 3], "environ": 2, "configur": 2, "conf": 2, "index": [2, 4], "modul": 2, "search": 2, "understand": 3, "certain": 3, "doe": [0, 3], "gap": 3, "quickest": 3, "method": 3, "obtain": 3, "both": 3, "web": [3, 4], "site": [3, 4], "colab": 3, "googl": 3, "github": 3, "sokrypton": 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, "query_sequ": 3, "box": 3, "past": 3, "For": 3, "me": 3, "select": [2, 3], "adenyl": 3, "kinas": 3, "ak": 3, "my": 3, "www": [3, 4], "rcsb": 3, "org": [3, 4], "entri": 3, "4ake": 3, "displai": 3, "jobnam": 3, "someth": 3, "more": [0, 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, "It": [0, 3, 4], "give": 3, "a3m": 3, "up": 3, "5": 3, "put": 3, "directori": [3, 4], "unfortun": 3, "those": 3, "gui": 3, "program": 3, "ugen": 3, "jalview": 3, "labor": 3, "intens": 3, "procedur": 3, "here": [3, 4], "small": 3, "develop": 3, "ad": [0, 3], "esgemm": [3, 4], "imag": [0, 3, 4], "script": 3, "hhsuit": 3, "convert": 3, "reformat": 3, "pl": 3, "fa": 3, "final": 3, "demust": 3, "removegap": 3, "o": 3, "ake_nogap": 3, "congratul": 3, "ii": 3, "myprotein": 3, "implement": 4, "ha": 4, "been": 4, "test": 4, "sinc": [0, 4], "mani": 4, "determin": 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, "should": [0, 4], "abl": 4, "defin": 4, "export": 4, "variabl": 4, "path": 4, "insid": 4, "essenti": 4, "paramet": 4, "part": 4, "intern": 4, "etc": 4, "correct": 4, "softwar": 4, "section": 4, "accord": 4, "There": 0, "hardcod": 0, "limit": 0, "rang": 0, "between": 0, "12": 0, "gener": 0, "lower": 0, "mean": 0, "while": 0, "close": 0, "ani": 0, "signific": 0, "note": 0, "deleteri": 0, "alwai": 0, "combin": 0, "independ": 0, "three": 0, "myprot": 0, "short": 0, "row": 0, "amino": 0, "acid": 0, "alphabet": 0, "horizont": 0, "easi": 0, "read": 0, "difficult": 0, "find": 0, "myprot_normpred_evolcombitranspos": 0, "impli": 0, "transpos": 0, "version": 0, "result": 0, "easier": 0, "just": 0, "correspond": 0, "oranges_r": 0, "matplotlib": 0, "color": 0, "map": 0, "colormap": 0, "turbo_r": 0, "fanci": 0, "look": 0, "dure": 0, "argument": 0, "accept": 0, "contribut": 0, "add": 0, "verbos": 0, "true": 0, "a2c": 0, "6": 0, "23": 0, "a2d": 0, "1": 0, "d286f": 0, "modifi": 2, "score": 2, "Their": 2, "interpret": 2, "entir": 2, "landscap": 2}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"analyz": 0, "esgemm": [0, 1, 2], "output": 0, "us": 1, "via": 1, "docker": 1, "requir": 1, "get": [1, 4], "exampl": 1, "input": [1, 3], "data": 1, "singl": [0, 1], "point": [0, 1], "mutat": [0, 1], "calcul": [0, 1], "obtain": 1, "entir": [0, 1], "landscap": [0, 1], "predict": 1, "effect": 1, "subset": 1, "multipl": [0, 1], "run": 1, "sever": 1, "job": 1, "welcom": 2, "": 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": 4, "code": 4, "environ": 4, "configur": 4, "default": 4, "conf": 4, "file": 4, "modifi": 0, "raw": 0, "score": 0, "Their": 0, "interpret": 0, "select": 0}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "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": 57}, "alltitles": {"Using ESGEMME via Docker": [[1, "using-esgemme-via-docker"]], "Requirements": [[1, "requirements"]], "Getting the example input data": [[1, "getting-the-example-input-data"]], "Single point mutation calculations": [[1, "single-point-mutation-calculations"]], "Obtaining the entire single point mutation landscape": [[1, "obtaining-the-entire-single-point-mutation-landscape"]], "Predicting the effect of a subset of single point mutations": [[1, "predicting-the-effect-of-a-subset-of-single-point-mutations"]], "Multiple point mutation calculations": [[1, "multiple-point-mutation-calculations"]], "Running several jobs using docker": [[1, "running-several-jobs-using-docker"]], "Welcome to esgemme\u2019s documentation!": [[2, "welcome-to-esgemme-s-documentation"]], "Contents:": [[2, null]], "Indices and tables": [[2, "indices-and-tables"]], "Preparing Your Own Input": [[3, "preparing-your-own-input"]], "Preparing Your Input MSA and PDB with Colabfold": [[3, "preparing-your-input-msa-and-pdb-with-colabfold"]], "Installation": [[4, "installation"]], "Installing the dependencies:": [[4, "installing-the-dependencies"]], "Getting the source code and preparing the environment:": [[4, "getting-the-source-code-and-preparing-the-environment"]], "Configuring default.conf file": [[4, "configuring-default-conf-file"]], "Analyzing and Modifying the ESGEMME Output": [[0, "analyzing-and-modifying-the-esgemme-output"]], "Raw ESGEMME Scores and Their Interpretation": [[0, "raw-esgemme-scores-and-their-interpretation"]], "Entire Single Point Mutation Landscape Calculations": [[0, "entire-single-point-mutation-landscape-calculations"]], "Selected Single Point or Multiple Point Mutation Calculations": [[0, "selected-single-point-or-multiple-point-mutation-calculations"]]}, "indexentries": {}})
\ No newline at end of file \ No newline at end of file
...@@ -38,11 +38,17 @@ ...@@ -38,11 +38,17 @@
\newlabel{docker:multiple-point-mutation-calculations}{{1.4}{3}{Multiple point mutation calculations}{section.1.4}{}} \newlabel{docker:multiple-point-mutation-calculations}{{1.4}{3}{Multiple point mutation calculations}{section.1.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.5}Running several jobs using docker}{3}{section.1.5}\protected@file@percent } \@writefile{toc}{\contentsline {section}{\numberline {1.5}Running several jobs using docker}{3}{section.1.5}\protected@file@percent }
\newlabel{docker:running-several-jobs-using-docker}{{1.5}{3}{Running several jobs using docker}{section.1.5}{}} \newlabel{docker:running-several-jobs-using-docker}{{1.5}{3}{Running several jobs using docker}{section.1.5}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Analyzing the ESGEMME output}{5}{chapter.2}\protected@file@percent } \@writefile{toc}{\contentsline {chapter}{\numberline {2}Analyzing and Modifying the ESGEMME Output}{5}{chapter.2}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }} \@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }}
\newlabel{analysis:analyzing-the-esgemme-output}{{2}{5}{Analyzing the ESGEMME output}{chapter.2}{}} \newlabel{analysis:analyzing-and-modifying-the-esgemme-output}{{2}{5}{Analyzing and Modifying the ESGEMME Output}{chapter.2}{}}
\newlabel{analysis::doc}{{2}{5}{Analyzing the ESGEMME output}{chapter.2}{}} \newlabel{analysis::doc}{{2}{5}{Analyzing and Modifying the ESGEMME Output}{chapter.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Raw ESGEMME Scores and Their Interpretation}{5}{section.2.1}\protected@file@percent }
\newlabel{analysis:raw-esgemme-scores-and-their-interpretation}{{2.1}{5}{Raw ESGEMME Scores and Their Interpretation}{section.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Entire Single Point Mutation Landscape Calculations}{5}{section.2.2}\protected@file@percent }
\newlabel{analysis:entire-single-point-mutation-landscape-calculations}{{2.2}{5}{Entire Single Point Mutation Landscape Calculations}{section.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Selected Single Point or Multiple Point Mutation Calculations}{6}{section.2.3}\protected@file@percent }
\newlabel{analysis:selected-single-point-or-multiple-point-mutation-calculations}{{2.3}{6}{Selected Single Point or Multiple Point Mutation Calculations}{section.2.3}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Preparing Your Own Input}{7}{chapter.3}\protected@file@percent } \@writefile{toc}{\contentsline {chapter}{\numberline {3}Preparing Your Own Input}{7}{chapter.3}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }} \@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }}
......
# Fdb version 3 # Fdb version 3
["makeindex esgemme.idx"] 1685453958 "esgemme.idx" "esgemme.ind" "esgemme" 1685453959 ["makeindex esgemme.idx"] 1685453958 "esgemme.idx" "esgemme.ind" "esgemme" 1686237775
"esgemme.idx" 1685453959 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex" "esgemme.idx" 1686237775 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
(generated) (generated)
"esgemme.ind"
"esgemme.ilg" "esgemme.ilg"
["pdflatex"] 1685453959 "esgemme.tex" "esgemme.pdf" "esgemme" 1685453959 "esgemme.ind"
["pdflatex"] 1686237775 "esgemme.tex" "esgemme.pdf" "esgemme" 1686237775
"/etc/texmf/web2c/texmf.cnf" 1685303669 475 c0e671620eb5563b2130f56340a5fde8 "" "/etc/texmf/web2c/texmf.cnf" 1685303669 475 c0e671620eb5563b2130f56340a5fde8 ""
"/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 "" "/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 "" "/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm" 1136768653 3584 adb004a0c8e7c46ee66cad73671f37b4 ""
...@@ -139,37 +139,37 @@ ...@@ -139,37 +139,37 @@
"/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd" 1480098840 1160 de7b1cf70edab73c9f1704df2a9fdbbd "" "/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd" 1480098840 1160 de7b1cf70edab73c9f1704df2a9fdbbd ""
"/usr/share/texmf/web2c/texmf.cnf" 1581979058 38841 ce3692aa899bb693b90b87eaa5d4d84e "" "/usr/share/texmf/web2c/texmf.cnf" 1581979058 38841 ce3692aa899bb693b90b87eaa5d4d84e ""
"/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1685303937 128028 f533b797fba58d231669ea19e894e23e "" "/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1685303937 128028 f533b797fba58d231669ea19e894e23e ""
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1685303943 4791332 cdca06fe91bc297381d833a8a404c34f "" "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1685506326 4791332 2906fb9114dfe18bf39728f7349fcfef ""
"esgemme.aux" 1685453959 5380 6ba2642bb60de5c9b9428845f95c5e71 "pdflatex" "esgemme.aux" 1686237775 6348 1244a872c7c4ec4cff5b0c77dffc5bc7 "pdflatex"
"esgemme.ind" 1685453958 0 d41d8cd98f00b204e9800998ecf8427e "makeindex esgemme.idx" "esgemme.ind" 1686042164 0 d41d8cd98f00b204e9800998ecf8427e "makeindex esgemme.idx"
"esgemme.out" 1685453959 3604 70b9b9c1aed09758e4d1af545c6738b0 "pdflatex" "esgemme.out" 1686237775 4671 f9636305672cbaa8157655b3e9e85a68 "pdflatex"
"esgemme.tex" 1685453952 16448 8ac3957ad642260f281f90c676c3a0dd "" "esgemme.tex" 1686237774 18623 4ac2337e82ebd23f53589270d0e67939 ""
"esgemme.toc" 1685453959 1504 2ddd4f41427a60d2ed714388681ed291 "pdflatex" "esgemme.toc" 1686237775 1853 2379c1748ec7d176d556041991ae769a "pdflatex"
"sphinx.sty" 1685303546 44560 f9fbf51072c954d129c9bd5284cc4ccf "" "sphinx.sty" 1686042164 44560 f9fbf51072c954d129c9bd5284cc4ccf ""
"sphinxhighlight.sty" 1685453957 7490 72d023191655734567e0798eade2a1f7 "" "sphinxhighlight.sty" 1686237774 7490 72d023191655734567e0798eade2a1f7 ""
"sphinxlatexadmonitions.sty" 1685303546 10989 c38302e64c2bb47779f086869b246760 "" "sphinxlatexadmonitions.sty" 1686042164 10989 c38302e64c2bb47779f086869b246760 ""
"sphinxlatexcontainers.sty" 1685303546 901 d3a3a1b7b2547f47ade2499350b5c420 "" "sphinxlatexcontainers.sty" 1686042164 901 d3a3a1b7b2547f47ade2499350b5c420 ""
"sphinxlatexgraphics.sty" 1685303546 4840 a9578332b6f3b35e198751fb632c9b79 "" "sphinxlatexgraphics.sty" 1686042164 4840 a9578332b6f3b35e198751fb632c9b79 ""
"sphinxlatexindbibtoc.sty" 1685303546 2066 b93f8504d02f6337fde3074b179de55e "" "sphinxlatexindbibtoc.sty" 1686042164 2066 b93f8504d02f6337fde3074b179de55e ""
"sphinxlatexlists.sty" 1685303546 5139 c2de2a1d98d3c6ceedfe46505abd3c07 "" "sphinxlatexlists.sty" 1686042164 5139 c2de2a1d98d3c6ceedfe46505abd3c07 ""
"sphinxlatexliterals.sty" 1685303546 46048 2b66269d0ecf11768a14b5de4ddf9051 "" "sphinxlatexliterals.sty" 1686042164 46048 2b66269d0ecf11768a14b5de4ddf9051 ""
"sphinxlatexnumfig.sty" 1685303546 4532 3633caf84afa1a98e1a060b7868202bb "" "sphinxlatexnumfig.sty" 1686042164 4532 3633caf84afa1a98e1a060b7868202bb ""
"sphinxlatexobjects.sty" 1685303546 9067 1f9a0f04e0268b8abeb7d37165057523 "" "sphinxlatexobjects.sty" 1686042164 9067 1f9a0f04e0268b8abeb7d37165057523 ""
"sphinxlatexshadowbox.sty" 1685303546 5066 97a2be0d1dfdc98548b7461f1949b95f "" "sphinxlatexshadowbox.sty" 1686042164 5066 97a2be0d1dfdc98548b7461f1949b95f ""
"sphinxlatexstyleheadings.sty" 1685303546 3445 a1582a5f3b336dcffa71b5ca3d8fc31f "" "sphinxlatexstyleheadings.sty" 1686042164 3445 a1582a5f3b336dcffa71b5ca3d8fc31f ""
"sphinxlatexstylepage.sty" 1685303546 3064 abce6c3018a84afee0afb08a431944ea "" "sphinxlatexstylepage.sty" 1686042164 3064 abce6c3018a84afee0afb08a431944ea ""
"sphinxlatexstyletext.sty" 1685303546 8232 280fdc24a7889c35e545cd62e6cba921 "" "sphinxlatexstyletext.sty" 1686042164 8232 280fdc24a7889c35e545cd62e6cba921 ""
"sphinxlatextables.sty" 1685303546 57830 16f2773b765508003aec5d08680f39b9 "" "sphinxlatextables.sty" 1686042164 57830 16f2773b765508003aec5d08680f39b9 ""
"sphinxmanual.cls" 1685303546 4241 7b0d7a37df7b5715fb0dbd585c52ecdb "" "sphinxmanual.cls" 1686042164 4241 7b0d7a37df7b5715fb0dbd585c52ecdb ""
"sphinxmessages.sty" 1685453958 745 3f5fcd6cdd7964ed608767954a8ced6f "" "sphinxmessages.sty" 1686237774 745 3f5fcd6cdd7964ed608767954a8ced6f ""
"sphinxoptionsgeometry.sty" 1685303546 2061 47bb34b8ed8a78823eb0c886abfb9f4d "" "sphinxoptionsgeometry.sty" 1686042164 2061 47bb34b8ed8a78823eb0c886abfb9f4d ""
"sphinxoptionshyperref.sty" 1685303546 1094 79beb8b8a3f10784f8cce804e0f9d3aa "" "sphinxoptionshyperref.sty" 1686042164 1094 79beb8b8a3f10784f8cce804e0f9d3aa ""
"sphinxpackageboxes.sty" 1685303546 36615 1d74c63e665ede6c648fa08c42ea70fb "" "sphinxpackageboxes.sty" 1686042164 36615 1d74c63e665ede6c648fa08c42ea70fb ""
"sphinxpackagefootnote.sty" 1685303546 15254 d93f70cf000a9adb198015bf1b2f136c "" "sphinxpackagefootnote.sty" 1686042164 15254 d93f70cf000a9adb198015bf1b2f136c ""
(generated) (generated)
"esgemme.toc" "esgemme.toc"
"esgemme.pdf"
"esgemme.aux"
"esgemme.log" "esgemme.log"
"esgemme.idx" "esgemme.idx"
"esgemme.out" "esgemme.out"
"esgemme.pdf"
"esgemme.aux"
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2023.5.28) 30 MAY 2023 15:39 This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2023.5.31) 8 JUN 2023 17:22
entering extended mode entering extended mode
restricted \write18 enabled. restricted \write18 enabled.
%&-line parsing enabled. %&-line parsing enabled.
...@@ -860,20 +860,14 @@ LaTeX Font Info: Font shape `T1/txtt/b/n' in size <10> not available ...@@ -860,20 +860,14 @@ LaTeX Font Info: Font shape `T1/txtt/b/n' in size <10> not available
] ]
Chapter 2. Chapter 2.
[5] [6]
Underfull \hbox (badness 10000) in paragraph at lines 270--274
\T1/qtm/m/n/10 By de-fault, ES-GEMME will out-put the fol-low-ing files: * myPr
ot_normPred_evolEpi.txt *
[]
[5] [6
]
Chapter 3. Chapter 3.
[7] [8] [7
] [8]
Chapter 4. Chapter 4.
LaTeX Font Info: Trying to load font information for TS1+qtm on input line 4 LaTeX Font Info: Trying to load font information for TS1+qtm on input line 4
05. 74.
(/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd (/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd
File: ts1qtm.fd 2009/09/25 v1.2 font definition file for TS1/qtm File: ts1qtm.fd 2009/09/25 v1.2 font definition file for TS1/qtm
) [9 ) [9
...@@ -883,21 +877,21 @@ File: ts1qtm.fd 2009/09/25 v1.2 font definition file for TS1/qtm ...@@ -883,21 +877,21 @@ File: ts1qtm.fd 2009/09/25 v1.2 font definition file for TS1/qtm
] ]
Chapter 5. Chapter 5.
(./esgemme.ind) (./esgemme.ind)
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 478. Package atveryend Info: Empty hook `BeforeClearDocument' on input line 547.
[11] [11]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 478. Package atveryend Info: Empty hook `AfterLastShipout' on input line 547.
(./esgemme.aux) (./esgemme.aux)
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 478. Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 547.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 478. Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 547.
Package rerunfilecheck Info: File `esgemme.out' has not changed. Package rerunfilecheck Info: File `esgemme.out' has not changed.
(rerunfilecheck) Checksum: 70B9B9C1AED09758E4D1AF545C6738B0;3604. (rerunfilecheck) Checksum: F9636305672CBAA8157655B3E9E85A68;4671.
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 478. Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 547.
) )
Here is how much of TeX's memory you used: Here is how much of TeX's memory you used:
15093 strings out of 483183 15105 strings out of 483183
228386 string characters out of 5966292 228681 string characters out of 5966292
499469 words of memory out of 5000000 499733 words of memory out of 5000000
29683 multiletter control sequences out of 15000+600000 29689 multiletter control sequences out of 15000+600000
580415 words of font info for 63 fonts, out of 8000000 for 9000 580415 words of font info for 63 fonts, out of 8000000 for 9000
15 hyphenation exceptions out of 8191 15 hyphenation exceptions out of 8191
38i,11n,51p,432b,613s stack positions out of 5000i,500n,10000p,200000b,80000s 38i,11n,51p,432b,613s stack positions out of 5000i,500n,10000p,200000b,80000s
...@@ -909,10 +903,10 @@ e/texmf/fonts/type1/public/tex-gyre/qhvbi.pfb></usr/share/texmf/fonts/type1/pub ...@@ -909,10 +903,10 @@ e/texmf/fonts/type1/public/tex-gyre/qhvbi.pfb></usr/share/texmf/fonts/type1/pub
lic/tex-gyre/qtmb.pfb></usr/share/texmf/fonts/type1/public/tex-gyre/qtmr.pfb></ lic/tex-gyre/qtmb.pfb></usr/share/texmf/fonts/type1/public/tex-gyre/qtmr.pfb></
usr/share/texlive/texmf-dist/fonts/type1/public/txfonts/t1xbtt.pfb></usr/share/ usr/share/texlive/texmf-dist/fonts/type1/public/txfonts/t1xbtt.pfb></usr/share/
texlive/texmf-dist/fonts/type1/public/txfonts/t1xtt.pfb> texlive/texmf-dist/fonts/type1/public/txfonts/t1xtt.pfb>
Output written on esgemme.pdf (15 pages, 149485 bytes). Output written on esgemme.pdf (15 pages, 152415 bytes).
PDF statistics: PDF statistics:
223 PDF objects out of 1000 (max. 8388607) 243 PDF objects out of 1000 (max. 8388607)
191 compressed objects within 2 object streams 210 compressed objects within 3 object streams
43 named destinations out of 1000 (max. 500000) 49 named destinations out of 1000 (max. 500000)
149 words of extra memory for PDF output out of 10000 (max. 10000000) 173 words of extra memory for PDF output out of 10000 (max. 10000000)
...@@ -6,11 +6,14 @@ ...@@ -6,11 +6,14 @@
\BOOKMARK [2][-]{subsection.1.3.2}{\376\377\000P\000r\000e\000d\000i\000c\000t\000i\000n\000g\000\040\000t\000h\000e\000\040\000e\000f\000f\000e\000c\000t\000\040\000o\000f\000\040\000a\000\040\000s\000u\000b\000s\000e\000t\000\040\000o\000f\000\040\000s\000i\000n\000g\000l\000e\000\040\000p\000o\000i\000n\000t\000\040\000m\000u\000t\000a\000t\000i\000o\000n\000s}{section.1.3}% 6 \BOOKMARK [2][-]{subsection.1.3.2}{\376\377\000P\000r\000e\000d\000i\000c\000t\000i\000n\000g\000\040\000t\000h\000e\000\040\000e\000f\000f\000e\000c\000t\000\040\000o\000f\000\040\000a\000\040\000s\000u\000b\000s\000e\000t\000\040\000o\000f\000\040\000s\000i\000n\000g\000l\000e\000\040\000p\000o\000i\000n\000t\000\040\000m\000u\000t\000a\000t\000i\000o\000n\000s}{section.1.3}% 6
\BOOKMARK [1][-]{section.1.4}{\376\377\000M\000u\000l\000t\000i\000p\000l\000e\000\040\000p\000o\000i\000n\000t\000\040\000m\000u\000t\000a\000t\000i\000o\000n\000\040\000c\000a\000l\000c\000u\000l\000a\000t\000i\000o\000n\000s}{chapter.1}% 7 \BOOKMARK [1][-]{section.1.4}{\376\377\000M\000u\000l\000t\000i\000p\000l\000e\000\040\000p\000o\000i\000n\000t\000\040\000m\000u\000t\000a\000t\000i\000o\000n\000\040\000c\000a\000l\000c\000u\000l\000a\000t\000i\000o\000n\000s}{chapter.1}% 7
\BOOKMARK [1][-]{section.1.5}{\376\377\000R\000u\000n\000n\000i\000n\000g\000\040\000s\000e\000v\000e\000r\000a\000l\000\040\000j\000o\000b\000s\000\040\000u\000s\000i\000n\000g\000\040\000d\000o\000c\000k\000e\000r}{chapter.1}% 8 \BOOKMARK [1][-]{section.1.5}{\376\377\000R\000u\000n\000n\000i\000n\000g\000\040\000s\000e\000v\000e\000r\000a\000l\000\040\000j\000o\000b\000s\000\040\000u\000s\000i\000n\000g\000\040\000d\000o\000c\000k\000e\000r}{chapter.1}% 8
\BOOKMARK [0][-]{chapter.2}{\376\377\000A\000n\000a\000l\000y\000z\000i\000n\000g\000\040\000t\000h\000e\000\040\000E\000S\000G\000E\000M\000M\000E\000\040\000o\000u\000t\000p\000u\000t}{}% 9 \BOOKMARK [0][-]{chapter.2}{\376\377\000A\000n\000a\000l\000y\000z\000i\000n\000g\000\040\000a\000n\000d\000\040\000M\000o\000d\000i\000f\000y\000i\000n\000g\000\040\000t\000h\000e\000\040\000E\000S\000G\000E\000M\000M\000E\000\040\000O\000u\000t\000p\000u\000t}{}% 9
\BOOKMARK [0][-]{chapter.3}{\376\377\000P\000r\000e\000p\000a\000r\000i\000n\000g\000\040\000Y\000o\000u\000r\000\040\000O\000w\000n\000\040\000I\000n\000p\000u\000t}{}% 10 \BOOKMARK [1][-]{section.2.1}{\376\377\000R\000a\000w\000\040\000E\000S\000G\000E\000M\000M\000E\000\040\000S\000c\000o\000r\000e\000s\000\040\000a\000n\000d\000\040\000T\000h\000e\000i\000r\000\040\000I\000n\000t\000e\000r\000p\000r\000e\000t\000a\000t\000i\000o\000n}{chapter.2}% 10
\BOOKMARK [1][-]{section.3.1}{\376\377\000P\000r\000e\000p\000a\000r\000i\000n\000g\000\040\000Y\000o\000u\000r\000\040\000I\000n\000p\000u\000t\000\040\000M\000S\000A\000\040\000a\000n\000d\000\040\000P\000D\000B\000\040\000w\000i\000t\000h\000\040\000C\000o\000l\000a\000b\000f\000o\000l\000d}{chapter.3}% 11 \BOOKMARK [1][-]{section.2.2}{\376\377\000E\000n\000t\000i\000r\000e\000\040\000S\000i\000n\000g\000l\000e\000\040\000P\000o\000i\000n\000t\000\040\000M\000u\000t\000a\000t\000i\000o\000n\000\040\000L\000a\000n\000d\000s\000c\000a\000p\000e\000\040\000C\000a\000l\000c\000u\000l\000a\000t\000i\000o\000n\000s}{chapter.2}% 11
\BOOKMARK [0][-]{chapter.4}{\376\377\000I\000n\000s\000t\000a\000l\000l\000a\000t\000i\000o\000n}{}% 12 \BOOKMARK [1][-]{section.2.3}{\376\377\000S\000e\000l\000e\000c\000t\000e\000d\000\040\000S\000i\000n\000g\000l\000e\000\040\000P\000o\000i\000n\000t\000\040\000o\000r\000\040\000M\000u\000l\000t\000i\000p\000l\000e\000\040\000P\000o\000i\000n\000t\000\040\000M\000u\000t\000a\000t\000i\000o\000n\000\040\000C\000a\000l\000c\000u\000l\000a\000t\000i\000o\000n\000s}{chapter.2}% 12
\BOOKMARK [1][-]{section.4.1}{\376\377\000I\000n\000s\000t\000a\000l\000l\000i\000n\000g\000\040\000t\000h\000e\000\040\000d\000e\000p\000e\000n\000d\000e\000n\000c\000i\000e\000s\000:}{chapter.4}% 13 \BOOKMARK [0][-]{chapter.3}{\376\377\000P\000r\000e\000p\000a\000r\000i\000n\000g\000\040\000Y\000o\000u\000r\000\040\000O\000w\000n\000\040\000I\000n\000p\000u\000t}{}% 13
\BOOKMARK [1][-]{section.4.2}{\376\377\000G\000e\000t\000t\000i\000n\000g\000\040\000t\000h\000e\000\040\000s\000o\000u\000r\000c\000e\000\040\000c\000o\000d\000e\000\040\000a\000n\000d\000\040\000p\000r\000e\000p\000a\000r\000i\000n\000g\000\040\000t\000h\000e\000\040\000e\000n\000v\000i\000r\000o\000n\000m\000e\000n\000t\000:}{chapter.4}% 14 \BOOKMARK [1][-]{section.3.1}{\376\377\000P\000r\000e\000p\000a\000r\000i\000n\000g\000\040\000Y\000o\000u\000r\000\040\000I\000n\000p\000u\000t\000\040\000M\000S\000A\000\040\000a\000n\000d\000\040\000P\000D\000B\000\040\000w\000i\000t\000h\000\040\000C\000o\000l\000a\000b\000f\000o\000l\000d}{chapter.3}% 14
\BOOKMARK [1][-]{section.4.3}{\376\377\000C\000o\000n\000f\000i\000g\000u\000r\000i\000n\000g\000\040\000d\000e\000f\000a\000u\000l\000t\000.\000c\000o\000n\000f\000\040\000f\000i\000l\000e}{chapter.4}% 15 \BOOKMARK [0][-]{chapter.4}{\376\377\000I\000n\000s\000t\000a\000l\000l\000a\000t\000i\000o\000n}{}% 15
\BOOKMARK [0][-]{chapter.5}{\376\377\000I\000n\000d\000i\000c\000e\000s\000\040\000a\000n\000d\000\040\000t\000a\000b\000l\000e\000s}{}% 16 \BOOKMARK [1][-]{section.4.1}{\376\377\000I\000n\000s\000t\000a\000l\000l\000i\000n\000g\000\040\000t\000h\000e\000\040\000d\000e\000p\000e\000n\000d\000e\000n\000c\000i\000e\000s\000:}{chapter.4}% 16
\BOOKMARK [1][-]{section.4.2}{\376\377\000G\000e\000t\000t\000i\000n\000g\000\040\000t\000h\000e\000\040\000s\000o\000u\000r\000c\000e\000\040\000c\000o\000d\000e\000\040\000a\000n\000d\000\040\000p\000r\000e\000p\000a\000r\000i\000n\000g\000\040\000t\000h\000e\000\040\000e\000n\000v\000i\000r\000o\000n\000m\000e\000n\000t\000:}{chapter.4}% 17
\BOOKMARK [1][-]{section.4.3}{\376\377\000C\000o\000n\000f\000i\000g\000u\000r\000i\000n\000g\000\040\000d\000e\000f\000a\000u\000l\000t\000.\000c\000o\000n\000f\000\040\000f\000i\000l\000e}{chapter.4}% 18
\BOOKMARK [0][-]{chapter.5}{\376\377\000I\000n\000d\000i\000c\000e\000s\000\040\000a\000n\000d\000\040\000t\000a\000b\000l\000e\000s}{}% 19
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
\title{esgemme} \title{esgemme}
\date{May 30, 2023} \date{Jun 08, 2023}
\release{1.3.0} \release{1.3.0}
\author{Mustafa Tekpinar} \author{Mustafa Tekpinar}
\newcommand{\sphinxlogo}{\vbox{}} \newcommand{\sphinxlogo}{\vbox{}}
...@@ -265,21 +265,90 @@ mutation and its predicted effect, separated by a space. ...@@ -265,21 +265,90 @@ mutation and its predicted effect, separated by a space.
\sphinxstepscope \sphinxstepscope
\chapter{Analyzing the ESGEMME output} \chapter{Analyzing and Modifying the ESGEMME Output}
\label{\detokenize{analysis:analyzing-the-esgemme-output}}\label{\detokenize{analysis::doc}} \label{\detokenize{analysis:analyzing-and-modifying-the-esgemme-output}}\label{\detokenize{analysis::doc}}
\section{Raw ESGEMME Scores and Their Interpretation}
\label{\detokenize{analysis:raw-esgemme-scores-and-their-interpretation}}
\sphinxAtStartPar
There is not a hardcoded limit for raw ESGEMME scores. However, the values
range between {[}\sphinxhyphen{}12, 2{]} generally. The lower values mean the mutations is impactful,
while values close to 0 means the mutation does not have any significant impact.
\sphinxAtStartPar
We should note that most of the ‘impactful’ mutations are deleterious but
it is not always the case.
\section{Entire Single Point Mutation Landscape Calculations}
\label{\detokenize{analysis:entire-single-point-mutation-landscape-calculations}}
\sphinxAtStartPar
By default, ESGEMME will only output the combined (independent
and epistatic) scores*:
\sphinxAtStartPar
There are three output files:
\begin{enumerate}
\sphinxsetlistlabels{\arabic}{enumi}{enumii}{}{.}%
\item {}
\sphinxAtStartPar \sphinxAtStartPar
By default, ESGEMME will output the following files: *
myProt\_normPred\_evolEpi.txt * myProt\_normPred\_evolInd.txt *
myProt\_normPred\_evolCombi.txt myProt\_normPred\_evolCombi.txt
\begin{quote}
\sphinxAtStartPar \sphinxAtStartPar
The most important output file is \sphinxstylestrong{myProt\_normPred\_evolCombi.txt}. The myProt is the short name in the MSA file for your protein. The
values of interest are the normalized predictions (normPred). Each file ‘myProt\_normPred\_evolCombi.txt’ file contains 20 rows (for 20 amino acids
contains a 20 x n matrix, where n is the number of positions (columns) in the in alphabetical order) and L columns, where L is the number of amino acids
query sequence. If the user provides her/his own list of mutations, then in your protein of interest. Since this file is horizontal, it is easy to
only the global epistatic model will be run and the output file will read it in R or Python but difficult to find the mutations you are interested.
contain 2 columns, the first one with the mutations, the second one with \end{quote}
the normalized predicted effects.
\item {}
\sphinxAtStartPar
myProt\_normPred\_evolCombiTransposed.txt
\begin{quote}
\sphinxAtStartPar
As the name implies, this is the transposed version of the combined results.
It is easier to find the mutations you are interested in this file. Just
check the row corresponding to the mutation.
\end{quote}
\item {}
\sphinxAtStartPar
myProt\_normPred\_evolCombi.Preparing
\begin{quote}
\sphinxAtStartPar
This is the image file of the combined results. It selects ‘Oranges\_r’
matplotlib color map by default. You can change it by adding ‘\textendash{}colormap turbo\_r’
for a more fancy look during the esgemme call. It \textendash{}colormap argument accepts
all the color maps in matplotlib.
\end{quote}
\end{enumerate}
\sphinxAtStartPar
Note*: If you want to see epistatic and independent contributions as well,
you should add ‘\textendash{}verbose true’ argument while calling esgemme.
\section{Selected Single Point or Multiple Point Mutation Calculations}
\label{\detokenize{analysis:selected-single-point-or-multiple-point-mutation-calculations}}
\sphinxAtStartPar
Since you used a mutation file to predict mutations, you will have your combined (epistatic+independent)
results in the same format, such as :
\begin{description}
\sphinxlineitem{{\color{red}\bfseries{}*}. myProt\_normPred\_evolCombi.txt:}
\sphinxAtStartPar
A2C \sphinxhyphen{}6.23
A2D \sphinxhyphen{}1.23
.
.
.
D286F \sphinxhyphen{}0.23
\end{description}
\sphinxstepscope \sphinxstepscope
......
...@@ -7,7 +7,10 @@ ...@@ -7,7 +7,10 @@
\contentsline {subsection}{\numberline {1.3.2}Predicting the effect of a subset of single point mutations}{2}{subsection.1.3.2}% \contentsline {subsection}{\numberline {1.3.2}Predicting the effect of a subset of single point mutations}{2}{subsection.1.3.2}%
\contentsline {section}{\numberline {1.4}Multiple point mutation calculations}{3}{section.1.4}% \contentsline {section}{\numberline {1.4}Multiple point mutation calculations}{3}{section.1.4}%
\contentsline {section}{\numberline {1.5}Running several jobs using docker}{3}{section.1.5}% \contentsline {section}{\numberline {1.5}Running several jobs using docker}{3}{section.1.5}%
\contentsline {chapter}{\numberline {2}Analyzing the ESGEMME output}{5}{chapter.2}% \contentsline {chapter}{\numberline {2}Analyzing and Modifying the ESGEMME Output}{5}{chapter.2}%
\contentsline {section}{\numberline {2.1}Raw ESGEMME Scores and Their Interpretation}{5}{section.2.1}%
\contentsline {section}{\numberline {2.2}Entire Single Point Mutation Landscape Calculations}{5}{section.2.2}%
\contentsline {section}{\numberline {2.3}Selected Single Point or Multiple Point Mutation Calculations}{6}{section.2.3}%
\contentsline {chapter}{\numberline {3}Preparing Your Own Input}{7}{chapter.3}% \contentsline {chapter}{\numberline {3}Preparing Your Own Input}{7}{chapter.3}%
\contentsline {section}{\numberline {3.1}Preparing Your Input MSA and PDB with Colabfold}{7}{section.3.1}% \contentsline {section}{\numberline {3.1}Preparing Your Input MSA and PDB with Colabfold}{7}{section.3.1}%
\contentsline {chapter}{\numberline {4}Installation}{9}{chapter.4}% \contentsline {chapter}{\numberline {4}Installation}{9}{chapter.4}%
......
Analyzing the ESGEMME output Analyzing and Modifying the ESGEMME Output
---------------------------- ==========================================
By default, ESGEMME will output the following files: \* Raw ESGEMME Scores and Their Interpretation
myProt_normPred_evolEpi.txt \* myProt_normPred_evolInd.txt \* -------------------------------------------
myProt_normPred_evolCombi.txt There is not a hardcoded limit for raw ESGEMME scores. However, the values
range between [-12, 2] generally. The lower values mean the mutations is impactful,
The most important output file is **myProt_normPred_evolCombi.txt**. The while values close to 0 means the mutation does not have any significant impact.
values of interest are the normalized predictions (normPred). Each file
contains a 20 x n matrix, where n is the number of positions (columns) in the We should note that most of the 'impactful' mutations are deleterious but
query sequence. If the user provides her/his own list of mutations, then it is not always the case.
only the global epistatic model will be run and the output file will
contain 2 columns, the first one with the mutations, the second one with Entire Single Point Mutation Landscape Calculations
the normalized predicted effects. ---------------------------------------------------
By default, ESGEMME will only output the combined (independent
and epistatic) scores*:
There are three output files:
#. myProt_normPred_evolCombi.txt
myProt is the short name in the MSA file for your protein. The
'myProt_normPred_evolCombi.txt' file contains 20 rows (for 20 amino acids
in alphabetical order) and L columns, where L is the number of amino acids
in your protein of interest. Since this file is horizontal, it is easy to
read it in R or Python but difficult to find the mutations you are interested.
#. myProt_normPred_evolCombiTransposed.txt
As the name implies, this is the transposed version of the combined results.
It is easier to find the mutations you are interested in this file. Just
check the row corresponding to the mutation.
#. myProt_normPred_evolCombi.Preparing
This is the image file of the combined results. It selects 'Oranges_r'
matplotlib color map by default. You can change it by adding '--colormap turbo_r'
for a more fancy look during the esgemme call. It --colormap argument accepts
all the color maps in matplotlib.
Note*: If you want to see epistatic and independent contributions as well,
you should add '--verbose true' argument while calling esgemme.
Selected Single Point or Multiple Point Mutation Calculations
-------------------------------------------------------------
Since you used a mutation file to predict mutations, you will have your combined (epistatic+independent)
results in the same format, such as :
*. myProt_normPred_evolCombi.txt:
A2C -6.23
A2D -1.23
.
.
.
D286F -0.23
...@@ -6,15 +6,15 @@ ...@@ -6,15 +6,15 @@
# Usage: Rscript --save computePred.R XXXX # Usage: Rscript --save computePred.R XXXX
library("seqinr") library("seqinr")
source(paste(Sys.getenv("ESGEMME_PATH"),"/pred.R",sep="")) #source(paste(Sys.getenv("ESGEMME_PATH"),"/pred.R",sep=""))
source("pred.R")
# amino acid full alphabet # amino acid full alphabet
aa = c("a","c","d","e","f","g","h","i","k","l","m","n","p","q","r","s","t","v","w","y") aa = c("a","c","d","e","f","g","h","i","k","l","m","n","p","q","r","s","t","v","w","y")
# BLOSUM62 matrix # # BLOSUM62 matrix
blosum62p = as.matrix(read.table(paste0(Sys.getenv("ESGEMME_PATH"),"/data/blosum62p.txt"),row.names=1)) # blosum62p = as.matrix(read.table(paste0(Sys.getenv("ESGEMME_PATH"),"/data/blosum62p.txt"),row.names=1))
bgp = blosum62p[order(rownames(blosum62p)),order(colnames(blosum62p))] # bgp = blosum62p[order(rownames(blosum62p)),order(colnames(blosum62p))]
bg = apply(bgp,1,sum) # bg = apply(bgp,1,sum)
# get arguemnts # get arguemnts
args = commandArgs(trailingOnly = TRUE) args = commandArgs(trailingOnly = TRUE)
......
...@@ -310,10 +310,25 @@ def launchJET(prot, retMet, bFile, fFile, pdbfile, chains, n, N, nl): ...@@ -310,10 +310,25 @@ def launchJET(prot, retMet, bFile, fFile, pdbfile, chains, n, N, nl):
# Run Rscript to compute predictions # Run Rscript to compute predictions
def launchPred(prot,inAli,mutFile, normWeightMode, alphabet): def launchPred(prot,inAli,mutFile, normWeightMode, alphabet):
# I don't want to have a path dependency here.
# Removing this dependency makes the code more portable.
# Therefore, I copy the R scripts that are saved as the
# package resources to the current working directory.
source = files('esgemme').joinpath('pred.R')
with as_file(source) as esgemme_pred_R_path:
shutil.copy2(esgemme_pred_R_path, os.getcwd())
source = files('esgemme').joinpath('computePred.R')
with as_file(source) as esgemme_computePred_R_path:
shutil.copy2(esgemme_computePred_R_path, os.getcwd())
if (mutFile!=''): if (mutFile!=''):
rcmd="Rscript --save $ESGEMME_PATH/computePred.R "+prot+" "+inAli+" FALSE "+mutFile+" "+normWeightMode+" "+alphabet # rcmd="Rscript --save $ESGEMME_PATH/computePred.R "+prot+" "+inAli+" FALSE "+mutFile+" "+normWeightMode+" "+alphabet
rcmd="Rscript --save computePred.R "+prot+" "+inAli+" FALSE "+mutFile+" "+normWeightMode+" "+alphabet
else: else:
rcmd="Rscript --save $ESGEMME_PATH/computePred.R "+prot+" "+inAli+" TRUE none "+normWeightMode+" "+alphabet # rcmd="Rscript --save $ESGEMME_PATH/computePred.R "+prot+" "+inAli+" TRUE none "+normWeightMode+" "+alphabet
rcmd="Rscript --save computePred.R "+prot+" "+inAli+" TRUE none "+normWeightMode+" "+alphabet
print("\nRunning: \n"+rcmd) print("\nRunning: \n"+rcmd)
reCode=subprocess.call(rcmd,shell=True) reCode=subprocess.call(rcmd,shell=True)
...@@ -363,8 +378,8 @@ def cleanTheMess(prot,bFile,fFile, chainID, verbosity=False): ...@@ -363,8 +378,8 @@ def cleanTheMess(prot,bFile,fFile, chainID, verbosity=False):
if os.path.isfile("caracTest.dat"): if os.path.isfile("caracTest.dat"):
os.remove("caracTest.dat") os.remove("caracTest.dat")
if os.path.isfile("default.conf"): if os.path.isfile("default.conf"):
os.remove("default.conf") os.remove("default.conf")
if verbosity == False: if verbosity == False:
if os.path.isfile(prot+"_normPred_evolInd.txt"): if os.path.isfile(prot+"_normPred_evolInd.txt"):
......
...@@ -48,7 +48,7 @@ then ...@@ -48,7 +48,7 @@ then
esgemme ../data/aliBLAT.fasta -r input -f ../data/aliBLAT.fasta \ esgemme ../data/aliBLAT.fasta -r input -f ../data/aliBLAT.fasta \
--pdbfile ../data/blat-af2.pdb --normweightmode sstjetormax \ --pdbfile ../data/blat-af2.pdb --normweightmode sstjetormax \
-m ../data/Stiffler_2015_BLAT_ECOLX.mut -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 demust compare -i ../data/BLAT_ECOLX_Stiffler_2015_experimental.dat --itype singleline -j BLAT_normPred_evolCombi.txt --jtype singleline
elif [ "$1" == "tjetormax" ] elif [ "$1" == "tjetormax" ]
then then
......
...@@ -45,7 +45,6 @@ setup(name='esgemme', ...@@ -45,7 +45,6 @@ setup(name='esgemme',
'Environment :: Console', 'Environment :: Console',
'Operating System :: POSIX', 'Operating System :: POSIX',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
...@@ -65,5 +64,5 @@ setup(name='esgemme', ...@@ -65,5 +64,5 @@ setup(name='esgemme',
] ]
}, },
include_package_data=True, include_package_data=True,
package_data={'esgemme':['default.conf']}, package_data={'esgemme':['default.conf', 'computePred.R', 'pred.R']},
) )
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