Skip to content

Commit ab1ec0e

Browse files
committed
Updated README to current version
1 parent 08002f7 commit ab1ec0e

34 files changed

+3064
-3009
lines changed

README.md

Lines changed: 85 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -24,72 +24,127 @@ Several examples can be found in the `example` folder.
2424
|:---------------------------|
2525
| You may set an environment variable `LIGHTDOCK_DATA` to point to the data folder included in this repository to avoid copying it: `export LIGHTDOCK_DATA=/path/to/lightdock-rust/data` |
2626

27+
Recorded times on MacBook Pro M3 Pro.
28+
2729
### 1k4c (Membrane docking)
2830

29-
```
31+
```bash
3032
cd example/1k4c
31-
cp -R ../../data .
3233
time ../../target/release/lightdock-rust setup.json initial_positions_0.dat 100 dfire
34+
```
3335

34-
...
36+
Output:
3537

36-
real 3m53.851s
37-
user 3m52.550s
38-
sys 0m0.717s
38+
```
39+
Reading starting positions from "initial_positions_0.dat"
40+
Swarm ID 0
41+
Writing to swarm dir "swarm_0"
42+
Reading receptor input structure: lightdock_receptor_membrane.pdb
43+
Reading ligand input structure: lightdock_ligand.pdb
44+
Loading DFIRE scoring function
45+
Creating GSO with 200 glowworms
46+
Starting optimization (100 steps)
47+
48+
real 1m52,132s
49+
user 1m51,808s
50+
sys 0m0,150s
3951
```
4052

4153
### 1ppe (protein docking)
4254

43-
```
55+
```bash
4456
cd example/1ppe
45-
cp -R ../../data .
4657
time ../../target/release/lightdock-rust setup.json initial_positions_0.dat 100 dfire
58+
```
4759

48-
...
60+
Output:
4961

50-
real 0m9.968s
51-
user 0m9.640s
52-
sys 0m0.271s
62+
```
63+
Reading starting positions from "initial_positions_0.dat"
64+
Swarm ID 0
65+
Writing to swarm dir "swarm_0"
66+
Reading receptor input structure: lightdock_1ppe_e.pdb
67+
Reading ligand input structure: lightdock_1ppe_i.pdb
68+
Loading DFIRE scoring function
69+
Creating GSO with 200 glowworms
70+
Starting optimization (100 steps)
71+
72+
real 0m4,252s
73+
user 0m4,142s
74+
sys 0m0,092s
5375
```
5476

5577
### 2uuy (protein docking)
5678

57-
```
79+
```bash
5880
cd example/2uuy
59-
cp -R ../../data .
6081
time ../../target/release/lightdock-rust setup.json initial_positions_0.dat 100 dfire
82+
```
6183

62-
...
84+
Output:
6385

64-
real 0m18.042s
65-
user 0m17.123s
66-
sys 0m0.621s
86+
```
87+
Reading starting positions from "initial_positions_0.dat"
88+
Swarm ID 0
89+
Output directory does not exist for swarm 0, creating it...
90+
Writing to swarm dir "swarm_0"
91+
Reading receptor input structure: lightdock_2UUY_rec.pdb
92+
Reading ligand input structure: lightdock_2UUY_lig.pdb
93+
Loading DFIRE scoring function
94+
Creating GSO with 200 glowworms
95+
Starting optimization (100 steps)
96+
97+
real 0m8,108s
98+
user 0m7,834s
99+
sys 0m0,261s
67100
```
68101

69102
### 1czy (protein-peptide docking)
70103

71-
```
104+
```bash
72105
cd example/1czy
73-
cp -R ../../data .
74-
time ../../target/release/lightdock-rust setup.json initial_positions_0.dat 100 dfire
106+
time ../../target/release/lightdock-rust setup.json init/initial_positions_0.dat 100 dfire
107+
```
75108

76-
...
109+
Output:
77110

78-
real 0m20.868s
79-
user 0m19.692s
80-
sys 0m1.070s
111+
```
112+
Reading starting positions from "init/initial_positions_0.dat"
113+
Swarm ID 0
114+
Writing to swarm dir "swarm_0"
115+
Reading receptor input structure: lightdock_1czy_protein.pdb
116+
Reading ligand input structure: lightdock_1czy_peptide.pdb
117+
Loading DFIRE scoring function
118+
Creating GSO with 200 glowworms
119+
Starting optimization (100 steps)
120+
121+
real 0m1,580s
122+
user 0m1,312s
123+
sys 0m0,248s
81124
```
82125

83126
### 1azp (protein-nucleic docking)
84127

85-
```
128+
```bash
86129
cd example/1azp
87130
time ../../target/release/lightdock-rust setup.json initial_positions_0.dat 100 dna
131+
```
88132

89-
...
133+
Output:
90134

91-
real 0m30.321s
92-
user 0m29.219s
93-
sys 0m0.651s
135+
```
136+
Reading starting positions from "initial_positions_0.dat"
137+
Swarm ID 0
138+
Output directory does not exist for swarm 0, creating it...
139+
Writing to swarm dir "swarm_0"
140+
Reading receptor input structure: lightdock_protein.pdb
141+
Reading ligand input structure: lightdock_dna.pdb
142+
Loading DNA scoring function
143+
Creating GSO with 200 glowworms
144+
Starting optimization (100 steps)
145+
146+
real 0m14,228s
147+
user 0m13,932s
148+
sys 0m0,281s
94149
```
95150

example/1azp/gso_1.out renamed to example/1azp/swarm_0/gso_1.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_10.out renamed to example/1azp/swarm_0/gso_10.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_100.out renamed to example/1azp/swarm_0/gso_100.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_20.out renamed to example/1azp/swarm_0/gso_20.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_30.out renamed to example/1azp/swarm_0/gso_30.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_40.out renamed to example/1azp/swarm_0/gso_40.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_50.out renamed to example/1azp/swarm_0/gso_50.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_60.out renamed to example/1azp/swarm_0/gso_60.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_70.out renamed to example/1azp/swarm_0/gso_70.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_80.out renamed to example/1azp/swarm_0/gso_80.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1azp/gso_90.out renamed to example/1azp/swarm_0/gso_90.out

Lines changed: 200 additions & 200 deletions
Large diffs are not rendered by default.

example/1k4c/gso_1.out renamed to example/1k4c/swarm_0/gso_1.out

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
(-27.2048016, -30.4181945, 24.1915219, 0.8252092, 0.3308749, -0.4562653, -0.0370622) 0 0 -17.84153285 0 0.600 -50.85383212
1111
(-22.1418797, -33.5086673, 29.9539405, 0.7809790, 0.5439619, -0.3066130, 0.0128764) 0 0 -36.82874685 0 0.600 -98.32186713
1212
(-16.7365785, -31.5086717, 32.1487729, 0.7602509, 0.6258322, -0.1685662, -0.0440229) 0 0 -54.88718087 0 0.600 -143.46795217
13-
(-25.5301263, -27.3836750, 25.0291598, 0.7449746, 0.4214678, -0.4251852, 0.2942709) 0 0 -59.18552960 0 0.600 -154.21382399
13+
(-25.5301263, -27.3836750, 25.0291598, 0.7449746, 0.4214678, -0.4251852, 0.2942709) 0 0 -59.17997422 0 0.600 -154.19993556
1414
(-29.4816370, -28.6374774, 30.3858118, 0.7129152, 0.4511820, -0.4660982, 0.2663441) 0 0 -41.63931310 0 0.600 -110.34828275
1515
(-16.0003010, -27.6427375, 32.9661799, 0.8353202, 0.5410787, -0.0973262, -0.0013138) 0 0 -59.53150859 0 0.600 -155.07877148
1616
(-27.2067309, -40.8585632, 25.8267275, 0.7911516, 0.4157794, -0.3548484, -0.2743888) 0 0 -19.18193282 0 0.600 -54.20483206
@@ -116,7 +116,7 @@
116116
(-19.3551357, -30.9937869, 36.0004658, 0.7930446, 0.5668957, -0.2220465, 0.0201198) 0 0 -38.41298538 0 0.600 -102.28246346
117117
(-24.9088770, -31.6379649, 31.8825485, 0.7328232, 0.3548958, -0.5528999, -0.1769771) 0 0 -46.91566395 0 0.600 -123.53915989
118118
(-16.9197285, -31.8008088, 36.6296484, 0.8425447, 0.4695503, -0.2462905, -0.0947734) 0 0 -25.49259793 0 0.600 -69.98149483
119-
(-21.4004621, -30.7178551, 23.8641083, 0.8193449, 0.4908916, -0.2558362, 0.1491553) 0 0 -46.12530494 0 0.600 -121.56326234
119+
(-21.4004621, -30.7178551, 23.8641083, 0.8193449, 0.4908916, -0.2558362, 0.1491553) 0 0 -46.12520287 0 0.600 -121.56300718
120120
(-27.0405723, -35.1097514, 28.4868323, 0.7816531, 0.5034896, -0.3399186, 0.1413221) 0 0 -23.76988176 0 0.600 -65.67470440
121121
(-21.6197268, -39.4445540, 25.3468374, 0.8769884, 0.4477154, -0.1728926, -0.0234600) 0 0 -16.41646353 0 0.600 -47.29115883
122122
(-24.7689842, -25.8813356, 26.6340309, 0.7947572, 0.3778753, -0.4201682, 0.2214273) 0 0 -48.23562318 0 0.600 -126.83905796
@@ -143,7 +143,7 @@
143143
(-23.7879644, -34.0248183, 28.9418041, 0.8029878, 0.5212465, -0.2576739, 0.1308315) 0 0 -33.80571592 0 0.600 -90.76428980
144144
(-28.5972063, -40.6273585, 28.1006114, 0.8534442, 0.4309361, -0.2923565, 0.0213248) 0 0 -14.89638989 0 0.600 -43.49097474
145145
(-26.0602780, -32.3473791, 20.3702072, 0.9376027, 0.2441658, -0.2301248, 0.0912510) 0 0 -4.03733551 0 0.600 -16.34333876
146-
(-18.9159067, -31.2112698, 32.9735593, 0.7735966, 0.6078552, -0.1713763, 0.0518707) 0 0 -39.45838975 0 0.600 -104.89597438
146+
(-18.9159067, -31.2112698, 32.9735593, 0.7735966, 0.6078552, -0.1713763, 0.0518707) 0 0 -39.45885151 0 0.600 -104.89712877
147147
(-19.6290111, -41.7594229, 29.7685251, 0.7947379, 0.5848534, -0.1568295, -0.0417452) 0 0 -18.53158048 0 0.600 -52.57895120
148148
(-29.3359223, -27.6040373, 27.7218337, 0.7251576, 0.3967608, -0.4795739, 0.2945102) 0 0 -43.02405606 0 0.600 -113.81014014
149149
(-30.3267199, -32.1674862, 27.9427460, 0.7686364, 0.3862519, -0.5087392, 0.0345259) 0 0 -18.79908001 0 0.600 -53.24770003

0 commit comments

Comments
 (0)