Skip to content

Commit deede79

Browse files
committed
Fixed permalinks for 0.9.3
1 parent cc790d1 commit deede79

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

tutorials/0.9.3/basics/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /tutorials/0.9.2/basics
2+
permalink: /tutorials/0.9.3/basics
33
layout: splash
44
classes: wide
55
title: "LightDock Basics"

tutorials/0.9.3/dna_docking/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /tutorials/0.9.2/dna_docking
2+
permalink: /tutorials/0.9.3/dna_docking
33
layout: splash
44
classes: wide
55
title: "Protein-DNA Docking"
@@ -26,8 +26,8 @@ Create a directory and copy the sample data provided.
2626
```bash
2727
mkdir 1azp
2828
cd 1azp
29-
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.2/dna_docking/data/1AZP_A.pdb
30-
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.2/dna_docking/data/1AZP_B.pdb
29+
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.3/dna_docking/data/1AZP_A.pdb
30+
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.3/dna_docking/data/1AZP_B.pdb
3131
```
3232

3333
## 2. Specifying residue restraints
@@ -37,7 +37,7 @@ LightDock is able to use information derived from either experimental informatio
3737
To do it so, we first need to create a `restraints.list` file. For the sake of simplicity, we will use a list of residue restraints (3) already formatted for you:
3838

3939
```bash
40-
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.2/dna_docking/data/restraints.list
40+
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.3/dna_docking/data/restraints.list
4141
```
4242

4343
The file `restraints.list` contains three residue restrains on the receptor (protein partner):

tutorials/0.9.3/membrane/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /tutorials/0.9.2/membrane
2+
permalink: /tutorials/0.9.3/membrane
33
layout: splash
44
classes: wide
55
title: "Membrane Docking"
@@ -69,12 +69,12 @@ In order to run this tutorial you will need to have the following software insta
6969
LightDock is distributed as a Python package through the [Python Package Index](https://pypi.org/project/lightdock/) (PyPI) repository.
7070

7171
#### 3.1.1. Command line
72-
Installing LightDock is as simple as creating a virtual environment for **Python 3.6+** and running `pip` command (make sure your instances of `virtualenv` and `pip` are for Python 3.6+ versions). We will install the version *0.9.0* of LightDock which is the first released version with support for the membrane protocol and execution in [Jupyter Notebooks](https://jupyter.org/) (see next section):
72+
Installing LightDock is as simple as creating a virtual environment for **Python 3.6+** and running `pip` command (make sure your instances of `virtualenv` and `pip` are for Python 3.6+ versions). We will install the version *0.9.3.post1* of LightDock which is the latest version with support for the membrane protocol and execution in [Jupyter Notebooks](https://jupyter.org/) (see next section):
7373

7474
```bash
7575
virtualenv venv
7676
source venv/bin/activate
77-
pip install lightdock==0.9.2
77+
pip install lightdock==0.9.3.post1
7878
```
7979

8080
If the installation finished without errors, you should be able to execute LightDock in the terminal:
@@ -86,15 +86,15 @@ lightdock3.py -v
8686
and to see an output similar to this:
8787

8888
<p class="notice--info">
89-
lightdock3 0.9.2
89+
lightdock3 0.9.3.post1
9090
</p>
9191

9292
#### 3.1.2. Jupyter Notebook and Google Colab
9393

9494
Another option to use LightDock is through [Google Colaboratory](https://colab.research.google.com) ("Colab" for short) which allows you to write and execute Python in the browser using *notebooks*. In case of choosing this option, simply execute in a new notebook in the first cell the following command:
9595

9696
```
97-
!pip install lightdock==0.9.2
97+
!pip install lightdock==0.9.3.post1
9898
```
9999

100100
### 3.2. Installing PDB-Tools

tutorials/0.9.3/restraints/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /tutorials/0.9.2/restraints
2+
permalink: /tutorials/0.9.3/restraints
33
layout: splash
44
classes: wide
55
title: "Residue-Restraints Docking"
@@ -16,7 +16,7 @@ title: "Residue-Restraints Docking"
1616

1717
This is a complete example of the LightDock docking protocol to model the [4G6M](https://www.rcsb.org/structure/4g6m) protein complex with the use of **residue restraints**.
1818

19-
**IMPORTANT** Before starting with this tutorial, we advise you to follow the [LightDock basics](/tutorials/0.9.2/basics) and [simple docking](/tutorials/0.9.2/simple_docking) tutorials.
19+
**IMPORTANT** Before starting with this tutorial, we advise you to follow the [LightDock basics](/tutorials/0.9.3/basics) and [simple docking](/tutorials/0.9.3/simple_docking) tutorials.
2020

2121

2222
## 1. Copying the data
@@ -25,8 +25,8 @@ Create a directory and copy the sample data provided.
2525
```bash
2626
mkdir test
2727
cd test
28-
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.2/restraints/data/4G6M_rec.pdb
29-
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.2/restraints/data/4G6M_lig.pdb
28+
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.3/restraints/data/4G6M_rec.pdb
29+
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.3/restraints/data/4G6M_lig.pdb
3030
```
3131

3232
## 2. Specifying residue restraints
@@ -66,7 +66,7 @@ L B.VAL.70 P
6666
For the sake of simplicity, we will use a list of residue restraints already formatted:
6767

6868
```bash
69-
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.2/restraints/data/restraints.list
69+
curl -O https://github.com/raw/lightdock/lightdock.github.io/master/tutorials/0.9.3/restraints/data/restraints.list
7070
```
7171

7272
## 3. Setup

tutorials/0.9.3/rust/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
permalink: /tutorials/0.9.2/rust
2+
permalink: /tutorials/0.9.3/rust
33
layout: splash
44
classes: wide
55
title: "LightDock-Rust"
@@ -8,7 +8,7 @@ title: "LightDock-Rust"
88
<center><h1 style="margin-top:40px">LightDock-Rust</h1></center><br>
99

1010
<center>
11-
<img src="/tutorials/0.9.2/rust/rust.png">
11+
<img src="/tutorials/0.9.3/rust/rust.png">
1212
</center>
1313

1414
* table of contents

0 commit comments

Comments
 (0)