-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatk4_pon_genomicsdbimport_check.sh
executable file
·98 lines (89 loc) · 3.33 KB
/
gatk4_pon_genomicsdbimport_check.sh
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
#! /bin/bash
#########################################################
#
# Platform: NCI Gadi HPC
# Usage: nohup sh gatk4_pon_genomicsdbimport_check.sh /path/to/cohort.config 2> /dev/null &
# Version: 1.0
#
# For more details see: https://github.com/Sydney-Informatics-Hub/Somatic-ShortV
#
# If you use this script towards a publication, support us by citing:
#
# Suggest citation:
# Sydney Informatics Hub, Core Research Facilities, University of Sydney,
# 2021, The Sydney Informatics Hub Bioinformatics Repository, <date accessed>,
# https://github.com/Sydney-Informatics-Hub/Germline-ShortV
#
# Please acknowledge the Sydney Informatics Hub and the facilities:
#
# Suggested acknowledgement:
# The authors acknowledge the technical assistance provided by the Sydney
# Informatics Hub, a Core Research Facility of the University of Sydney
# and the Australian BioCommons which is enabled by NCRIS via Bioplatforms
# Australia. The authors acknowledge the use of the National Computational
# Infrastructure (NCI) supported by the Australian Government.
#
#########################################################
if [ -z "$1" ]
then
echo "Please provide the path to your cohort.config file, e.g. sh gatk4_pon_genomicsdbimport_check.sh ../cohort.config"
exit
fi
config=$1
cohort=$(basename "$config" | cut -d'.' -f 1)
INPUTS=./Inputs
inputfile=${INPUTS}/gatk4_pon_genomicsdbimport_missing.inputs
ref=../Reference/hs38DH.fasta
scatterdir=../Reference/ShortV_intervals
scatterlist=$(ls $scatterdir/*.list)
if [[ ${#scatterlist[@]} > 1 ]]; then
echo "$(date): ERROR - more than one scatter list file found: ${scatterlist[@]}"
exit
fi
vcfdir=../${cohort}_PoN
sample_map=${INPUTS}/${cohort}.sample_map
outdir=../${cohort}_PoN_GenomicsDBImport
logdir=./Logs/gatk4_pon_genomicsdbimport
PERL_SCRIPT=gatk4_check_logs.pl
perlfile=${logdir}/interval_duration_memory.txt
num_int=`wc -l ${scatterlist} | cut -d' ' -f 1`
mkdir -p ${INPUTS} ${logdir}
rm -rf ${inputfile} ${perlfile}
# Run perl script to get duration
echo "$(date): Checking ${logdir} for errors, obtaining duration and memory usage per task..."
perl $PERL_SCRIPT "$logdir"
# Check perl output file (logs)
while read -r interval duration memory; do
if [[ $duration =~ NA || $memory =~ NA ]]
then
echo "Please investigate ERROR for task: ${interval}"
redo+=("$interval")
fi
done < "$perlfile"
# Check output directory exists and is not empty
for interval in $(seq -f "%04g" 0 $((${num_int}-1))); do
if [ -z "$(ls -A ${outdir}/${interval})" ]
then
echo "Please investigate ERROR for task: ${interval}"
redo+=("$interval")
fi
done
if [[ ${#redo[@]}>0 ]]
then
echo "$(date): There are ${#redo[@]} intervals that need to be re-run."
echo "$(date): Writing inputs to ${inputfile}"
for redo_interval in ${redo[@]};do
interval="${scatterdir}/${redo_interval}-scattered.interval_list"
echo "${ref},${cohort},${interval},${sample_map},${outdir},${logdir}" >> ${inputfile}
done
else
echo "$(date): There are no intervals that need to be re-run. Archiving logs..."
cd ${logdir}
tar -kczf pon_genomicsdbimport_logs.tar.gz \
*.log
retVal=$?
if [ $retVal -eq 0 ]; then
echo "$(date): Tar successful. Cleaning up..."
rm -rf *.log
fi
fi