Skip to content

Commit b987e30

Browse files
committed
overhaul CLI options, output formatting & add --sambvca mode
- Rename --addmetals to --nometals (metals included by default) - Rename --commandline to --pymol (files not created by default) - Rename -b/--volume to -b/--vbur, keep -s/--sterimol - Deprecate --measure option (sterimol defaults to classic mode) - Remove --timing option and all timing code - Alphabetize CLI options and add default values to help strings - Add --sambvca option (sets VDW scaling to 1.17, excludes H atoms) - Add ASCII art banner to output header - Print configuration info (radii, H atoms, grid) by default - Print column headers once with File and Atom columns for multi-file runs - Add separator lines and dynamic file column width - Fix docstring typo: unocc_grud -> unocc_grid - Update tests, README, and example notebooks
1 parent be93b82 commit b987e30

5 files changed

Lines changed: 100 additions & 122 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Calculate Sterimol parameters<sup>1</sup> (L, Bmin, Bmax), %Buried Volume<sup>2<
2626
* The `--surface density` command (default vdw) with a .cube input file will measure sterics from density values read in from the file.
2727
* Density values read from the cube file greater than a default cutoff of 0.002 determine if a molecule is occupying that point in space, this can be changed with `--isoval [number]`
2828
* `--noH` - exclude hydrogen atoms from steric measurements
29-
* `--addmetals` - add metals to steric measurements (traditionally metal centers are removed from steric measurements)
29+
* `--nometals` - exclude metal atoms from steric measurements
3030

3131
### 2-D Graph contribution features (Requires RDKit and Pandas packages to be installed):
3232
* Compute graph-based steric contributions in layers spanning outward from a reference functional group with the following input options:
@@ -66,7 +66,7 @@ To execute the program:
6666
import dbstep.Dbstep as db
6767
6868
#Create DBSTEP object
69-
mol = db.dbstep(file,atom1=atom1,atom2=atom2,commandline=True,verbose=True,sterimol=True,measure='classic')
69+
mol = db.dbstep(file,atom1=atom1,atom2=atom2,verbose=True,sterimol=True,measure='classic')
7070
7171
#Grab Sterimol Parameters
7272
L = mol.L

0 commit comments

Comments
 (0)