m3triq 0.2.9 → 0.2.10

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.
Files changed (3) hide show
  1. package/README.md +19 -2
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -84,8 +84,25 @@ m3t md results <job-id>
84
84
  ## Structure Prediction
85
85
 
86
86
  ```bash
87
- m3t predict esmfold MKFLILLFNILCL... # Fast (~10s, max 1024aa)
88
- m3t predict alphafold2 MKFLILLFNILCL... # Accurate (~5min, max 2048aa)
87
+ m3t predict esmfold MKFLILLFNILCL... # Fast (~10s, max 1024aa)
88
+ m3t predict alphafold2 MKFLILLFNILCL... # Accurate (~15-20min, max 2048aa)
89
+
90
+ # ESMFold2-Fast — monomer or multi-chain complex (self-hosted A100, max 2048aa total).
91
+ # Beats AlphaFold3 on antibody-antigen DockQ from single sequence; returns pLDDT/pTM/ipTM.
92
+ m3t predict esmfold2 --sequence MKFLILLFNILCL... # monomer
93
+ m3t predict esmfold2 --chain A:EVQL... --chain B:DIQM... # complex (antibody-antigen, PPI)
94
+ m3t predict esmfold2-batch inputs.json # fold N complexes (results in input order)
95
+
96
+ # Boltz-2 — biomolecular complex (protein + DNA/RNA + ligand) with binding affinity
97
+ m3t predict boltz2 --protein MKFL... --ligand "CC(=O)O" --rna GGUC...
98
+ ```
99
+
100
+ ## Protein Embeddings
101
+
102
+ ```bash
103
+ # ESMC-6B per-residue embeddings + pseudo-perplexity (lower = more "natural" sequence)
104
+ m3t embed esmc --sequence MKFLILLFNILCL... # single sequence
105
+ m3t embed esmc --sequence SEQ1 --sequence SEQ2 # batch (repeatable, max 32)
89
106
  ```
90
107
 
91
108
  ## Protein Design
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.9')
27
+ .version('0.2.10')
28
28
  .option('--json', 'Output as JSON (machine-readable)')
29
29
  .hook('preAction', (thisCommand) => {
30
30
  const opts = thisCommand.optsWithGlobals();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "m3triq",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "M3TRIQ \u2014 protein-ligand analysis from the terminal",
5
5
  "type": "module",
6
6
  "bin": {