|
6 | 6 |
|
7 | 7 | #### Table of Contents
|
8 | 8 |
|
9 |
| -- [Setup a simulation](#1-setup-a-simulation) |
10 |
| -- [Run a simulation](#2-run-a-simulation) |
11 |
| -- [Generate models](#3-generate-models) |
12 |
| -- [Clustering](#4-clustering) |
| 9 | +- [Introduction](#1-introduction) |
| 10 | +- [Setup a simulation](#2-setup-a-simulation) |
| 11 | +- [Run a simulation](#3-run-a-simulation) |
| 12 | +- [Generate models](#4-generate-models) |
| 13 | +- [Clustering](#5-clustering) |
| 14 | +- [Custom Scoring Functions](#6-custom-scoring-functions) |
13 | 15 |
|
14 |
| -## 1. Setup a simulation |
| 16 | + |
| 17 | +## 1. Introduction |
| 18 | + |
| 19 | +### 1.1. What is LightDock? |
| 20 | +LightDock is a protein-protein and protein-DNA docking protocol based on the [Glowworm Swarm Optimization](https://link.springer.com/article/10.1007/s11721-008-0021-5) (GSO) algorithm. The LightDock protocol has been published in Oxford Bioinformatics: |
| 21 | + |
| 22 | +**LightDock: a new multi-scale approach to protein–protein docking**<br> |
| 23 | +[Brian Jiménez-García](https://scholar.google.es/citations?user=eVN1WVYAAAAJ&hl=en), Jorge Roel-Touris, Miguel Romero-Durana, Miquel Vidal, Daniel Jiménez-González and Juan Fernández-Recio<br> |
| 24 | +*Bioinformatics*, Volume 34, Issue 1, 1 January 2018, Pages 49–55, [https://doi.org/10.1093/bioinformatics/btx555](https://doi.org/10.1093/bioinformatics/btx555) |
| 25 | + |
| 26 | +Specific details of the protocol can be found in the publication mentioned above, but in summary, LightDock is: |
| 27 | + |
| 28 | +- *Ab initio* protocol, which means that only requires of the 3D coordinates of the protein partners for predicting the protein-protein or protein-DNA complex. |
| 29 | + |
| 30 | +- Capable of modeling protein-protein and protein-DNA complexes in rigid-body fashion or modeling backbone flexibility using [Anisotropic Network Model](https://en.wikipedia.org/wiki/Anisotropic_Network_Model) (ANM). If ANM mode is activated, LightDock calculates the Ca-Ca ANM model using the awesome [ProDy](http://prody.csb.pitt.edu/) Python library. By default, the first 10 non-trivial normal modes are calculated for both receptor and ligand (in every residue backbone, extended to side-chains). See [Prody ANM documentation](http://prody.csb.pitt.edu/tutorials/enm_analysis/anm.html) for an example. |
| 31 | + |
| 32 | +- Customizable by the user. LightDock is not only a protocol, but a framework for testing and developing custom scoring functions. The GSO optimization algorithm is agnostic of the force-field used, so in theory LightDock is capable of minimizing the docking energies in any force-field given by the user. See *Custom Scoring Functions* section for more details. |
| 33 | + |
| 34 | +- Prepared to scale in [HPC](https://en.wikipedia.org/wiki/Supercomputer) architectures. LightDock nature is *embarrassingly parallel* as each swarm is treated as an independent simulation. This property makes LightDock to scale up to a number of CPU cores equal to the number of swarms simulated. Two implementations are given: 1) [multiprocessing](https://docs.python.org/2/library/multiprocessing.html) (by default) and 2) MPI (using [mpi4py](http://mpi4py.scipy.org/docs/) library). |
| 35 | + |
| 36 | +- Capable of using multiple scoring functions during the minimization. Instead of specifiying a single scoring function, a file containing the weight and the name of the scoring function can be given as an input. LightDock will combine the different scoring functions as a linear combination of their value multiplied by the weight specified in the file. |
| 37 | + |
| 38 | + |
| 39 | +### 1.2. Swarms |
| 40 | +In LightDock, the receptor molecule is keep fixed (despite atoms positions can move if ANM mode is enabled). Over its surface, a set of points is calculated. Each of these points is a swarm center which represent an independent simulation. For example, for complex [1VFB](https://www.rcsb.org/structure/1VFB), 400 swarms are calculated: |
| 41 | + |
| 42 | + |
| 43 | + |
| 44 | +For each of these swarm centers, a number *N* of glowworms, the algorithm agents, are disposed in a random way. Every glowworm represents a possible ligand conformation. In the following figure a set of 300 glowworms are displayed in a single swarm: |
| 45 | + |
| 46 | + |
| 47 | + |
| 48 | +More in detail, each glowworm is represented as a 3D-axis object in its center of mass and oriented as the actual 3D-axis orientation: |
| 49 | + |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | +## 2. Setup a simulation |
| 54 | + |
| 55 | +TBC |
| 56 | + |
| 57 | + |
| 58 | +## 3. Run a simulation |
15 | 59 |
|
16 | 60 | TBC
|
17 | 61 |
|
18 | 62 |
|
19 |
| -## 2. Run a simulation |
| 63 | +## 4. Generate models |
20 | 64 |
|
21 | 65 | TBC
|
22 | 66 |
|
23 | 67 |
|
24 |
| -## 3. Generate models |
| 68 | +## 5. Clustering |
25 | 69 |
|
26 | 70 | TBC
|
27 | 71 |
|
28 | 72 |
|
29 |
| -## 4. Clustering |
| 73 | +## 6. Custom Scoring Functions |
30 | 74 |
|
31 | 75 | TBC
|
0 commit comments