Skip to content

Commit 158897f

Browse files
authored
Merge pull request #74 from andthum/fix/submit_gmx_analyses/every-default
Change Default of `--every` Option of `submit_gmx_analyses_lintf2_ether.py`
2 parents cf613a7 + 8d0de7f commit 158897f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

analysis/lintf2_ether/gmx/submit_gmx_analyses_lintf2_ether.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
:file:`${settings}_out_${system}.log`. Reading from |log_file|\s
5858
compressed with gzip, bzip2, XZ or LZMA is supported.
5959
--every
60-
Only use frame if t MOD dt == first time (in ps). Default: ``1``.
60+
Only use frame if t MOD every == first time (in ps). Default:
61+
``0``.
6162
6263
Options for MSD Calculation
6364
^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -454,9 +455,9 @@ def _submit(sbatch_opts, job_script):
454455
"--every",
455456
type=float,
456457
required=False,
457-
default=1,
458+
default=0,
458459
help=(
459-
"Only use frame if t MOD dt == first time (in ps). Default:"
460+
"Only use frame if t MOD every == first time (in ps). Default:"
460461
" %(default)s."
461462
),
462463
)

0 commit comments

Comments
 (0)