-
Notifications
You must be signed in to change notification settings - Fork 9
/
vcf_check.pl
executable file
·82 lines (58 loc) · 1.93 KB
/
vcf_check.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
76
77
78
79
80
#!/usr/bin/perl
use strict;
use warnings;
use File::Copy qw(copy);
use IPC::Run qw(run);
if(@ARGV < 3) {
print STDERR "Usage: <VCF> <output destination if VCF empty> <command if VCF non-empty> [command args...]\n";
exit -1;
}
main(@ARGV);
exit 0;
sub main {
my ($vcf_to_check, $where_to_copy_if_empty, @commandline_if_nonempty) = @_;
if (vcf_is_empty($vcf_to_check)) {
copy_file($vcf_to_check, $where_to_copy_if_empty) or die('Failed to copy empty VCF: ' . $!);
} else {
exec { $commandline_if_nonempty[0] } @commandline_if_nonempty;
die('Failed to execute command: ' . $!);
}
}
sub is_compressed {
my $filename = shift;
return $filename =~ /\.gz$/;
}
sub vcf_is_empty {
my $vcf = shift;
local $SIG{PIPE} = sub { return 1; }; #prevent zgrep "broken pipe" errors
my $is_compressed = is_compressed($vcf);
my $cmd = $is_compressed? '/bin/zgrep' : '/bin/grep';
my $rv = system($cmd, '-q', '-v', '#', $vcf);
if ($rv == -1) {
die('Failed to execute command to inspect VCF: ' . $!);
}
#0 rv from grep indicates a match for a data line was found => non-empty
#1 rv from grep indicates only header lines were present => empty
#other return codes are bad.
$rv >>= 8;
if ($rv == 0 or $rv == 1) {
return $rv;
} else {
die('Failed to determine VCF status. Unexpected return code from grep: ' . $rv);
}
}
sub copy_file {
my $source = shift;
my $dest = shift;
my $source_is_compressed = is_compressed($source);
my $dest_is_compressed = is_compressed($dest);
if ($source_is_compressed eq $dest_is_compressed) {
return copy($source, $dest);
} elsif ($source_is_compressed) {
return run(['/bin/gunzip', '-c', $source], '>', $dest);
} elsif ($dest_is_compressed) {
return run(['/bin/gzip', '-c', $source], '>', $dest);
} else {
die ('Logic error in copy_file.');
}
}