You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(notebook): expose --shape / --reach / --probe in maws.ipynb
The CLI driver notebook had no surface for the three new sampling
flags. Added:
- A markdown cell explaining what shape, reach, and probe mean for
the new surface-aware sampler (with the rule of thumb for each
default).
- shape / reach / probe parameter assignments in both the commented
template parameter cell and the active parameter cell.
- --shape / --reach / --probe flags appended to the corresponding
CLI invocation cells.
Defaults match the CLI: shape=shell, reach=10.0, probe=1.4.
Copy file name to clipboardExpand all lines: notebooks/maws/maws.ipynb
+45-5Lines changed: 45 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,22 @@
49
49
"You can edit the following cell and change the parameters to run the MAWS program"
50
50
]
51
51
},
52
+
{
53
+
"cell_type": "markdown",
54
+
"id": "7fb27b941602401d91542211134fc71a",
55
+
"metadata": {},
56
+
"source": [
57
+
"### Surface-aware sampling parameters (new in 2026)\n",
58
+
"\n",
59
+
"MAWS now restricts the initial pose search to the region just outside the ligand surface, computed from the ligand atoms automatically. Three knobs:\n",
60
+
"\n",
61
+
"- **`shape`** — geometry of the search envelope around the ligand. `shell` (default) hugs the surface most tightly; `sphere` is a simple bounding sphere; `cube` is the bounding box.\n",
62
+
"- **`reach`** — how far past the ligand surface the envelope extends, in ångströms. Roughly the distance an aptamer atom can sit beyond the protein. Default `10.0` Å — about one nucleotide's worth of slack.\n",
63
+
"- **`probe`** — radius of the rolling probe used to define the SAS surface, in ångströms. A candidate pose is rejected if any aptamer atom would land within `vdW(atom) + probe` of any protein atom. Default `1.4` Å (water-equivalent, the convention used by Chimera/PyMOL/FreeSASA).\n",
64
+
"\n",
65
+
"Keep the defaults unless your target is unusual (very small ligand, very deep pocket, etc.).\n"
0 commit comments