Skip to content
Snippets Groups Projects
Commit 25d55fab authored by Skander Hatira's avatar Skander Hatira
Browse files

fixing exec scripts for unlocking directory

parent 59f99afa
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
unlock=$1
[ -e biseps.txt ] && rm -- biseps.txt
[ -e failed.lock ] && rm -- failed.lock
if [[ $unlock ]]; then
if [[ $unlock == true ]]; then
snakemake --profile config/profiles/localComparison --unlock &>> biseps.txt
fi
source exec_scripts/script.sh
......
......@@ -4,7 +4,7 @@ unlock=$1
[ -e biseps.txt ] && rm -- biseps.txt
[ -e failed.lock ] && rm -- failed.lock
if [[ $unlock ]]; then
if [[ $unlock == true ]]; then
snakemake --profile config/profiles/local --unlock &>> biseps.txt
fi
source exec_scripts/script.sh
......
......@@ -6,7 +6,7 @@
unlock=$1
[ -e failed.comparison ] && rm -- failed.comparison
source exec_scripts/script.sh
if [[ $unlock ]]; then
if [[ $unlock == true ]]; then
snakemake --profile config/profiles/slurmComparison --unlock
fi
snakemake --profile config/profiles/slurmComparison
......
......@@ -6,7 +6,7 @@
unlock=$1
[ -e failed.alignment ] && rm -- failed.alignment
source exec_scripts/script.sh
if [[ $unlock ]]; then
if [[ $unlock == true]]; then
snakemake --profile config/profiles/slurm --unlock
fi
snakemake --profile config/profiles/slurm
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment