generated from CCBR/CCBR_SnakemakeTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
aspen
executable file
·790 lines (641 loc) · 25.4 KB
/
aspen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
#!/usr/bin/env bash
# Author: Vishal Koparde, Ph.D.
# CCBR, NCI
# (c) 2021
#
# wrapper script to run the snakemake pipeline
# a) on an interactive node (runlocal) OR
# b) submit to the slurm load scheduler (run)
#
# DISCLAIMER: This wrapper only works on BIOWULF
# set -exo pipefail
# module purge
retries="2"
##########################################################################################
# functions
##########################################################################################
function get_git_commitid_tag() {
# This function gets the latest git commit id and tag
# Input is PIPELINE_HOME folder which is a git folder
cd $1
gid=$(git rev-parse HEAD)
tag=$(git describe --tags $gid 2>/dev/null)
echo -ne "$gid\t$tag"
}
function printbanner() {
versionnumber=$1
cat << EOF
____ ____ ___ ____ _ _
|__| [__ |__] |___ |\ |
| | ___] | |___ | \| v${versionnumber}
EOF
}
##########################################################################################
# initial setup
##########################################################################################
# ## setting PIPELINE_HOME
PIPELINE_HOME=$(readlink -f $(dirname "$0"))
# set snakefile
SNAKEFILE="${PIPELINE_HOME}/workflow/Snakefile"
VERSIONFILE="${PIPELINE_HOME}/VERSION"
# get github commit tag
GIT_COMMIT_TAG=$(get_git_commitid_tag $PIPELINE_HOME)
##########################################################################################
# Some more set up
##########################################################################################
PYTHONVERSION="python/3.10"
SNAKEMAKEVERSION="snakemake"
#SINGULARITYVERSION="singularity/3.7.4"
SINGULARITYVERSION="singularity"
ASPENVERSION=$(head -n1 $VERSIONFILE|awk '{print $1}')
# set defaults
GENOME="hg38"
SUPPORTED_GENOMES="hg19 hg38 mm10 mmul10 bosTau9 hs1"
# essential files
# these are relative to the workflows' base folder
# these are copied into the WORKDIR
ESSENTIAL_FILES="config/config.yaml config/samples.tsv resources/cluster.json resources/tools.yaml"
ESSENTIAL_FOLDERS="workflow/scripts"
SCRIPTNAME="$0"
SCRIPTDIRNAME=$(readlink -f $(dirname $0))
SCRIPTBASENAME=$(readlink -f $(basename $0))
# set extra singularity bindings comma separated
# /data/CCBR_Pipeliner required for fastq_screen_config.txt to work
EXTRA_SINGULARITY_BINDS="/lscratch,/data/CCBR_Pipeliner"
##########################################################################################
# USAGE
##########################################################################################
function usage() { cat << EOF
##########################################################################################
Welcome to
EOF
printbanner $ASPENVERSION
cat << EOF
A_TAC_S_eq A_nalysis P_ip_E_li_N_e
##########################################################################################
This pipeline was built by CCBR (https://bioinformatics.ccr.cancer.gov/ccbr)
Please contact Vishal Koparde for comments/questions (vishal.koparde@nih.gov)
##########################################################################################
Here is a list of genome supported by aspen:
* hg19 [Human]
* hg38 [Human]
* mm10 [Mouse]
* mmul10 [Macaca mulatta(Rhesus monkey) or rheMac10]
* bosTau9 [Bos taurus(cattle)]
aspen calls peaks using the following tools:
* MACS2
* Genrich [RECOMMENDED FOR USE]
USAGE:
bash ${SCRIPTNAME} -w/--workdir=<WORKDIR> -m/--runmode=<RUNMODE>
Required Arguments:
1. WORKDIR : [Type: String]: Absolute or relative path to the output folder with write permissions.
2. RUNMODE : [Type: String] Valid options:
* init : initialize workdir
* dryrun : dry run snakemake to generate DAG
* run : run with slurm
* runlocal : run without submitting to sbatch
ADVANCED RUNMODES (use with caution!!)
* unlock : unlock WORKDIR if locked by snakemake NEVER UNLOCK WORKDIR WHERE PIPELINE IS CURRENTLY RUNNING!
* reconfig : recreate config file in WORKDIR (debugging option) EDITS TO config.yaml WILL BE LOST!
* reset : DELETE workdir dir and re-init it (debugging option) EDITS TO ALL FILES IN WORKDIR WILL BE LOST!
* printbinds: print singularity binds (paths)
* local : same as runlocal
Optional Arguments:
--genome|-g : genome eg. hg38
--manifest|-s : absolute path to samples.tsv. This will be copied to output folder (--runmode=init only)
--useenvmod|-e : use "--use-enmodules" option while running Snakemake. This is for using modules on HPC instead of containers(default).
--help|-h : print this help
Example commands:
bash ${SCRIPTNAME} -w=/my/output/folder -m=init
bash ${SCRIPTNAME} -w=/my/output/folder -m=dryrun
bash ${SCRIPTNAME} -w=/my/output/folder -m=run
##########################################################################################
VersionInfo:
python : $PYTHONVERSION
snakemake : $SNAKEMAKEVERSION
pipeline_home : $PIPELINE_HOME
git commit/tag : $GIT_COMMIT_TAG
aspen_version : v${ASPENVERSION}
##########################################################################################
EOF
}
##########################################################################################
# ERR
##########################################################################################
function err() { usage && cat <<< "
#
# ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR
#
$@
#
# ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR ERROR
#
" && exit 1 1>&2; }
##########################################################################################
# INIT
##########################################################################################
function init() {
# This function initializes the workdir by:
# 1. creating the working dir
# 2. copying essential files like config.yaml and samples.tsv into the workdir
# 3. setting up logs and stats folders
printbanner $ASPENVERSION
# create output folder
if [ -d $WORKDIR ];then err "Folder $WORKDIR already exists!"; fi
mkdir -p $WORKDIR
# copy essential files
# for f in $ESSENTIAL_FILES;do
f="${PIPELINE_HOME}/config/config.yaml"
echo "Copying essential file: $f"
fbn=$(basename $f)
sed -e "s/PIPELINE_HOME/${PIPELINE_HOME//\//\\/}/g" \
-e "s/WORKDIR/${WORKDIR//\//\\/}/g" \
-e "s/GENOME/${GENOME}/g" $f > $WORKDIR/$fbn
for f in ${PIPELINE_HOME}/resources/cluster.json ${PIPELINE_HOME}/resources/tools.yaml
do
echo "Copying essential file: $f"
fbn=$(basename $f)
cp $f $WORKDIR/$fbn
done
if [[ "$MANIFEST_SUPPLIED" == "true" ]];then
f=$MANIFEST
echo "Copying essential file: $f"
fbn=$(basename $f)
cp $f $WORKDIR/$fbn
fi
if [[ "$MANIFEST_SUPPLIED" == "false" ]];then
f=$MANIFEST
echo "Copying essential file: $f"
fbn=$(basename $f)
sed -e "s/PIPELINE_HOME/${PIPELINE_HOME//\//\\/}/g" \
-e "s/WORKDIR/${WORKDIR//\//\\/}/g" \
-e "s/GENOME/${GENOME}/g" $f > $WORKDIR/$fbn
fi
# copy essential folders
for f in $ESSENTIAL_FOLDERS;do
# rsync -az --progress ${PIPELINE_HOME}/$f $WORKDIR/
cp -rv ${PIPELINE_HOME}/$f ${WORKDIR}/
done
cd ${WORKDIR}
#create log and stats folders
if [ ! -d $WORKDIR/logs ]; then mkdir -p $WORKDIR/logs;echo "Logs Dir: $WORKDIR/logs";fi
if [ ! -d $WORKDIR/stats ];then mkdir -p $WORKDIR/stats;echo "Stats Dir: $WORKDIR/stats";fi
cat << EOF
Done Initializing : $WORKDIR
You can now edit : $WORKDIR/config.yaml and
$WORKDIR/samples.tsv
EOF
}
##########################################################################################
# set random str
##########################################################################################
function _set_rand_str() {
x=$(mktemp)
rm -rf $x
RAND_STR=$(echo $x|awk -F"." '{print $NF}')
}
##########################################################################################
# CHECK ESSENTIAL FILES
##########################################################################################
function check_essential_files() {
# Checks if files essential to start running the pipeline exist in the workdir
if [ ! -d $WORKDIR ];then err "Folder $WORKDIR does not exist!"; fi
for f in config.yaml samples.tsv cluster.json tools.yaml; do
if [ ! -f $WORKDIR/$f ]; then err "Error: '${f}' file not found in workdir ... initialize first!";fi
done
}
##########################################################################################
# set --reuun-triggers to "mtime" ... only for newer snakemake
##########################################################################################
function set_snakemake_rerun_triggers() {
runcheck
snakemakeVer=$(snakemake --version 2>/dev/null)
verlte() {
[ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ]
}
verlt() {
[ "$1" = "$2" ] && return 1 || verlte $1 $2
}
snakemakeOld=$(verlt $snakemakeVer 7.8 && echo "yes" || echo "no") # check if snakemake is older than 7.8
if [[ "$snakemakeVer" == "" || "$snakemakeOld" == "no" ]];then
RERUNTRIGGERS="--rerun-triggers mtime"
else
RERUNTRIGGERS=""
fi
}
##########################################################################################
# RECONFIG ... recreate config.yaml and overwrite old version
##########################################################################################
function reconfig(){
# Rebuild config file and replace the config.yaml in the WORKDIR
# this is only for dev purposes when new key-value pairs are being added to the config file
check_essential_files
sed -e "s/PIPELINE_HOME/${PIPELINE_HOME//\//\\/}/g" \
-e "s/WORKDIR/${WORKDIR//\//\\/}/g" \
-e "s/GENOME/${GENOME}/g" \
${PIPELINE_HOME}/config/config.yaml > $WORKDIR/config.yaml
echo "$WORKDIR/config.yaml has been updated!"
}
##########################################################################################
# SET SINGULARITY BINDS ... bind required singularity folders appropriately
##########################################################################################
function set_singularity_binds(){
# this functions tries find what folders to bind
# biowulf specific
echo "$PIPELINE_HOME" > ${WORKDIR}/tmp1
echo "$WORKDIR" >> ${WORKDIR}/tmp1
grep -o '\/.*' <(cat ${WORKDIR}/config.yaml ${WORKDIR}/samples.tsv) | tr '\t' '\n' | grep -v ' \|\/\/' | sort | uniq >> ${WORKDIR}/tmp1
grep "^/" ${WORKDIR}/tmp1 | grep gpfs | awk -F'/' -v OFS='/' '{print $1,$2,$3,$4,$5}' | sort | uniq > ${WORKDIR}/tmp2
grep "^/" ${WORKDIR}/tmp1 | grep -v gpfs | awk -F'/' -v OFS='/' '{print $1,$2,$3}' | sort | uniq > ${WORKDIR}/tmp3
while read a;do readlink -f $a;done < ${WORKDIR}/tmp3 > ${WORKDIR}/tmp4
binds=$(cat ${WORKDIR}/tmp2 ${WORKDIR}/tmp3 ${WORKDIR}/tmp4 | sort | uniq | tr '\n' ',')
rm -f ${WORKDIR}/tmp?
binds=$(echo $binds | awk '{print substr($1,1,length($1)-1)}')
SINGULARITY_BINDS="-B $EXTRA_SINGULARITY_BINDS,$binds"
SINGULARITY_STR="--use-singularity --singularity-args \"${SINGULARITY_BINDS}\""
}
function set_cluster_arg(){
CLUSTER_SBATCH_CMD="sbatch --cpus-per-task {cluster.threads} -p {cluster.partition} -t {cluster.time} --mem {cluster.mem} --job-name {cluster.name} --output {cluster.output} --error {cluster.error}"
clustername=$(scontrol show config|grep ClusterName|awk '{print $NF}')
if [[ "$clustername" == "biowulf" ]];then
CLUSTER_SBATCH_CMD="${CLUSTER_SBATCH_CMD} --gres {cluster.gres}"
fi
}
##########################################################################################
# RUNCHECK ... check essential files and load required packages
##########################################################################################
function runcheck(){
# Check "job-essential" files and load required modules
check_essential_files
# MODULE_STR="module load $PYTHONVERSION $SNAKEMAKEVERSION singularity"
MODULE_STR=$(
cat << END_HEREDOC
command -V python 2>/dev/null || module load $PYTHONVERSION || (>&2 echo "module $PYTHONVERSION could not be loaded"; exit 1)
command -V snakemake 2>/dev/null || module load $SNAKEMAKEVERSION || (>&2 echo "module $SNAKEMAKEVERSION could not be loaded"; exit 1)
command -V singularity 2>/dev/null || module load singularity || (>&2 echo "module singularity could not be loaded"; exit 1)
END_HEREDOC
)
# If not on BIOWULF then change MODULE_STR such that python, snakemake and singularity are all in PATH
command -V python 2>/dev/null || module load $PYTHONVERSION || (>&2 echo "module $PYTHONVERSION could not be loaded"; exit 1)
command -V snakemake 2>/dev/null || module load $SNAKEMAKEVERSION || (>&2 echo "module $SNAKEMAKEVERSION could not be loaded"; exit 1)
command -V singularity 2>/dev/null || module load singularity || (>&2 echo "module singularity could not be loaded"; exit 1)
}
##########################################################################################
# DRYRUN ... also run automatically before actual run
##########################################################################################
function dryrun() {
# Dry-run
runcheck
if [ -f ${WORKDIR}/dryrun.log ]; then
modtime=$(stat ${WORKDIR}/dryrun.log |grep Modify|awk '{print $2,$3}'|awk -F"." '{print $1}'|sed "s/ //g"|sed "s/-//g"|sed "s/://g")
mv ${WORKDIR}/dryrun.log ${WORKDIR}/logs/dryrun.${modtime}.log
if [ -f ${WORKDIR}/dryrun_git_commit.txt ];then
mv ${WORKDIR}/dryrun_git_commit.txt ${WORKDIR}/logs/dryrun_git_commit.${modtime}.txt
fi
fi
run "--dry-run" | tee ${WORKDIR}/dryrun.log && \
echo "Git Commit/Tag: $GIT_COMMIT_TAG" > ${WORKDIR}/dryrun_git_commit.txt
}
##########################################################################################
# UNLOCK
##########################################################################################
function unlock() {
# Unlock the workdir if previous snakemake run ended abruptly
runcheck
run "--unlock"
}
##########################################################################################
# DAG
##########################################################################################
function dag() {
runcheck
snakemake -s $SNAKEFILE --configfile ${WORKDIR}/config.yaml --forceall --dag |dot -Teps > ${WORKDIR}/dag.eps
}
##########################################################################################
# PRINT SINGULARITY BINDS ... print bound singularity folders for debugging
##########################################################################################
function printbinds(){
set_singularity_binds
echo $SINGULARITY_BINDS
}
##########################################################################################
# RUNLOCAL ... run directly on local interactive node ... no submission to SLURM
##########################################################################################
function runlocal() {
# If the pipeline is fired up on an interactive node (with sinteractive), this function runs the pipeline
runcheck
set_singularity_binds
set_cluster_arg
if [ "$SLURM_JOB_ID" == "" ];then err "runlocal can only be done on an interactive node"; exit 1; fi
module load singularity
run "--dry-run" && echo "Dry-run was successful .... starting local execution" && \
run "local"
}
##########################################################################################
# RUNSLURM ... submit head job to slurm which will spawn other jobs on SLURM
##########################################################################################
function runslurm() {
# Submit the execution of the pipeline to the biowulf job scheduler (slurm)
runcheck
set_singularity_binds
set_cluster_arg
run "--dry-run" && \
echo "Dry-run was successful .... submitting jobs to job-scheduler" && \
run "slurm"
}
##########################################################################################
# CREATE RUNINFO ... create runinfo.yaml in workdir
##########################################################################################
function create_runinfo {
modtime=$1
if [ "$modtime" == "" ];then
modtime=$(stat ${WORKDIR}/runinfo.yaml 2>/dev/null|grep Modify|awk '{print $2,$3}'|awk -F"." '{print $1}'|sed "s/ //g"|sed "s/-//g"|sed "s/://g")
fi
if [ -f ${WORKDIR}/runinfo.yaml ];then
mv ${WORKDIR}/runinfo.yaml ${WORKDIR}/stats/runinfo.${modtime}.yaml
fi
echo "Pipeline Dir: $PIPELINE_HOME" > ${WORKDIR}/runinfo.yaml
echo "Git Commit/Tag: $GIT_COMMIT_TAG" >> ${WORKDIR}/runinfo.yaml
userlogin=$(whoami)
if [[ `which finger 2>/dev/null` ]];then
username=$(finger $userlogin |grep ^Login | awk -F"Name: " '{print $2}');
elif [[ `which lslogins 2>/dev/null` ]];then
username=$(lslogins -u $userlogin | grep ^Geco | awk -F": " '{print $2}' | awk '{$1=$1;print}');
else username="NOTFOUND";fi
echo "Login: $userlogin" >> ${WORKDIR}/runinfo.yaml
echo "Name: $username" >> ${WORKDIR}/runinfo.yaml
g=$(groups)
echo "Groups: $g" >> ${WORKDIR}/runinfo.yaml
d=$(date)
echo "Date/Time: $d" >> ${WORKDIR}/runinfo.yaml
}
##########################################################################################
# PRERUN CLEANUP ... get ready to run .. park old logs/stats etc.
##########################################################################################
function preruncleanup() {
# Cleanup function to rename/move files related to older runs to prevent overwriting them.
echo "Running..."
# check initialization
check_essential_files
cd $WORKDIR
## Archive previous run files
if [ -f ${WORKDIR}/snakemake.log ];then
modtime=$(stat ${WORKDIR}/snakemake.log |grep Modify|awk '{print $2,$3}'|awk -F"." '{print $1}'|sed "s/ //g"|sed "s/-//g"|sed "s/://g")
mv ${WORKDIR}/snakemake.log ${WORKDIR}/logs/snakemake.${modtime}.log
if [ -f ${WORKDIR}/snakemake.log.HPC_summary.txt ];then
mv ${WORKDIR}/snakemake.log.HPC_summary.txt ${WORKDIR}/stats/snakemake.${modtime}.log.HPC_summary.txt
fi
if [ -f ${WORKDIR}/snakemake.stats ];then
mv ${WORKDIR}/snakemake.stats ${WORKDIR}/stats/snakemake.${modtime}.stats
fi
if [ -f ${WORKDIR}/run_git_commit.txt ];then
mv ${WORKDIR}/run_git_commit.txt ${WORKDIR}/logs/run_git_commit.${modtime}.txt
fi
fi
nslurmouts=$(find ${WORKDIR} -maxdepth 1 -name "slurm-*.out" |wc -l)
if [ "$nslurmouts" != "0" ];then
for f in $(ls ${WORKDIR}/slurm-*.out);do mv ${f} ${WORKDIR}/logs/;done
fi
create_runinfo $modtime
}
function run() {
# RUN function
# argument1 can be:
# 1. local or
# 2. dryrun or
# 3. unlock or
# 4. slurm
##########################################################################################
# local run
##########################################################################################
if [ "$1" == "local" ];then
preruncleanup
echo "Done preruncleanup!"
# --use-envmodules \
_set_rand_str
cat > ${HOME}/${RAND_STR} << EOF
#/bin/bash
set -exo pipefail
$MODULE_STR
$EXPORT_SING_CACHE_DIR_CMD
snakemake -s $SNAKEFILE \
--directory $WORKDIR \
--printshellcmds \
$SINGULARITY_STR \
--latency-wait 120 \
--configfile $CONFIGFILE \
--cores all \
--rerun-incomplete \
${RERUNTRIGGERS} \
--restart-times ${retries} \
--keep-going \
--stats ${WORKDIR}/snakemake.stats \
2>&1|tee ${WORKDIR}/snakemake.log
# if [ "$?" -eq "0" ];then
# snakemake -s $SNAKEFILE \
# --report ${WORKDIR}/runlocal_snakemake_report.html \
# --directory $WORKDIR \
# --configfile $CONFIGFILE
# fi
EOF
if [[ "$EXPORT_SING_CACHE_DIR_CMD" != "" ]];then
$EXPORT_SING_CACHE_DIR_CMD && \
bash ${HOME}/${RAND_STR}
else
bash ${HOME}/${RAND_STR}
fi
rm -rf ${HOME}/${RAND_STR}
##########################################################################################
# slurm run
##########################################################################################
elif [ "$1" == "slurm" ];then
preruncleanup
# if QOS is other than "global" and is supplied in the cluster.json file then add " --qos={cluster.qos}" to the
# snakemake command below
#define partitions
BUYINPARTITIONS=$(bash <(curl -s https://raw.githubusercontent.com/CCBR/Tools/master/Biowulf/get_buyin_partition_list.bash 2>/dev/null))
# remove "norm" partition
BUYINPARTITIONS=$(echo $BUYINPARTITIONS | tr ',' '\n' | grep -v "norm" | tr '\n' ',' | sed 's/.$//')
PARTITIONS="norm"
if [ ! -z "$BUYINPARTITIONS" ];then
# as only 2 partitions are allow and 1 is norm .. so we randomly pick the first buyin partition
BUYINPARTITIONS=$(echo $BUYINPARTITIONS | tr ',' '\n' | head -n1)
PARTITIONS="norm,$BUYINPARTITIONS"
fi
cat > ${WORKDIR}/submit_script.sbatch << EOF
#!/bin/bash
#SBATCH --job-name="apsen"
#SBATCH --mem=40g
#SBATCH --partition=$PARTITIONS
#SBATCH --time=96:00:00
#SBATCH --cpus-per-task=2
$MODULE_STR
cd \$SLURM_SUBMIT_DIR
$EXPORT_SING_CACHE_DIR_CMD
snakemake -s $SNAKEFILE \
--directory $WORKDIR \
$SINGULARITY_STR \
--printshellcmds \
--latency-wait 120 \
--configfile $CONFIGFILE \
--cluster-config $CLUSTERFILE \
--cluster "$CLUSTER_SBATCH_CMD" \
-j 500 \
--rerun-incomplete \
${RERUNTRIGGERS} \
--restart-times ${retries} \
--keep-going \
--stats ${WORKDIR}/snakemake.stats \
2>&1|tee ${WORKDIR}/snakemake.log
if [ "\$?" -eq "0" ];then
snakemake -s $SNAKEFILE \
--directory $WORKDIR \
--report ${WORKDIR}/runslurm_snakemake_report.html \
--configfile $CONFIGFILE
fi
EOF
cd $WORKDIR
sbatch submit_script.sbatch
##########################################################################################
# unlock or dry-run
##########################################################################################
else # for unlock and dryrun
_set_rand_str
set_cluster_arg
cat > ${HOME}/${RAND_STR} << EOF
#/bin/bash
set -exo pipefail
$MODULE_STR
snakemake $1 -s $SNAKEFILE \
--directory $WORKDIR \
--printshellcmds \
--latency-wait 120 \
--configfile $CONFIGFILE \
--cluster-config $CLUSTERFILE \
--cluster "$CLUSTER_SBATCH_CMD" \
-j 500 \
--rerun-incomplete \
$RERUNTRIGGERS \
--keep-going \
--reason \
--stats ${WORKDIR}/snakemake.stats
EOF
if [[ "$EXPORT_SING_CACHE_DIR_CMD" != "" ]];then
$EXPORT_SING_CACHE_DIR_CMD && \
bash ${HOME}/${RAND_STR}
else
bash ${HOME}/${RAND_STR}
fi
rm -rf ${HOME}/${RAND_STR}
fi
}
##########################################################################################
# RESET ... delete workdir and then initialize
##########################################################################################
function reset() {
# Delete the workdir and re-initialize it
printbanner $ASPENVERSION
echo "Working Dir: $WORKDIR"
if [ ! -d $WORKDIR ];then err "Folder $WORKDIR does not exist!";fi
echo "Deleting $WORKDIR"
rm -rf $WORKDIR
echo "Re-Initializing $WORKDIR"
init
}
##########################################################################################
# Print singularity binds and exist
##########################################################################################
function printbinds(){
printbanner $ASPENVERSION
set_singularity_binds
echo $SINGULARITY_BINDS
}
##########################################################################################
# MAIN ... command line argument parsing
##########################################################################################
function main(){
# Main function which parses all arguments
if [ $# -eq 0 ]; then usage; exit 1; fi
for i in "$@"
do
case $i in
-m=*|--runmode=*)
RUNMODE="${i#*=}"
;;
-w=*|--workdir=*)
WORKDIR="${i#*=}"
;;
-e|--useenvmod)
USE_ENVMODULES=1
;;
-c=*|--singcache=*)
SING_CACHE_DIR="${i#*=}"
;;
-s=*|--manifest=*)
MANIFEST="${i#*=}"
if [ ! -f $MANIFEST ];then err "File $MANIFEST does NOT exist!";fi
;;
-g=*|--genome=*)
GENOME="${i#*=}"
found=0
for g in $SUPPORTED_GENOMES;do
if [[ "$GENOME" == "$g" ]];then
found=1
break
fi
done
if [[ "$found" == "0" ]];then
err "$GENOME is not supported by ASPEN; Supported genomes are: $SUPPORTED_GENOMES"
exit 1
fi
;;
--version)
printbanner ${ASPENVERSION} && exit 0;
;;
-h|--help)
usage && exit 0;;
*)
err "Unknown argument: $i!" # unknown option
;;
esac
done
WORKDIR=$(readlink -f "$WORKDIR")
MANIFEST_SUPPLIED="true"
# if manifest is empty ... aka not supplied at cli
if [[ -z $MANIFEST ]];then
MANIFEST_SUPPLIED="false"
MANIFEST=${PIPELINE_HOME}/config/samples.tsv
fi
echo "Working Dir : $WORKDIR"
echo "Samples Manifest : $MANIFEST"
# required files
CONFIGFILE="${WORKDIR}/config.yaml"
CLUSTERFILE="${WORKDIR}/cluster.json"
# CLUSTERSTATUSCMD="${PIPELINE_HOME}/resources/cluster_status.sh"
if [[ -z "$SING_CACHE_DIR" ]]; then
if [[ -d "/data/$USER" ]]; then
SING_CACHE_DIR="/data/$USER/.singularity"
else
SING_CACHE_DIR="${WORKDIR}/.singularity"
fi
echo "singularity cache dir (--singcache) is not set, using ${SING_CACHE_DIR}"
fi
mkdir -p $SING_CACHE_DIR
EXPORT_SING_CACHE_DIR_CMD="export SINGULARITY_CACHEDIR=\"${SING_CACHE_DIR}\""
case $RUNMODE in
init) init && exit 0;;
dag) dag && exit 0;;
dryrun) dryrun && exit 0;;
unlock) unlock && exit 0;;
run) runslurm && exit 0;;
runlocal) runlocal && exit 0;;
reset) reset && exit 0;;
dry) dryrun && exit 0;; # hidden option
local) runlocal && exit 0;; # hidden option
reconfig) reconfig && exit 0;; # hidden option for debugging
printbinds) printbinds && exit 0;; # hidden option
*) err "Unknown RUNMODE \"$RUNMODE\"";;
esac
}
# call the main function
main "$@"