Commit ad6a987f by Mustafa Tekpinar

Updated the documentation for v1.6.0!

parent dca69ed1
......@@ -98,21 +98,21 @@ RUN pip3 install https://github.com/debbiemarkslab/EVcouplings/archive/develop.z
# If run command on M1 Mac with macOS Monterey, you can remove sudo
# Build command
# sudo docker build -t tekpinar/prescott-docker:v1.5.1 .
# sudo docker build -t tekpinar/prescott-docker:v1.6.0 .
# sudo docker login
# sudo docker push tekpinar/prescott-docker:v1.5.1
# sudo docker push tekpinar/prescott-docker:v1.6.0
# Pull command on M1 Mac with macOS Monterey
# sudo docker pull tekpinar/prescott-docker:v1.5.1
# sudo docker pull tekpinar/prescott-docker:v1.6.0
# Run commands
# sudo docker run -i -t -v $(pwd) --platform linux/amd64 tekpinar/prescott-docker:v1.5.1 /bin/bash
# sudo docker run -i -t -v $(pwd) --platform linux/amd64 tekpinar/prescott-docker:v1.6.0 /bin/bash
# Bind your current folder to a particular folder in docker.
# In this way, you fall into the bash terminal of the docker image.
# docker run -ti --rm --mount type=bind,source=$PWD,target=/home/tekpinar/research/lcqb tekpinar/prescott-docker:v1.5.1
# docker run -ti --rm --mount type=bind,source=$PWD,target=/home/tekpinar/research/lcqb tekpinar/prescott-docker:v1.6.0
#If you want to use the docker image like an executable file:
# Please note that you must have aliBLAT.fasta and blat-af2.pdb inside your current folder and run this command!
# sudo docker run --rm -v $PWD:/home/tekpinar/research/lcqb tekpinar/prescott-docker:v1.5.1 escott aliBLAT.fasta --pdbfile blat-af2.pdb
# sudo docker run --rm -v $PWD:/home/tekpinar/research/lcqb tekpinar/prescott-docker:v1.6.0 escott aliBLAT.fasta --pdbfile blat-af2.pdb
#!/bin/bash
#You can not run docker on many high performance computing systems
#due to sudo permissions etc.
#However, singularity can be run on them. Due to this reason, I prepared
#this file to show how you can prepare a singulartiy sif file from docker
#image of PRESCOTT.
#STEP 0: First thing first! You must have singularity installed on your system.
# If not, you can find the installation instructions here:
# https://github.com/sylabs/singularity/blob/main/INSTALL.md
# In addition, there are different releases(deb, rpm or source) in the following page:
# https://github.com/sylabs/singularity/releases
#STEP 1: Building singularity from the docker image online:
# Please note that you will need to change (v1.5.1) to the version you want
# if there is an update in the version.
singularity build prescott-docker-v1.5.1.sif docker://tekpinar/prescott-docker:v1.5.1
#STEP 2: Running escott with the sif file:
singularity exec prescott-docker-v1.5.1.sif escott -h
#STEP 3: Running prescott with the sif file:
singularity exec prescott-docker-v1.5.1.sif prescott -h
#STEP 4: Go to the folder where both aliBLAT.fasta and blat-af2.pdb are located.
# These two files are provided in the data folder of this repository.
# YOUR_SINGULARITY_DIR is where prescott-docker-v1.5.1.sif file located.
singularity exec --home `pwd` $YOUR_SINGULARITY_DIR/prescott-docker-v1.5.1.sif escott aliBLAT.fasta --pdbfile blat-af2.pdb
# 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: 5c84254d67e9b464e3ef5db2238ded56
config: c08592d911c59bb40f4fc837e9874171
tags: 645f666f9bcd5a90fca523b33c5a78b7
......@@ -14,6 +14,7 @@ Welcome to PRESCOTT documentation!
docker.rst
analysis.rst
input-preparation.rst
singularity.rst
installation.rst
Indices and tables
......
......@@ -41,7 +41,7 @@ Then, source the saved .profile so that the environment variable will be taken i
JET2 is essential and it should be installed to be able to use PRESCOTT.
Preparation of the environment and installation of PRESCOTT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Step by step installation on Ubuntu 22.04
......
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '1.5.0',
VERSION: '1.6.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 ESCOTT Output &mdash; prescott 1.5.0 documentation</title>
<title>Analyzing and Modifying the ESCOTT Output &mdash; prescott 1.6.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 ESCOTT via Docker &mdash; prescott 1.5.0 documentation</title>
<title>Using ESCOTT via Docker &mdash; prescott 1.6.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]>
......
......@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Index &mdash; prescott 1.5.0 documentation</title>
<title>Index &mdash; prescott 1.6.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]>
......@@ -45,6 +45,7 @@
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESCOTT via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESCOTT 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="singularity.html">Using ESCOTT via Singularity</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul>
......
......@@ -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 PRESCOTT documentation! &mdash; prescott 1.5.0 documentation</title>
<title>Welcome to PRESCOTT documentation! &mdash; prescott 1.6.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]>
......@@ -47,6 +47,7 @@
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESCOTT via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESCOTT 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="singularity.html">Using ESCOTT via Singularity</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul>
......@@ -105,6 +106,7 @@
<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>
</li>
<li class="toctree-l1"><a class="reference internal" href="singularity.html">Using ESCOTT via Singularity</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a><ul>
<li class="toctree-l2"><a class="reference internal" href="installation.html#installing-the-dependencies">Installing the dependencies:</a></li>
<li class="toctree-l2"><a class="reference internal" href="installation.html#preparation-of-the-environment-and-installation-of-prescott">Preparation of the environment and installation of PRESCOTT</a></li>
......
......@@ -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; prescott 1.5.0 documentation</title>
<title>Preparing Your Own Input &mdash; prescott 1.6.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; prescott 1.5.0 documentation</title>
<title>Installation &mdash; prescott 1.6.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]>
......@@ -43,8 +43,9 @@
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using PRESCOTT via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the PRESCOTT Output</a></li>
<li class="toctree-l1"><a class="reference internal" href="introduction.html">Introduction</a></li>
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESCOTT via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESCOTT 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 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>
......
......@@ -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>Introduction &mdash; prescott 1.5.0 documentation</title>
<title>Introduction &mdash; prescott 1.6.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]>
......
......@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Search &mdash; prescott 1.5.0 documentation</title>
<title>Search &mdash; prescott 1.6.0 documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
......@@ -48,6 +48,7 @@
<li class="toctree-l1"><a class="reference internal" href="docker.html">Using ESCOTT via Docker</a></li>
<li class="toctree-l1"><a class="reference internal" href="analysis.html">Analyzing and Modifying the ESCOTT 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="singularity.html">Using ESCOTT via Singularity</a></li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
</ul>
......
Search.setIndex({"docnames": ["analysis", "docker", "index", "input-preparation", "installation", "introduction"], "filenames": ["analysis.rst", "docker.rst", "index.rst", "input-preparation.rst", "installation.rst", "introduction.rst"], "titles": ["Analyzing and Modifying the ESCOTT Output", "Using ESCOTT via Docker", "Welcome to PRESCOTT documentation!", "Preparing Your Own Input", "Installation", "Introduction"], "terms": {"There": [0, 3], "hardcod": 0, "limit": 0, "howev": [0, 1, 3, 5], "valu": 0, "rang": 0, "between": 0, "12": 0, "2": [0, 5], "gener": 0, "The": [0, 1, 3, 5], "lower": 0, "mean": 0, "impact": [0, 1, 3], "while": 0, "close": 0, "0": [0, 1, 3, 4, 5], "doe": [0, 3], "have": [0, 1, 3, 4, 5], "ani": [0, 5], "signific": 0, "we": [0, 1, 3, 4, 5], "should": [0, 4, 5], "note": [0, 1, 4, 5], "most": [0, 5], "ar": [0, 1, 3, 4, 5], "deleteri": 0, "alwai": 0, "case": [0, 1, 4], "By": [0, 5], "default": [0, 2, 5], "onli": [0, 1, 4, 5], "combin": [0, 5], "independ": 0, "epistat": [0, 5], "three": [0, 5], "file": [0, 1, 2, 3, 5], "myprot_normpred_evolcombi": 0, "txt": [0, 1, 5], "myprot": 0, "short": 0, "name": [0, 1], "msa": [0, 1, 2, 4, 5], "your": [0, 1, 2, 4, 5], "protein": [0, 1, 3, 5], "contain": [0, 1, 3, 4, 5], "20": [0, 4], "row": 0, "amino": 0, "acid": 0, "alphabet": 0, "order": [0, 1, 5], "l": [0, 3], "column": [0, 3], "where": [0, 3], "number": 0, "interest": [0, 1, 3], "sinc": [0, 4, 5], "thi": [0, 1, 3, 4, 5], "horizont": 0, "easi": 0, "read": 0, "r": [0, 4, 5], "python": [0, 4, 5], "difficult": 0, "find": [0, 5], "you": [0, 1, 3, 4, 5], "myprot_normpred_evolcombitranspos": [], "As": [0, 1], "impli": 0, "transpos": 0, "version": [0, 4, 5], "result": 0, "It": [0, 1, 3, 4, 5], "easier": 0, "just": [], "check": [1, 4], "correspond": [], "prepar": [1, 2], "imag": [0, 3, 4, 5], "oranges_r": [], "matplotlib": 0, "color": 0, "map": 0, "can": [0, 1, 3, 4, 5], "chang": [0, 1, 3], "ad": [0, 3, 4], "colormap": 0, "turbo_r": 0, "more": [0, 1, 3], "fanci": 0, "look": 0, "dure": 0, "call": [0, 1, 4, 5], "argument": 0, "accept": 0, "all": [0, 1, 3, 4, 5], "If": [0, 1, 4, 5], "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, 5], "predict": [0, 5], "same": [0, 1], "format": [0, 1, 3, 5], "a2c": 0, "6": 0, "23": 0, "a2d": 0, "1": [0, 3, 5], "d286f": 0, "need": [1, 5], "instal": [1, 2], "machin": 1, "consult": [1, 5], "follow": [1, 3, 4, 5], "page": [1, 2], "http": [1, 3, 4, 5], "doc": [1, 5], "com": [1, 3, 4, 5], "i": [1, 3, 4], "am": 1, "assum": [0, 1, 5], "some": [1, 5], "basic": [1, 5], "familiar": 1, "linux": [1, 4, 5], "unix": 1, "maco": 1, "termin": [1, 3, 5], "command": [1, 3, 4, 5], "let": [1, 3, 5], "s": [1, 3, 4, 5], "start": [1, 3], "our": [1, 3, 4, 5], "favorit": 1, "app": 1, "must": [1, 5], "creat": [1, 3], "folder": [1, 3, 4, 5], "tutori": 1, "go": [1, 3, 4], "empti": 1, "mkdir": [1, 4], "cd": [1, 3, 4], "download": [1, 4, 5], "sampl": 1, "provid": 1, "repositori": [1, 4, 5], "exercis": 1, "first": [1, 5], "sequenc": [0, 1, 3, 5], "align": [1, 3, 5], "fasta": [0, 1, 3, 5], "wget": [1, 4], "gitlab": [1, 4], "lcqb": [1, 4], "upmc": [1, 4], "fr": [1, 4], "tekpinar": [1, 3, 4, 5], "raw": [1, 2], "8d766d4d11af0e93c9da8fc2c5cc1bfc457d2936": 1, "aliblat": 1, "don": 1, "t": 1, "try": 1, "curl": 1, "pleas": [1, 3, 4, 5], "verifi": 1, "now": [1, 3, 4], "pdb": [1, 2, 5], "databank": 1, "blat": [1, 5], "af2": 1, "In": [1, 4, 5], "make": [1, 3, 4], "sure": [1, 3], "sudo": [1, 3, 4], "h": 1, "show": [1, 5], "list": [1, 3, 4], "option": [1, 5], "good": 1, "track": 1, "On": [1, 5], "mai": [0, 1], "word": 1, "befor": [1, 3, 5], "ti": [1, 3], "rm": [1, 3, 4], "mount": [1, 3], "type": [1, 3, 5], "bind": [1, 3], "sourc": [1, 3, 4, 5], "pwd": [1, 3], "target": [1, 3], "home": [1, 3, 4], "research": [1, 3, 4, 5], "myexampl": [1, 3], "v1": [1, 3], "3": [4, 5], "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, 5], "evolutionari": [1, 4, 5], "inform": [1, 5], "from": [1, 3, 4, 5], "an": [0, 1, 3, 4], "esgemme_path": [], "py": [], "f": 4, "after": [0, 1, 4], "few": [1, 3], "minut": [1, 3], "least": 1, "two": [1, 5], "blat_normpred_evolcombi": 1, "png": [0, 1, 5], "util": [1, 4], "structur": [1, 3, 5], "highli": [1, 5], "recommend": [1, 4, 5], "pdbfile": [1, 5], "normweightmod": [], "sstjetormax": [], "bunch": 1, "mut": 1, "simpl": 1, "text": 1, "each": [0, 1, 5], "line": [1, 4, 5], "d26a": 1, "fortun": 1, "master": [1, 4], "stiffler_2015_blat_ecolx": 1, "similar": 1, "possibl": [1, 5], "wai": [1, 5], "do": [1, 3, 4], "without": 1, "m": [1, 5], "includ": 1, "code": [], "bash": [1, 5], "output": [1, 2, 5], "complet": 1, "differ": 1, "scan": 1, "its": [1, 4, 5], "separ": [1, 5], "space": 1, "addit": [1, 5], "won": 1, "like": [0, 1, 3, 4, 5], "sometim": 1, "doubl": 1, "tripl": 1, "perform": 1, "e26d": 1, "y44r": 1, "e56n": 1, "a77f": 1, "h94v": 1, "second": 1, "colon": [1, 5], "charact": [0, 1], "via": [2, 5], "docker": [2, 3, 4, 5], "requir": [2, 3, 4], "get": [2, 4], "exampl": [2, 3, 5], "input": 2, "data": 2, "singl": [2, 5], "point": [2, 5], "mutat": [2, 3, 5], "calcul": [2, 5], "multipl": [2, 3, 5], "run": [2, 3], "sever": 2, "job": 2, "analyz": 2, "modifi": [2, 4], "score": [2, 5], "Their": 2, "interpret": 2, "entir": [2, 5], "landscap": [2, 5], "select": [2, 3], "own": [2, 4], "colabfold": [2, 5], "depend": [2, 3, 5], "environ": 2, "configur": 2, "conf": 2, "index": 2, "modul": [2, 5], "search": 2, "understand": 3, "certain": 3, "gap": [3, 5], "quickest": 3, "method": 3, "obtain": [3, 4, 5], "both": [3, 5], "web": [3, 4, 5], "site": [3, 4, 5], "colab": [3, 5], "googl": [3, 5], "github": [3, 4, 5], "sokrypton": [3, 5], "blob": [3, 5], "main": [3, 5], "alphafold2": [3, 5], "ipynb": [3, 5], "sign": 3, "gmail": 3, "account": [3, 4], "click": 3, "connect": 3, "button": 3, "top": 3, "right": 3, "hand": [3, 5], "side": 3, "clean": [3, 4], "query_sequ": 3, "box": 3, "past": 3, "For": [3, 5], "me": 3, "adenyl": 3, "kinas": 3, "ak": 3, "my": [3, 4], "www": [3, 4, 5], "rcsb": 3, "org": [3, 4, 5], "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, 5], "process": 3, "take": 3, "hour": 3, "size": 3, "give": 3, "a3m": [3, 5], "up": [3, 5], "5": [1, 3], "model": [3, 5], "put": 3, "directori": [3, 5], "unfortun": 3, "those": 3, "gui": [3, 5], "program": [0, 3, 4], "ugen": [3, 5], "jalview": [3, 5], "labor": 3, "intens": 3, "procedur": 3, "here": [3, 4], "small": 3, "develop": [3, 4], "esgemm": 4, "script": [1, 3, 4, 5], "hhsuit": [3, 4], "convert": 3, "reformat": 3, "pl": 3, "fa": 3, "final": [3, 5], "demust": 3, "removegap": 3, "o": [3, 4], "ake_nogap": 3, "congratul": 3, "ii": [], "myprotein": 3, "implement": [4, 5], "ha": [0, 4, 5], "been": [4, 5], "test": [4, 5], "mani": [4, 5], "determin": [4, 5], "user": [4, 5], "come": [4, 5], "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, 5], "cran": 4, "project": 4, "html": [], "dssp": 4, "secondari": 4, "These": [], "abl": 4, "defin": 4, "export": 4, "variabl": 4, "path": [1, 4], "insid": [1, 4], "import": [1, 4, 5], "essenti": 4, "paramet": [4, 5], "part": [3, 4], "intern": 4, "etc": 4, "correct": 4, "softwar": 4, "section": 4, "accord": [4, 5], "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, 5], "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": [1, 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, 5], "Then": [1, 4], "rscript": 4, "e": [4, 5], "repo": 4, "ev_coupl": 4, "pip3": 4, "debbiemarkslab": 4, "plmc": 4, "openmp32": 4, "cp": 4, "one": [0, 3], "last": 3, "reach": 3, "goal": 3, "id": 3, "descript": 3, "too": 3, "long": 3, "shorten": 3, "them": [3, 5], "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, 5], "extra": 3, "jet2_path": 4, "open": [0, 4], "gedit": 4, "below": [4, 5], "end": [4, 5], "save": 4, "exit": 4, "forget": 4, "replac": 4, "so": 4, "taken": 4, "Of": 4, "cours": 4, "would": [4, 5], "git": 4, "clone": 4, "b": 4, "4": [], "prescott": [1, 3], "escott": 2, "popul": 5, "awar": 5, "effect": [0, 5], "introduct": 2, "usag": 2, "cite": [], "licens": [], "mit": [], "logo": [], "made": 5, "other": 5, "incorpor": 5, "frequenc": 5, "due": 5, "mandatori": 5, "queri": [0, 5], "One": 5, "fastest": 5, "produc": [0, 5], "pragram": 5, "net": 5, "purpos": 5, "normpredcombi": 5, "gnomad": 5, "csv": [0, 5], "broadinstitut": 5, "document": 5, "further": 5, "detail": 5, "inputali": 5, "issu": 5, "A": 5, "quick": 5, "access": 5, "posit": 5, "altern": 5, "set": 5, "given": 5, "g": 5, "d136r": 5, "v271a": 5, "mlh1_normpred_evolcombi": 5, "gnomad_v2": 5, "1_mlh1_human_ensg00000076242": 5, "mlh1": 5, "which": 5, "frequeci": [], "link": 5, "soon": [], "img": [], "shield": [], "io": [], "badg": [], "yellow": [], "svg": [], "opensourc": [], "what": 2, "citat": 2, "mustafa": 5, "thoma": 5, "henri": 5, "alessandra": 5, "carbon": 5, "accur": 5, "missens": 5, "myprot_normpred_evolcombitransposedranksort": 0, "revers": 0, "ranksort": 0, "spreadsheet": 0, "ms": 0, "excel": 0, "origin": 0, "indic": 0, "high": 0, "longer": 0, "than": 0, "500": 0, "residu": 0, "segment": 0, "autom": 1, "within": 1, "v": 1, "veri": 1, "execut": 1, "typic": 1, "abov": 1, "gnomad_v4": 5, "0_mlh1_human_ensg00000076242": 5, "v4": 5, "comprehens": 5, "publicli": 5, "avail": 5, "human": 5, "dataset": 5, "far": 5, "know": 5, "v2": 5, "specifi": 5, "gnomadvers": 5, "about": 5, "non": 5, "variant": 5, "pathogen": 5, "benign": 5, "label": 5, "clinvar": 5, "vs": 5, "how": 5, "affect": 5, "acalcul": 5}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"analyz": 0, "modifi": 0, "esgemm": [], "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, 5], "get": 1, "exampl": 1, "input": [1, 3, 5], "data": [1, 5], "obtain": 1, "predict": 1, "effect": 1, "subset": 1, "run": [1, 5], "sever": 1, "job": 1, "welcom": 2, "s": [], "document": 2, "content": 2, "indic": 2, "tabl": 2, "prepar": [3, 4], "your": 3, "own": 3, "msa": 3, "pdb": 3, "colabfold": 3, "instal": [4, 5], "depend": 4, "sourc": [], "code": [], "environ": 4, "configur": 4, "default": 4, "conf": 4, "file": 4, "prescott": [2, 4, 5], "escott": [0, 1, 5], "popul": [], "awar": [], "epistat": [], "structur": [], "model": [], "introduct": 5, "usag": 5, "program": 5, "cite": [], "what": 5, "citat": 5}, "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", "introduction", "singularity"], "filenames": ["analysis.rst", "docker.rst", "index.rst", "input-preparation.rst", "installation.rst", "introduction.rst", "singularity.rst"], "titles": ["Analyzing and Modifying the ESCOTT Output", "Using ESCOTT via Docker", "Welcome to PRESCOTT documentation!", "Preparing Your Own Input", "Installation", "Introduction", "Using ESCOTT via Singularity"], "terms": {"There": [0, 3], "hardcod": 0, "limit": 0, "howev": [0, 1, 3, 5, 6], "valu": 0, "rang": 0, "between": 0, "12": 0, "2": [0, 5, 6], "gener": 0, "The": [0, 1, 3, 5], "lower": 0, "mean": 0, "impact": [0, 1, 3], "while": 0, "close": 0, "0": [0, 1, 3, 4, 5, 6], "doe": [0, 3], "have": [0, 1, 3, 4, 5, 6], "ani": [0, 5], "signific": 0, "we": [0, 1, 3, 4, 5], "should": [0, 4, 5], "note": [0, 1, 4, 5, 6], "most": [0, 5], "ar": [0, 1, 3, 4, 5, 6], "deleteri": 0, "alwai": 0, "case": [0, 1, 4], "By": [0, 5], "default": [0, 2, 5], "onli": [0, 1, 4, 5], "combin": [0, 5], "independ": 0, "epistat": [0, 5], "three": [0, 5], "file": [0, 1, 2, 3, 5, 6], "myprot_normpred_evolcombi": 0, "txt": [0, 1, 5], "myprot": 0, "short": 0, "name": [0, 1], "msa": [0, 1, 2, 4, 5], "your": [0, 1, 2, 4, 5, 6], "protein": [0, 1, 3, 5], "contain": [0, 1, 3, 4, 5], "20": [0, 4], "row": 0, "amino": 0, "acid": 0, "alphabet": 0, "order": [0, 1, 5], "l": [0, 3], "column": [0, 3], "where": [0, 3, 6], "number": 0, "interest": [0, 1, 3], "sinc": [0, 4, 5], "thi": [0, 1, 3, 4, 5, 6], "horizont": 0, "easi": 0, "read": 0, "r": [0, 4, 5], "python": [0, 4, 5], "difficult": 0, "find": [0, 5, 6], "you": [0, 1, 3, 4, 5, 6], "myprot_normpred_evolcombitranspos": [], "As": [0, 1], "impli": 0, "transpos": 0, "version": [0, 4, 5, 6], "result": 0, "It": [0, 1, 3, 4, 5], "easier": 0, "just": [], "check": [1, 4], "correspond": [], "prepar": [1, 2, 6], "imag": [0, 3, 4, 5, 6], "oranges_r": [], "matplotlib": 0, "color": 0, "map": 0, "can": [0, 1, 3, 4, 5, 6], "chang": [0, 1, 3, 6], "ad": [0, 3, 4], "colormap": 0, "turbo_r": 0, "more": [0, 1, 3], "fanci": 0, "look": 0, "dure": 0, "call": [0, 1, 4, 5], "argument": 0, "accept": 0, "all": [0, 1, 3, 4, 5], "If": [0, 1, 4, 5, 6], "want": [0, 1, 3, 6], "see": [0, 1, 3], "contribut": 0, "well": [0, 1], "add": [0, 4], "verbos": 0, "true": [0, 4], "us": [0, 2, 3, 4, 5], "predict": [0, 5], "same": [0, 1], "format": [0, 1, 3, 5], "a2c": 0, "6": [0, 6], "23": 0, "a2d": 0, "1": [0, 3, 5, 6], "d286f": 0, "need": [1, 5, 6], "instal": [1, 2, 6], "machin": 1, "consult": [1, 5], "follow": [1, 3, 4, 5, 6], "page": [1, 2, 6], "http": [1, 3, 4, 5, 6], "doc": [1, 5], "com": [1, 3, 4, 5, 6], "i": [1, 3, 4, 6], "am": 1, "assum": [0, 1, 5], "some": [1, 5], "basic": [1, 5], "familiar": 1, "linux": [1, 4, 5], "unix": 1, "maco": 1, "termin": [1, 3, 5], "command": [1, 3, 4, 5], "let": [1, 3, 5], "s": [1, 3, 4, 5], "start": [1, 3], "our": [1, 3, 4, 5], "favorit": 1, "app": 1, "must": [1, 5, 6], "creat": [1, 3], "folder": [1, 3, 4, 5, 6], "tutori": 1, "go": [1, 3, 4, 6], "empti": 1, "mkdir": [1, 4], "cd": [1, 3, 4], "download": [1, 4, 5], "sampl": 1, "provid": [1, 6], "repositori": [1, 4, 5, 6], "exercis": 1, "first": [1, 5, 6], "sequenc": [0, 1, 3, 5], "align": [1, 3, 5], "fasta": [0, 1, 3, 5, 6], "wget": [1, 4], "gitlab": [1, 4], "lcqb": [1, 4], "upmc": [1, 4], "fr": [1, 4], "tekpinar": [1, 3, 4, 5, 6], "raw": [1, 2], "8d766d4d11af0e93c9da8fc2c5cc1bfc457d2936": 1, "aliblat": [1, 6], "don": 1, "t": 1, "try": 1, "curl": 1, "pleas": [1, 3, 4, 5, 6], "verifi": 1, "now": [1, 3, 4], "pdb": [1, 2, 5, 6], "databank": 1, "blat": [1, 5, 6], "af2": [1, 6], "In": [1, 4, 5, 6], "make": [1, 3, 4], "sure": [1, 3], "sudo": [1, 3, 4, 6], "h": [1, 6], "show": [1, 5, 6], "list": [1, 3, 4], "option": [1, 5], "good": 1, "track": 1, "On": [1, 5], "mai": [0, 1], "word": 1, "befor": [1, 3, 5], "ti": [1, 3], "rm": [1, 3, 4], "mount": [1, 3], "type": [1, 3, 5], "bind": [1, 3], "sourc": [1, 3, 4, 5, 6], "pwd": [1, 3, 6], "target": [1, 3], "home": [1, 3, 4, 6], "research": [1, 3, 4, 5], "myexampl": [1, 3], "v1": [1, 3, 6], "3": [4, 5, 6], "virtual": 1, "oper": 1, "system": [1, 4, 6], "previou": 1, "when": 1, "ls": [1, 3], "suppos": [1, 3], "host": 1, "place": 1, "step": [1, 3, 4, 5, 6], "evolutionari": [1, 4, 5], "inform": [1, 5], "from": [1, 3, 4, 5, 6], "an": [0, 1, 3, 4, 6], "esgemme_path": [], "py": [], "f": 4, "after": [0, 1, 4], "few": [1, 3], "minut": [1, 3], "least": 1, "two": [1, 5, 6], "blat_normpred_evolcombi": 1, "png": [0, 1, 5], "util": [1, 4], "structur": [1, 3, 5], "highli": [1, 5], "recommend": [1, 4, 5], "pdbfile": [1, 5, 6], "normweightmod": [], "sstjetormax": [], "bunch": 1, "mut": 1, "simpl": 1, "text": 1, "each": [0, 1, 5], "line": [1, 4, 5], "d26a": 1, "fortun": 1, "master": [1, 4], "stiffler_2015_blat_ecolx": 1, "similar": 1, "possibl": [1, 5], "wai": [1, 5], "do": [1, 3, 4], "without": 1, "m": [1, 5], "includ": 1, "code": [], "bash": [1, 5], "output": [1, 2, 5], "complet": 1, "differ": [1, 6], "scan": 1, "its": [1, 4, 5], "separ": [1, 5], "space": 1, "addit": [1, 5, 6], "won": 1, "like": [0, 1, 3, 4, 5], "sometim": 1, "doubl": 1, "tripl": 1, "perform": [1, 6], "e26d": 1, "y44r": 1, "e56n": 1, "a77f": 1, "h94v": 1, "second": 1, "colon": [1, 5], "charact": [0, 1], "via": [2, 5], "docker": [2, 3, 4, 5, 6], "requir": [2, 3, 4], "get": [2, 4], "exampl": [2, 3, 5], "input": 2, "data": [2, 6], "singl": [2, 5], "point": [2, 5], "mutat": [2, 3, 5], "calcul": [2, 5], "multipl": [2, 3, 5], "run": [2, 3, 6], "sever": 2, "job": 2, "analyz": 2, "modifi": [2, 4], "score": [2, 5], "Their": 2, "interpret": 2, "entir": [2, 5], "landscap": [2, 5], "select": [2, 3], "own": [2, 4], "colabfold": [2, 5], "depend": [2, 3, 5], "environ": 2, "configur": 2, "conf": 2, "index": 2, "modul": [2, 5], "search": 2, "understand": 3, "certain": 3, "gap": [3, 5], "quickest": 3, "method": 3, "obtain": [3, 4, 5], "both": [3, 5, 6], "web": [3, 4, 5], "site": [3, 4, 5], "colab": [3, 5], "googl": [3, 5], "github": [3, 4, 5, 6], "sokrypton": [3, 5], "blob": [3, 5, 6], "main": [3, 5, 6], "alphafold2": [3, 5], "ipynb": [3, 5], "sign": 3, "gmail": 3, "account": [3, 4], "click": 3, "connect": 3, "button": 3, "top": 3, "right": 3, "hand": [3, 5], "side": 3, "clean": [3, 4], "query_sequ": 3, "box": 3, "past": 3, "For": [3, 5], "me": 3, "adenyl": 3, "kinas": 3, "ak": 3, "my": [3, 4], "www": [3, 4, 5], "rcsb": 3, "org": [3, 4, 5], "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, 5], "process": 3, "take": 3, "hour": 3, "size": 3, "give": 3, "a3m": [3, 5], "up": [3, 5], "5": [1, 3], "model": [3, 5], "put": 3, "directori": [3, 5], "unfortun": 3, "those": 3, "gui": [3, 5], "program": [0, 3, 4], "ugen": [3, 5], "jalview": [3, 5], "labor": 3, "intens": 3, "procedur": 3, "here": [3, 4, 6], "small": 3, "develop": [3, 4], "esgemm": 4, "script": [1, 3, 4, 5], "hhsuit": [3, 4], "convert": 3, "reformat": 3, "pl": 3, "fa": 3, "final": [3, 5], "demust": 3, "removegap": 3, "o": [3, 4], "ake_nogap": 3, "congratul": 3, "ii": [], "myprotein": 3, "implement": [4, 5], "ha": [0, 4, 5], "been": [4, 5], "test": [4, 5], "mani": [4, 5, 6], "determin": [4, 5], "user": [4, 5], "come": [4, 5], "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, 5], "cran": 4, "project": 4, "html": [], "dssp": 4, "secondari": 4, "These": 6, "abl": 4, "defin": 4, "export": 4, "variabl": 4, "path": [1, 4], "insid": [1, 4], "import": [1, 4, 5], "essenti": 4, "paramet": [4, 5], "part": [3, 4], "intern": 4, "etc": [4, 6], "correct": 4, "softwar": 4, "section": 4, "accord": [4, 5], "ubuntu": 4, "22": 4, "04": 4, "apt": 4, "updat": [4, 6], "fix": 4, "miss": 4, "y": 4, "properti": 4, "common": 4, "autotool": 4, "dev": 4, "automak": 4, "build": [4, 6], "python3": 4, "pip": 4, "base": [4, 5], "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": [1, 4], "bin": 4, "mkdssp": 4, "soedinglab": 4, "hh": 4, "suit": 4, "releas": [4, 6], "v3": 4, "avx2": 4, "tar": 4, "gz": 4, "mv": 4, "xvfz": 4, "perman": 4, "bashrc": 4, "profil": 4, "bash_profil": 4, "locat": [4, 6], "wa": 4, "therefor": [4, 5], "Then": [1, 4], "rscript": 4, "e": [4, 5], "repo": 4, "ev_coupl": 4, "pip3": 4, "debbiemarkslab": 4, "plmc": 4, "openmp32": 4, "cp": 4, "one": [0, 3], "last": 3, "reach": 3, "goal": 3, "id": 3, "descript": 3, "too": 3, "long": 3, "shorten": 3, "them": [3, 5, 6], "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, 5], "extra": 3, "jet2_path": 4, "open": [0, 4], "gedit": 4, "below": [4, 5], "end": [4, 5], "save": 4, "exit": 4, "forget": 4, "replac": 4, "so": 4, "taken": 4, "Of": 4, "cours": 4, "would": [4, 5], "git": 4, "clone": 4, "b": 4, "4": 6, "prescott": [1, 3, 6], "escott": 2, "popul": 5, "awar": 5, "effect": [0, 5], "introduct": 2, "usag": 2, "cite": [], "licens": [], "mit": [], "logo": [], "made": 5, "other": 5, "incorpor": 5, "frequenc": 5, "due": [5, 6], "mandatori": 5, "queri": [0, 5], "One": 5, "fastest": 5, "produc": [0, 5], "pragram": 5, "net": 5, "purpos": 5, "normpredcombi": 5, "gnomad": 5, "csv": [0, 5], "broadinstitut": 5, "document": 5, "further": 5, "detail": 5, "inputali": 5, "issu": 5, "A": 5, "quick": 5, "access": 5, "posit": 5, "altern": 5, "set": 5, "given": 5, "g": 5, "d136r": 5, "v271a": 5, "mlh1_normpred_evolcombi": 5, "gnomad_v2": 5, "1_mlh1_human_ensg00000076242": 5, "mlh1": 5, "which": 5, "frequeci": [], "link": 5, "soon": [], "img": [], "shield": [], "io": [], "badg": [], "yellow": [], "svg": [], "opensourc": [], "what": 2, "citat": 2, "mustafa": 5, "thoma": 5, "henri": 5, "alessandra": 5, "carbon": 5, "accur": 5, "missens": 5, "myprot_normpred_evolcombitransposedranksort": 0, "revers": 0, "ranksort": 0, "spreadsheet": 0, "ms": 0, "excel": 0, "origin": 0, "indic": 0, "high": [0, 6], "longer": 0, "than": 0, "500": 0, "residu": 0, "segment": 0, "autom": 1, "within": 1, "v": 1, "veri": 1, "execut": 1, "typic": 1, "abov": 1, "gnomad_v4": 5, "0_mlh1_human_ensg00000076242": 5, "v4": 5, "comprehens": 5, "publicli": 5, "avail": 5, "human": 5, "dataset": 5, "far": 5, "know": 5, "v2": 5, "specifi": 5, "gnomadvers": 5, "about": 5, "non": 5, "variant": 5, "pathogen": 5, "benign": 5, "label": 5, "clinvar": 5, "vs": 5, "how": [5, 6], "affect": 5, "acalcul": 5, "comput": 6, "permiss": 6, "reason": 6, "singulartii": 6, "sif": 6, "onlin": 6, "thing": 6, "instruct": 6, "sylab": 6, "md": 6, "deb": 6, "rpm": 6, "exec": 6, "your_singularity_dir": 6, "singular": 2}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"analyz": 0, "modifi": 0, "esgemm": [], "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, 6], "via": [1, 6], "docker": 1, "requir": [1, 5], "get": 1, "exampl": 1, "input": [1, 3, 5], "data": [1, 5], "obtain": 1, "predict": 1, "effect": 1, "subset": 1, "run": [1, 5], "sever": 1, "job": 1, "welcom": 2, "s": [], "document": 2, "content": 2, "indic": 2, "tabl": 2, "prepar": [3, 4], "your": 3, "own": 3, "msa": 3, "pdb": 3, "colabfold": 3, "instal": [4, 5], "depend": 4, "sourc": [], "code": [], "environ": 4, "configur": 4, "default": 4, "conf": 4, "file": 4, "prescott": [2, 4, 5], "escott": [0, 1, 5, 6], "popul": [], "awar": [], "epistat": [], "structur": [], "model": [], "introduct": 5, "usag": 5, "program": 5, "cite": [], "what": 5, "citat": 5, "singular": 6}, "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
......@@ -80,19 +80,24 @@
\newlabel{input-preparation::doc}{{4}{11}{Preparing Your Own Input}{chapter.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}Preparing Your Input MSA and PDB with Colabfold}{11}{section.4.1}\protected@file@percent }
\newlabel{input-preparation:preparing-your-input-msa-and-pdb-with-colabfold}{{4.1}{11}{Preparing Your Input MSA and PDB with Colabfold}{section.4.1}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Installation}{13}{chapter.5}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Using ESCOTT via Singularity}{13}{chapter.5}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{installation:installation}{{5}{13}{Installation}{chapter.5}{}}
\newlabel{installation::doc}{{5}{13}{Installation}{chapter.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}Installing the dependencies:}{13}{section.5.1}\protected@file@percent }
\newlabel{installation:installing-the-dependencies}{{5.1}{13}{Installing the dependencies:}{section.5.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}Preparation of the environment and installation of PRESCOTT}{13}{section.5.2}\protected@file@percent }
\newlabel{installation:preparation-of-the-environment-and-installation-of-prescott}{{5.2}{13}{Preparation of the environment and installation of PRESCOTT}{section.5.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Configuring default.conf file}{15}{section.5.3}\protected@file@percent }
\newlabel{installation:configuring-default-conf-file}{{5.3}{15}{Configuring default.conf file}{section.5.3}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {6}Indices and tables}{17}{chapter.6}\protected@file@percent }
\newlabel{singularity:using-escott-via-singularity}{{5}{13}{Using ESCOTT via Singularity}{chapter.5}{}}
\newlabel{singularity::doc}{{5}{13}{Using ESCOTT via Singularity}{chapter.5}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {6}Installation}{15}{chapter.6}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{index:indices-and-tables}{{6}{17}{Indices and tables}{chapter.6}{}}
\gdef \@abspage@last{21}
\newlabel{installation:installation}{{6}{15}{Installation}{chapter.6}{}}
\newlabel{installation::doc}{{6}{15}{Installation}{chapter.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Installing the dependencies:}{15}{section.6.1}\protected@file@percent }
\newlabel{installation:installing-the-dependencies}{{6.1}{15}{Installing the dependencies:}{section.6.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.2}Preparation of the environment and installation of PRESCOTT}{15}{section.6.2}\protected@file@percent }
\newlabel{installation:preparation-of-the-environment-and-installation-of-prescott}{{6.2}{15}{Preparation of the environment and installation of PRESCOTT}{section.6.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.3}Configuring default.conf file}{17}{section.6.3}\protected@file@percent }
\newlabel{installation:configuring-default-conf-file}{{6.3}{17}{Configuring default.conf file}{section.6.3}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {7}Indices and tables}{19}{chapter.7}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{index:indices-and-tables}{{7}{19}{Indices and tables}{chapter.7}{}}
\gdef \@abspage@last{23}
# Fdb version 3
["makeindex prescott.idx"] 1691770116 "prescott.idx" "prescott.ind" "prescott" 1700227059
"prescott.idx" 1700227058 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
["makeindex prescott.idx"] 1691770116 "prescott.idx" "prescott.ind" "prescott" 1701352785
"prescott.idx" 1701352785 0 d41d8cd98f00b204e9800998ecf8427e "pdflatex"
(generated)
"prescott.ilg"
"prescott.ind"
["pdflatex"] 1700227058 "prescott.tex" "prescott.pdf" "prescott" 1700227059
["pdflatex"] 1701352784 "prescott.tex" "prescott.pdf" "prescott" 1701352785
"/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" 1692610720 128028 f533b797fba58d231669ea19e894e23e ""
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1692610730 1455466 cf5d347cc06e6f91065ccb2619b82e95 ""
"prescott.aux" 1700227058 8757 49bd9be15e4a1990a75c401ccac48f11 "pdflatex"
"prescott.aux" 1701352785 9143 aed8bca5ac12c0ebd50681d413e58d41 "pdflatex"
"prescott.ind" 1694694190 0 d41d8cd98f00b204e9800998ecf8427e "makeindex prescott.idx"
"prescott.out" 1700227058 6307 8119393c8f110ffbb217a1e7b2c390de "pdflatex"
"prescott.tex" 1700227058 33833 c5b13bae0058b8edd46789a6b12ea3ec ""
"prescott.toc" 1700227058 2706 6a2a8c488f73b27e9fedb6cddefdfa53 "pdflatex"
"prescott.out" 1701352785 6500 451b70ed444684f0bdee8ace15638a1b "pdflatex"
"prescott.tex" 1701352784 36391 7990fd9a7dcbf4423b4d9f0a3d541afe ""
"prescott.toc" 1701352785 2791 ec37ce19b28894e4de4791b16a96dddb "pdflatex"
"sphinx.sty" 1691571542 12780 919e6ba449302e2597e7722681a087c6 ""
"sphinxhighlight.sty" 1700227057 6679 76d10c62e0f0661410b46f5db6118e26 ""
"sphinxhighlight.sty" 1701352784 6679 76d10c62e0f0661410b46f5db6118e26 ""
"sphinxlatexadmonitions.sty" 1691571543 6238 2d867d769abf3f72abc17ef52adff78b ""
"sphinxlatexcontainers.sty" 1691571543 901 d3a3a1b7b2547f47ade2499350b5c420 ""
"sphinxlatexgraphics.sty" 1691571543 4840 a9578332b6f3b35e198751fb632c9b79 ""
......@@ -161,7 +161,7 @@
"sphinxlatexstyletext.sty" 1691571543 6177 c18841ce3fafc366cd3b145f8faa4c37 ""
"sphinxlatextables.sty" 1691571542 21848 2827eb0b11b99b185a8b77317d3e131c ""
"sphinxmanual.cls" 1691571543 4241 7b0d7a37df7b5715fb0dbd585c52ecdb ""
"sphinxmessages.sty" 1700227058 745 3f5fcd6cdd7964ed608767954a8ced6f ""
"sphinxmessages.sty" 1701352784 745 3f5fcd6cdd7964ed608767954a8ced6f ""
"sphinxoptionsgeometry.sty" 1691571542 2061 47bb34b8ed8a78823eb0c886abfb9f4d ""
"sphinxoptionshyperref.sty" 1691571543 1094 79beb8b8a3f10784f8cce804e0f9d3aa ""
"sphinxpackagefootnote.sty" 1691571543 15217 dd26fe418b6fb1b26b18f042a7f43d40 ""
......
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex 2023.8.21) 17 NOV 2023 14:17
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex 2023.8.21) 30 NOV 2023 14:59
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
......@@ -814,25 +814,29 @@ LaTeX Font Info: Font shape `T1/txtt/m/it' in size <10> not available
Chapter 5.
[13
] [14]
Underfull \hbox (badness 7981) in paragraph at lines 829--832
] [14
]
Chapter 6.
[15] [16]
Underfull \hbox (badness 7981) in paragraph at lines 904--907
[]\T1/qtm/m/n/10 #Down-load PRESCOTT from [][]$http : / / gitlab . lcqb . upmc
. fr / tekpinar / PRESCOTT$[][] repos-i-tory and go in-side the
[]
[15] [16
[17] [18
]
Chapter 6.
(./prescott.ind) [17] (./prescott.aux)
Chapter 7.
(./prescott.ind) [19] (./prescott.aux)
Package rerunfilecheck Info: File `prescott.out' has not changed.
(rerunfilecheck) Checksum: 8119393C8F110FFBB217A1E7B2C390DE;6307.
(rerunfilecheck) Checksum: 451B70ED444684F0BDEE8ACE15638A1B;6500.
)
Here is how much of TeX's memory you used:
14692 strings out of 480204
234053 string characters out of 5895010
598445 words of memory out of 5000000
32211 multiletter control sequences out of 15000+600000
14699 strings out of 480204
234164 string characters out of 5895010
598549 words of memory out of 5000000
32215 multiletter control sequences out of 15000+600000
520869 words of font info for 70 fonts, out of 8000000 for 9000
37 hyphenation exceptions out of 8191
70i,11n,76p,434b,568s stack positions out of 5000i,500n,10000p,200000b,80000s
......@@ -846,10 +850,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 prescott.pdf (21 pages, 173782 bytes).
Output written on prescott.pdf (23 pages, 177499 bytes).
PDF statistics:
332 PDF objects out of 1000 (max. 8388607)
289 compressed objects within 3 object streams
67 named destinations out of 1000 (max. 500000)
253 words of extra memory for PDF output out of 10000 (max. 10000000)
350 PDF objects out of 1000 (max. 8388607)
304 compressed objects within 4 object streams
70 named destinations out of 1000 (max. 500000)
261 words of extra memory for PDF output out of 10000 (max. 10000000)
......@@ -22,8 +22,9 @@
\BOOKMARK [1][-]{section.3.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.3}% 22
\BOOKMARK [0][-]{chapter.4}{\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}{}% 23
\BOOKMARK [1][-]{section.4.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.4}% 24
\BOOKMARK [0][-]{chapter.5}{\376\377\000I\000n\000s\000t\000a\000l\000l\000a\000t\000i\000o\000n}{}% 25
\BOOKMARK [1][-]{section.5.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.5}% 26
\BOOKMARK [1][-]{section.5.2}{\376\377\000P\000r\000e\000p\000a\000r\000a\000t\000i\000o\000n\000\040\000o\000f\000\040\000t\000h\000e\000\040\000e\000n\000v\000i\000r\000o\000n\000m\000e\000n\000t\000\040\000a\000n\000d\000\040\000i\000n\000s\000t\000a\000l\000l\000a\000t\000i\000o\000n\000\040\000o\000f\000\040\000P\000R\000E\000S\000C\000O\000T\000T}{chapter.5}% 27
\BOOKMARK [1][-]{section.5.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.5}% 28
\BOOKMARK [0][-]{chapter.6}{\376\377\000I\000n\000d\000i\000c\000e\000s\000\040\000a\000n\000d\000\040\000t\000a\000b\000l\000e\000s}{}% 29
\BOOKMARK [0][-]{chapter.5}{\376\377\000U\000s\000i\000n\000g\000\040\000E\000S\000C\000O\000T\000T\000\040\000v\000i\000a\000\040\000S\000i\000n\000g\000u\000l\000a\000r\000i\000t\000y}{}% 25
\BOOKMARK [0][-]{chapter.6}{\376\377\000I\000n\000s\000t\000a\000l\000l\000a\000t\000i\000o\000n}{}% 26
\BOOKMARK [1][-]{section.6.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.6}% 27
\BOOKMARK [1][-]{section.6.2}{\376\377\000P\000r\000e\000p\000a\000r\000a\000t\000i\000o\000n\000\040\000o\000f\000\040\000t\000h\000e\000\040\000e\000n\000v\000i\000r\000o\000n\000m\000e\000n\000t\000\040\000a\000n\000d\000\040\000i\000n\000s\000t\000a\000l\000l\000a\000t\000i\000o\000n\000\040\000o\000f\000\040\000P\000R\000E\000S\000C\000O\000T\000T}{chapter.6}% 28
\BOOKMARK [1][-]{section.6.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.6}% 29
\BOOKMARK [0][-]{chapter.7}{\376\377\000I\000n\000d\000i\000c\000e\000s\000\040\000a\000n\000d\000\040\000t\000a\000b\000l\000e\000s}{}% 30
......@@ -61,8 +61,8 @@
\title{prescott}
\date{Nov 17, 2023}
\release{1.5.0}
\date{Nov 30, 2023}
\release{1.6.0}
\author{Mustafa Tekpinar}
\newcommand{\sphinxlogo}{\vbox{}}
\renewcommand{\releasename}{Release}
......@@ -663,6 +663,81 @@ An input PDB: myprotein.pdb
\sphinxstepscope
\chapter{Using ESCOTT via Singularity}
\label{\detokenize{singularity:using-escott-via-singularity}}\label{\detokenize{singularity::doc}}
\sphinxAtStartPar
You can not run docker on many high performance computing systems
due to sudo permissions etc.
However, singularity can be run on them. Due to this reason, I prepared
this file to show how you can prepare a singulartiy sif file from (online) docker
image of PRESCOTT.
\begin{itemize}
\item {}
\sphinxAtStartPar
STEP 0: First thing first! You must have singularity installed on your system.
\begin{quote}
\sphinxAtStartPar
If not, you can find the installation instructions here:
\sphinxurl{https://github.com/sylabs/singularity/blob/main/INSTALL.md}
\sphinxAtStartPar
In addition, there are different releases(deb, rpm or source) in the following page:
\sphinxurl{https://github.com/sylabs/singularity/releases}
\end{quote}
\item {}
\sphinxAtStartPar
STEP 1: Building singularity from the docker image online:
\begin{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
singularity build prescott\PYGZhy{}docker\PYGZhy{}v1.6.0.sif docker://tekpinar/prescott\PYGZhy{}docker:v1.6.0
\end{sphinxVerbatim}
\sphinxAtStartPar
Please note that you will need to change (v1.6.0) to the version you want if there is an update in the version.
\end{quote}
\item {}
\sphinxAtStartPar
STEP 2: Running escott with the sif file:
\begin{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
singularity \PYG{n+nb}{exec} prescott\PYGZhy{}docker\PYGZhy{}v1.6.0.sif escott \PYGZhy{}h
\end{sphinxVerbatim}
\end{quote}
\item {}
\sphinxAtStartPar
STEP 3: Running prescott with the sif file:
\begin{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
singularity \PYG{n+nb}{exec} prescott\PYGZhy{}docker\PYGZhy{}v1.6.0.sif prescott \PYGZhy{}h
\end{sphinxVerbatim}
\end{quote}
\item {} \begin{description}
\sphinxlineitem{STEP 4: Go to the folder where both aliBLAT.fasta and blat\sphinxhyphen{}af2.pdb are located.}\begin{quote}
\sphinxAtStartPar
These two files are provided in the data folder of this repository.
YOUR\_SINGULARITY\_DIR is where prescott\sphinxhyphen{}docker\sphinxhyphen{}v1.6.0.sif file is located.
\end{quote}
\begin{sphinxVerbatim}[commandchars=\\\{\}]
singularity \PYG{n+nb}{exec} \PYGZhy{}\PYGZhy{}home \PYG{l+s+sb}{`}\PYG{n+nb}{pwd}\PYG{l+s+sb}{`} \PYG{n+nv}{\PYGZdl{}YOUR\PYGZus{}SINGULARITY\PYGZus{}DIR}/prescott\PYGZhy{}docker\PYGZhy{}v1.6.0.sif escott aliBLAT.fasta \PYGZhy{}\PYGZhy{}pdbfile blat\PYGZhy{}af2.pdb
\end{sphinxVerbatim}
\end{description}
\end{itemize}
\sphinxstepscope
\chapter{Installation}
\label{\detokenize{installation:installation}}\label{\detokenize{installation::doc}}
\sphinxAtStartPar
......
......@@ -23,8 +23,9 @@
\contentsline {section}{\numberline {3.3}Selected Single Point or Multiple Point Mutation Calculations}{10}{section.3.3}%
\contentsline {chapter}{\numberline {4}Preparing Your Own Input}{11}{chapter.4}%
\contentsline {section}{\numberline {4.1}Preparing Your Input MSA and PDB with Colabfold}{11}{section.4.1}%
\contentsline {chapter}{\numberline {5}Installation}{13}{chapter.5}%
\contentsline {section}{\numberline {5.1}Installing the dependencies:}{13}{section.5.1}%
\contentsline {section}{\numberline {5.2}Preparation of the environment and installation of PRESCOTT}{13}{section.5.2}%
\contentsline {section}{\numberline {5.3}Configuring default.conf file}{15}{section.5.3}%
\contentsline {chapter}{\numberline {6}Indices and tables}{17}{chapter.6}%
\contentsline {chapter}{\numberline {5}Using ESCOTT via Singularity}{13}{chapter.5}%
\contentsline {chapter}{\numberline {6}Installation}{15}{chapter.6}%
\contentsline {section}{\numberline {6.1}Installing the dependencies:}{15}{section.6.1}%
\contentsline {section}{\numberline {6.2}Preparation of the environment and installation of PRESCOTT}{15}{section.6.2}%
\contentsline {section}{\numberline {6.3}Configuring default.conf file}{17}{section.6.3}%
\contentsline {chapter}{\numberline {7}Indices and tables}{19}{chapter.7}%
......@@ -23,7 +23,7 @@ copyright = '2023, Mustafa Tekpinar'
author = 'Mustafa Tekpinar'
# The full version, including alpha/beta/rc tags
release = '1.5.1'
release = '1.6.0'
# -- General configuration ---------------------------------------------------
......
......@@ -14,6 +14,7 @@ Welcome to PRESCOTT documentation!
docker.rst
analysis.rst
input-preparation.rst
singularity.rst
installation.rst
Indices and tables
......
......@@ -41,7 +41,7 @@ Then, source the saved .profile so that the environment variable will be taken i
JET2 is essential and it should be installed to be able to use PRESCOTT.
Preparation of the environment and installation of PRESCOTT
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Step by step installation on Ubuntu 22.04
......
Using ESCOTT via Singularity
============================
You can not run docker on many high performance computing systems
due to sudo permissions etc.
However, singularity can be run on them. Due to this reason, I prepared
this file to show how you can prepare a singulartiy sif file from (online) docker
image of PRESCOTT.
* STEP 0: First thing first! You must have singularity installed on your system.
If not, you can find the installation instructions here:
https://github.com/sylabs/singularity/blob/main/INSTALL.md
In addition, there are different releases(deb, rpm or source) in the following page:
https://github.com/sylabs/singularity/releases
* STEP 1: Building singularity from the docker image online:
.. code:: bash
singularity build prescott-docker-v1.6.0.sif docker://tekpinar/prescott-docker:v1.6.0
Please note that you will need to change (v1.6.0) to the version you want if there is an update in the version.
* STEP 2: Running escott with the sif file:
.. code:: bash
singularity exec prescott-docker-v1.6.0.sif escott -h
* STEP 3: Running prescott with the sif file:
.. code:: bash
singularity exec prescott-docker-v1.6.0.sif prescott -h
* STEP 4: Go to the folder where both aliBLAT.fasta and blat-af2.pdb are located.
These two files are provided in the data folder of this repository.
YOUR_SINGULARITY_DIR is where prescott-docker-v1.6.0.sif file is located.
.. code:: bash
singularity exec --home `pwd` $YOUR_SINGULARITY_DIR/prescott-docker-v1.6.0.sif escott aliBLAT.fasta --pdbfile blat-af2.pdb
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