-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
centering the traj after equilibration..
- Loading branch information
Showing
2 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
#!/usr/bin/env bash | ||
|
||
ori=${PWD} | ||
snakemake --unlock -c1 | ||
snakemake -R $(snakemake --list-code-changes) --touch -c4 | ||
snakemake --unlock -c1 -s Snakefile.smk | ||
snakemake -R $(snakemake --list-code-changes -s Snakefile.smk) --touch -c4 -s Snakefile.smk | ||
|
||
for dir in */? | ||
do | ||
cd ${dir} | ||
snakemake --unlock -c1 | ||
snakemake -R $(snakemake --list-code-changes) --touch -c4 | ||
snakemake --unlock -c1 -s Snakefile.smk | ||
snakemake -R $(snakemake --list-code-changes -s Snakefile.smk) --touch -c4 -s Snakefile.smk | ||
cd ${ori} | ||
done | ||
|
||
for dir in */?/ligand | ||
do | ||
cd ${dir} | ||
snakemake --unlock -c1 | ||
snakemake -R $(snakemake --list-code-changes) --touch -c4 | ||
snakemake --unlock -c1 -s Snakefile.smk | ||
snakemake -R $(snakemake --list-code-changes -s Snakefile.smk) --touch -c4 -s Snakefile.smk | ||
cd ${ori} | ||
done | ||
|
||
for dir in */?/complex | ||
do | ||
cd ${dir} | ||
snakemake --unlock -c1 | ||
snakemake -R $(snakemake --list-code-changes) --touch -c4 | ||
snakemake --unlock -c1 -s Snakefile.smk | ||
snakemake -R $(snakemake --list-code-changes -s Snakefile.smk) --touch -c4 -s Snakefile.smk | ||
cd ${ori} | ||
done |