-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmerge_align_run_parallel.pbs
executable file
·67 lines (53 loc) · 1.92 KB
/
merge_align_run_parallel.pbs
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
#!/bin/bash
##########################################################################
#
# Platform: NCI Gadi HPC
# Usage: qsub merge_align_run_parallel.pbs
# Version: 2.0
#
# For more details see: https://github.com/Sydney-Informatics-Hub/Fastq-to-BAM
#
# If you use this script towards a publication, please acknowledge the
# Sydney Informatics Hub (or co-authorship, where appropriate).
#
# Suggested acknowledgement:
# The authors acknowledge the support provided by the Sydney Informatics Hub,
# a Core Research Facility of the University of Sydney. This research/project
# was undertaken with the assistance of resources and services from the National
# Computational Infrastructure (NCI), which is supported by the Australian
# Government, and the Australian BioCommons which is enabled by NCRIS via
# Bioplatforms Australia funding.
#
##########################################################################
#PBS -P
#PBS -N merge_align
#PBS -l walltime=00:00:00
#PBS -l ncpus=
#PBS -l mem=GB
#PBS -q normalbw
#PBS -W umask=022
#PBS -l wd
#PBS -o ./Logs/merge_align.o
#PBS -e ./Logs/merge_align.e
#PBS -l storage=
set -e
INPUTS=./Inputs/merge_align.inputs
NCPUS=28 #normalbw
#NCPUS=48 #reset for extra small samples - PBS to assign only one job per node, but run sambamba on 24 CPU
mkdir -p ../Merge_align ./Logs/Merge_align_error_capture ./Logs/Merge_align
#########################################################
# Do not edit below this line
#########################################################
module load nci-parallel/1.0.0a
module load openmpi/4.1.0
module load sambamba/0.7.1
module load samtools/1.10
# SCRIPT
SCRIPT=./merge_align.sh
M=$(( PBS_NCI_NCPUS_PER_NODE / NCPUS )) #tasks per node
sed "s|^|${SCRIPT} |" ${INPUTS} > ${PBS_JOBFS}/input-file
mpirun --np $((M * PBS_NCPUS / PBS_NCI_NCPUS_PER_NODE)) \
--map-by node:PE=${NCPUS} \
nci-parallel \
--verbose \
--input-file ${PBS_JOBFS}/input-file