-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatk4_genomicsdbimport_checklogs.pl
executable file
·75 lines (66 loc) · 2.12 KB
/
gatk4_genomicsdbimport_checklogs.pl
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
#!/usr/bin/perl
#########################################################
#
# Platform: NCI Gadi HPC
# Usage:
# Version: 2.0
#
# For more details see: https://github.com/Sydney-Informatics-Hub/Germline-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.
#
#########################################################
use strict;
use warnings;
# Check genomicsDBImport log files
# Collect: interval duration, check Runtime.totalMemory()
my $logdir="./Logs/gatk4_genomicsdbimport";
my $out="$logdir/interval_duration_memory.txt";
`rm -rf $out`;
open(OUT,'>',"$out") or die "Could not write to $out: $!\n";
print OUT "#Interval\tDuration\tMemory_Gb\n";
for(my $i=0000; $i <3200; $i++){
my $interval=sprintf("%04d",$i);
my $file="$logdir\/$interval\.oe";
if(-s $file){
# Check for errors first, because errors will still print done and mem
my $errors =`grep -i ERROR $file`;
if($errors){
print OUT "$interval\tNA\tNA\n";
}
else{
my $timelog=`grep "GenomicsDBImport done. Elapsed time:" $file`;
$timelog=~ m/([0-9]+\.[0-9]+) minutes\.\n$/;
my $duration=$1;
my $memory=`grep "Runtime.totalMemory" $file`;
$memory=~ m/([0-9]+)\n$/;
my $bytes=$1;
if($memory && $bytes){
my $gigabytes=$bytes/1000000000;
print OUT "$interval\t$duration\t$gigabytes\n";
}
else{
print OUT "$interval\tNA\tNA\n";
}
}
}
else{
print OUT "$interval\tNA\tNA\n";
}
}
close OUT;
exit;