m3triq 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/dist/commands/design.js +2 -2
- package/dist/commands/predict.js +3 -3
- package/package.json +14 -4
package/dist/cli.js
CHANGED
|
@@ -24,7 +24,7 @@ const program = new Command();
|
|
|
24
24
|
program
|
|
25
25
|
.name('m3t')
|
|
26
26
|
.description('M3TRIQ — protein-ligand analysis from the terminal')
|
|
27
|
-
.version('0.2.
|
|
27
|
+
.version('0.2.7')
|
|
28
28
|
.option('--json', 'Output as JSON (machine-readable)')
|
|
29
29
|
.hook('preAction', (thisCommand) => {
|
|
30
30
|
const opts = thisCommand.optsWithGlobals();
|
package/dist/commands/design.js
CHANGED
|
@@ -67,8 +67,8 @@ export function registerDesignCommands(program) {
|
|
|
67
67
|
.argument('<target>', 'Target PDB ID (e.g., 6VXX) or path to .pdb file')
|
|
68
68
|
.requiredOption('--hotspots <residues>', 'Binding hotspot residues (e.g., A100,A105,A110)')
|
|
69
69
|
.option('--type <type>', 'Antibody type: nanobody or scfv', 'nanobody')
|
|
70
|
-
.option('--designs <n>', 'Number of designs (1-10)', parseInt, 3)
|
|
71
|
-
.option('--seqs <n>', 'Sequences per backbone (1-8)', parseInt, 1)
|
|
70
|
+
.option('--designs <n>', 'Number of designs (1-10)', (v) => parseInt(v, 10), 3)
|
|
71
|
+
.option('--seqs <n>', 'Sequences per backbone (1-8)', (v) => parseInt(v, 10), 1)
|
|
72
72
|
.option('--cdr <loops>', 'CDR loop specs (e.g., H1:7,H2:6,H3:5-13)')
|
|
73
73
|
.description('Design de novo antibodies with RFAntibody (Azure T4 GPU, ~3-5 min)')
|
|
74
74
|
.action(async (target, opts) => {
|
package/dist/commands/predict.js
CHANGED
|
@@ -28,9 +28,9 @@ export function registerPredictCommands(program) {
|
|
|
28
28
|
.option('--dna <seq>', 'DNA sequence (or @path to file). Repeatable.', collectArg, [])
|
|
29
29
|
.option('--rna <seq>', 'RNA sequence (or @path to file). Repeatable.', collectArg, [])
|
|
30
30
|
.option('--ligand <smiles_or_ccd>', 'Ligand as SMILES or CCD code (e.g. ATP). Repeatable.', collectArg, [])
|
|
31
|
-
.option('--samples <n>', 'Number of structure samples (1-25, default: 1)', parseInt, 1)
|
|
32
|
-
.option('--recycling <n>', 'Recycling steps (1-10, default: 3)', parseInt, 3)
|
|
33
|
-
.option('--sampling <n>', 'Diffusion sampling steps (10-1000, default: 50)', parseInt, 50)
|
|
31
|
+
.option('--samples <n>', 'Number of structure samples (1-25, default: 1)', (v) => parseInt(v, 10), 1)
|
|
32
|
+
.option('--recycling <n>', 'Recycling steps (1-10, default: 3)', (v) => parseInt(v, 10), 3)
|
|
33
|
+
.option('--sampling <n>', 'Diffusion sampling steps (10-1000, default: 50)', (v) => parseInt(v, 10), 50)
|
|
34
34
|
.option('--name <name>', 'Custom job title')
|
|
35
35
|
.action(async (opts) => {
|
|
36
36
|
await runBoltz2(opts);
|
package/package.json
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "m3triq",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "M3TRIQ
|
|
3
|
+
"version": "0.2.7",
|
|
4
|
+
"description": "M3TRIQ \u2014 protein-ligand analysis from the terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"m3t": "./dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"main": "dist/cli.js",
|
|
10
|
-
"keywords": [
|
|
10
|
+
"keywords": [
|
|
11
|
+
"bioinformatics",
|
|
12
|
+
"chembl",
|
|
13
|
+
"docking",
|
|
14
|
+
"protein",
|
|
15
|
+
"ligand",
|
|
16
|
+
"drug-discovery",
|
|
17
|
+
"cli"
|
|
18
|
+
],
|
|
11
19
|
"repository": {
|
|
12
20
|
"type": "git",
|
|
13
21
|
"url": "https://github.com/M3TRIQ/m3t.git"
|
|
@@ -28,6 +36,8 @@
|
|
|
28
36
|
"@types/node": "^22.0.0",
|
|
29
37
|
"typescript": "^5.7.0"
|
|
30
38
|
},
|
|
31
|
-
"files": [
|
|
39
|
+
"files": [
|
|
40
|
+
"dist"
|
|
41
|
+
],
|
|
32
42
|
"license": "MIT"
|
|
33
43
|
}
|