Skip to content

Commit 6cef3cb

Browse files
committed
Align all docs, benchmarks, and jar references to v3.7.0
1 parent 1042a4c commit 6cef3cb

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The package namespace has changed from `uk.ac.ebi` to `com.bioinceptionlabs` in
122122
<!-- Old (v2.x) -->
123123
<groupId>uk.ac.ebi.rdt</groupId>
124124

125-
<!-- New (v3.6.0+) -->
125+
<!-- New (v3.7.0+) -->
126126
<groupId>com.bioinceptionlabs</groupId>
127127
```
128128

@@ -196,7 +196,7 @@ Sub-commands
196196
`AAM using SMILES`
197197

198198
```
199-
java -jar rdt-3.6.0-jar-with-dependencies.jar -Q SMI -q "CC(O)CC(=O)OC(C)CC(O)=O.O[H]>>[H]OC(=O)CC(C)O.CC(O)CC(O)=O" -g -c -j AAM -f TEXT
199+
java -jar rdt-3.7.0-jar-with-dependencies.jar -Q SMI -q "CC(O)CC(=O)OC(C)CC(O)=O.O[H]>>[H]OC(=O)CC(C)O.CC(O)CC(O)=O" -g -c -j AAM -f TEXT
200200
```
201201

202202
`Perform AAM` for Transporters
@@ -205,14 +205,14 @@ Sub-commands
205205
`AAM using SMILES` (accept mapping with no bond changes -b)
206206

207207
```
208-
java -jar rdt-3.6.0-jar-with-dependencies.jar -Q SMI -q "O=C(O)C(N)CC(=O)N.O=C(O)C(N)CS>>C(N)(CC(=O)N)C(=O)O.O=C(O)C(N)CS" -b -g -c -j AAM -f TEXT
208+
java -jar rdt-3.7.0-jar-with-dependencies.jar -Q SMI -q "O=C(O)C(N)CC(=O)N.O=C(O)C(N)CS>>C(N)(CC(=O)N)C(=O)O.O=C(O)C(N)CS" -b -g -c -j AAM -f TEXT
209209
```
210210

211211
`Annotate Reaction using SMILES`
212212
---------------------------------
213213

214214
```
215-
java -jar rdt-3.6.0-jar-with-dependencies.jar -Q SMI -q "CC(O)CC(=O)OC(C)CC(O)=O.O[H]>>[H]OC(=O)CC(C)O.CC(O)CC(O)=O" -g -c -j ANNOTATE -f XML
215+
java -jar rdt-3.7.0-jar-with-dependencies.jar -Q SMI -q "CC(O)CC(=O)OC(C)CC(O)=O.O[H]>>[H]OC(=O)CC(C)O.CC(O)CC(O)=O" -g -c -j ANNOTATE -f XML
216216
```
217217

218218

@@ -222,12 +222,12 @@ Sub-commands
222222
`Compare Reactions using SMILES with precomputed AAM mappings`
223223

224224
```
225-
java -jar rdt-3.6.0-jar-with-dependencies.jar -Q RXN -q example/ReactionDecoder_mapped.rxn -T RXN -t example/ReactionDecoder_mapped.rxn -j COMPARE -f BOTH -u
225+
java -jar rdt-3.7.0-jar-with-dependencies.jar -Q RXN -q example/ReactionDecoder_mapped.rxn -T RXN -t example/ReactionDecoder_mapped.rxn -j COMPARE -f BOTH -u
226226
```
227227

228228

229229
`Compare Reactions using RXN files`
230230

231231
```
232-
java -jar rdt-3.6.0-jar-with-dependencies.jar -Q RXN -q example/ReactionDecoder_mapped.rxn -T RXN -t example/ReactionDecoder_mapped.rxn -j COMPARE -f BOTH
232+
java -jar rdt-3.7.0-jar-with-dependencies.jar -Q RXN -q example/ReactionDecoder_mapped.rxn -T RXN -t example/ReactionDecoder_mapped.rxn -j COMPARE -f BOTH
233233
```

src/test/java/com/bioinceptionlabs/aamtool/GoldenDatasetBenchmarkTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public void benchmarkGoldenDataset() throws Exception {
194194
// equivalentMatch includes exactAtomMatch cases, so true accuracy = equivalent/total
195195

196196
System.out.println();
197-
System.out.println("=== Golden Dataset Benchmark Results (RDT v3.6.1) ===");
197+
System.out.println("=== Golden Dataset Benchmark Results (RDT v3.7.0) ===");
198198
System.out.println("Total reactions: " + total);
199199
System.out.println();
200200
System.out.println("--- Core Metrics ---");
@@ -230,7 +230,7 @@ public void benchmarkGoldenDataset() throws Exception {
230230
System.out.println("| RXNMapper | 83.74% | - | - | Unsup. | No |");
231231
System.out.println("| RDTool (published) | 76.18% | - | - | None | Yes |");
232232
System.out.println("| ChemAxon | 70.45% | - | - | Propr. | Yes |");
233-
System.out.printf("| RDT v3.6.1 | %.1f%% | %.1f%% | %.1f%% | None | Yes |%n",
233+
System.out.printf("| RDT v3.7.0 | %.1f%% | %.1f%% | %.1f%% | None | Yes |%n",
234234
pct_d(exactAtomMatch, total), atomAccuracy, pct_d(bondChangeExact, total));
235235

236236
assertTrue("Mapping success rate should be > 70%", success > total * 0.70);

src/test/java/com/bioinceptionlabs/aamtool/USPTO50KBenchmarkTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public void benchmarkUSPTO50K() throws Exception {
149149

150150
// Report
151151
System.out.println();
152-
System.out.println("=== USPTO 50K Benchmark Results (RDT v3.1.0) ===");
152+
System.out.println("=== USPTO 50K Benchmark Results (RDT v3.7.0) ===");
153153
System.out.println("Sample size: " + total);
154154
System.out.println("Mapping success: " + success + "/" + total
155155
+ " (" + pct(success, total) + "%)");
@@ -168,7 +168,7 @@ public void benchmarkUSPTO50K() throws Exception {
168168
System.out.println("| RXNMapper | 98.1% | Unsupervised | No |");
169169
System.out.println("| GraphormerMapper | 82.7% | Unsupervised | No |");
170170
System.out.println("| LocalMapper | 98.5% | 2% labeled | No |");
171-
System.out.printf("| RDT v3.1.0 (auto) | %s%% | None | Yes |%n",
171+
System.out.printf("| RDT v3.7.0 (auto) | %s%% | None | Yes |%n",
172172
pct(success, total));
173173
System.out.println("| SynTemp (ensemble) | 99.5% | 3 tools comb. | No |");
174174

0 commit comments

Comments
 (0)