-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdep_per_win.pl
executable file
·394 lines (340 loc) · 10.2 KB
/
dep_per_win.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
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
#!/usr/bin/env perl
use strict;
use warnings;
use Getopt::Long;
use File::Spec::Functions 'catfile';
use Data::Dumper;
##### subroutines #####
sub help{
print STDERR qq{
Usage: dep_per_win.pl
--output_dir|o Output directory
--prefix|p Output prefix
--window Sliding window size
--mpileup|m Pileup
--faidx Fasta index file
--h|help\n
};
exit 2;
}
sub output_tsv{
# output
my ($prefix, $out_dir, $chrDep, $winSize) = @_;
my $output = catfile($out_dir, $prefix.".depth.tsv");
open (OUT, "+>$output") || die "can't open out file\n";
print OUT join("\t", qw(chr start0 end0 id depth fc)), "\n";
foreach my $currContig (sort keys %$chrDep) {
foreach my $currSliWin (sort {$a <=> $b} keys $$chrDep{$currContig}) {
my $currWin = get_curr_win($currSliWin, $winSize);
print OUT sprintf("%s\t%d\t%d\t%s\t%.2f\t%.2f\n", $currContig, $currWin,
$currWin + $winSize, $currContig.'_'.$currSliWin,
$$chrDep{$currContig}{$currSliWin}{dep},
$$chrDep{$currContig}{$currSliWin}{fc});
}
}
close (OUT) or die;
}
sub depth_fold_change {
# Normalize depth by overall average depth.
my ($winDep, $aveDep) = @_;
foreach my $contig (keys %$winDep) {
foreach my $winIdx (keys %{$$winDep{$contig}}) {
if ($aveDep == 0) {
$$winDep{$contig}{$winIdx}{fc} = 'inf';
} else {
$$winDep{$contig}{$winIdx}{fc} =
$$winDep{$contig}{$winIdx}{dep}/$aveDep;
}
}
}
}
sub average_depth{
# About: calculate mean depth per each chromosome
# Usage: mean_dep_per_chr($chrlen, $chrDep)
# Args: $chrlen: pointer to a hash table contains contig length of each chr
# $chrDep: pointer to a hash table contains overall depth of coverage of
# each chr
# Return:%chrcov: a hash table contains depth of coverage for each chr.
my ($chrDep, $chrlen) = @_;
my ($dep, $len) = (0, 0); # Total depth and total length
foreach my $contig (keys %$chrDep) {
$dep += $$chrDep{$contig};
$len += $$chrlen{$contig};
}
return ($dep/$len);
}
sub load_faidx {
# load fasta file index
my ($file) = @_;
my %chrlen;
open(IN, $file) or die;
while(<IN>){
chomp;
my ($chr, $len, $offset, $linebases, $linewidth) = split(/\t/, $_);
$chrlen{$chr} = $len;
}
close(IN) or die;
return(\%chrlen)
}
sub update_chr_dep{
# update chromosome depth
my ($chrDep, $contig, $depth) = @_;
if (!defined($$chrDep{$contig})) {
$$chrDep{$contig} = $depth;
} else {
$$chrDep{$contig} += $depth;
}
}
sub get_curr_win {
# get current window from window size
my ($currSliWin, $winSize) = @_;
return $currSliWin * $winSize;
}
##### main script #####
my $nOpts = scalar(@ARGV);
# default parameter
my $winSize = 1000;
my $prefix = 'dep_per_win';
my $out_dir = '.';
&GetOptions(
"help|h" => \my $help,
"output_dir|o=s" => \$out_dir,
"prefix|p=s" => \$prefix,
"window=s" => \$winSize,
"mpileup|m=s" => \my $mPileup,
"faidx=s" => \my $faidx
);
&help() if $help || $nOpts == 0;
# initalize
my $winEnd = $winSize - 1; # end position of window
my $currContig = 'NA'; # current contig
my $depthSum = 0; # sum of depth within a window
my $loop = 0; # loop
my $avgWin = 0; # average window size
my $currWin; # beginning position of current window
my $currSliWin = 0; # 1-based index of sliding window size
my $chrDep = {}; # reference to chr depth hash
my $winDep; # average depth of each sliding window
if ($mPileup =~ /gz$/) {
open (MPILEUP, "zcat $mPileup |") || die "can't open ALN file\n";
} else {
open (MPILEUP, "<$mPileup") || die "can't open ALN file\n";
}
while (my $line = <MPILEUP>) {
chomp $line;
my ($contig, $position, $depth) = split "\t", $line;
update_chr_dep($chrDep, $contig, $depth);
if ($currContig ne $contig) {
$currWin = get_curr_win($currSliWin, $winSize);
# set the current contig window end and rowcount
$currContig = $contig;
$winEnd = $winSize -1;
$currSliWin = 0; # 0 based sliding window
$depthSum = 0;
} else {
while ($loop==0) {
if ($position < $winEnd) {
$depthSum += $depth;
$loop = 1;
} else {
$currWin = get_curr_win($currSliWin, $winSize);
$$winDep{$currContig}{$currSliWin}{dep} = $depthSum/$winSize;
# initialize
$depthSum = 0;
$currSliWin += 1;
$winEnd += $winSize;
}
}
$loop = 0;
}
}
close (MPILEUP) or die;
$$winDep{$currContig}{$currSliWin}{dep} = $depthSum/$winSize;
#
my $chrlen = load_faidx($faidx);
my $aveDep = average_depth($chrDep, $chrlen);
depth_fold_change($winDep, $aveDep);
output_tsv($prefix, $out_dir, $winDep, $winSize);
__END__
=head1 NAME: dep_per_win.pl
=head1 SYNOPSIS
./dep_per_win.pl --help
=head1 DESCRIPTION
Get Alignment Cover in defined Sliding Window Size
=head1 AUTHOR
This script is modified from Jose Munoz's code by Xiao Li.
For bugs/questions, contact [email protected].
=head1 LOGS
03/26/18 16:39:03
- Initial implementation of code.
=cut
#!/usr/bin/env perl
use strict;
use warnings;
use Getopt::Long;
use File::Spec::Functions 'catfile';
use Data::Dumper;
##### subroutines #####
sub help{
print STDERR qq{
Usage: dep_per_win.pl
--output_dir|o Output directory
--prefix|p Output prefix
--window Sliding window size
--mpileup|m Pileup
--faidx Fasta index file
--h|help\n
};
exit 2;
}
sub output_tsv{
# output
my ($prefix, $out_dir, $chrDep, $winSize) = @_;
my $output = catfile($out_dir, $prefix.".depth.tsv");
open (OUT, "+>$output") || die "can't open out file\n";
print OUT join("\t", qw(chr start0 end0 id depth fc)), "\n";
foreach my $currContig (sort keys %$chrDep) {
foreach my $currSliWin (sort {$a <=> $b} keys $$chrDep{$currContig}) {
my $currWin = get_curr_win($currSliWin, $winSize);
print OUT sprintf("%s\t%d\t%d\t%s\t%.2f\t%.2f\n", $currContig, $currWin,
$currWin + $winSize, $currContig.'_'.$currSliWin,
$$chrDep{$currContig}{$currSliWin}{dep},
$$chrDep{$currContig}{$currSliWin}{fc});
}
}
close (OUT) or die;
}
sub depth_fold_change {
# Normalize depth by overall average depth.
my ($winDep, $aveDep) = @_;
foreach my $contig (keys %$winDep) {
foreach my $winIdx (keys %{$$winDep{$contig}}) {
if ($aveDep == 0) {
$$winDep{$contig}{$winIdx}{fc} = 'inf';
} else {
$$winDep{$contig}{$winIdx}{fc} =
$$winDep{$contig}{$winIdx}{dep}/$aveDep;
}
}
}
}
sub average_depth{
# About: calculate mean depth per each chromosome
# Usage: mean_dep_per_chr($chrlen, $chrDep)
# Args: $chrlen: pointer to a hash table contains contig length of each chr
# $chrDep: pointer to a hash table contains overall depth of coverage of
# each chr
# Return:%chrcov: a hash table contains depth of coverage for each chr.
my ($chrDep, $chrlen) = @_;
my ($dep, $len) = (0, 0); # Total depth and total length
foreach my $contig (keys %$chrDep) {
$dep += $$chrDep{$contig};
$len += $$chrlen{$contig};
}
return ($dep/$len);
}
sub load_faidx {
# load fasta file index
my ($file) = @_;
my %chrlen;
open(IN, $file) or die;
while(<IN>){
chomp;
my ($chr, $len, $offset, $linebases, $linewidth) = split(/\t/, $_);
$chrlen{$chr} = $len;
}
close(IN) or die;
return(\%chrlen)
}
sub update_chr_dep{
# update chromosome depth
my ($chrDep, $contig, $depth) = @_;
if (!defined($$chrDep{$contig})) {
$$chrDep{$contig} = $depth;
} else {
$$chrDep{$contig} += $depth;
}
}
sub get_curr_win {
# get current window from window size
my ($currSliWin, $winSize) = @_;
return $currSliWin * $winSize;
}
##### main script #####
my $nOpts = scalar(@ARGV);
# default parameter
my $winSize = 1000;
my $prefix = 'dep_per_win';
my $out_dir = '.';
&GetOptions(
"help|h" => \my $help,
"output_dir|o=s" => \$out_dir,
"prefix|p=s" => \$prefix,
"window=s" => \$winSize,
"mpileup|m=s" => \my $mPileup,
"faidx=s" => \my $faidx
);
&help() if $help || $nOpts == 0;
# initalize
my $winEnd = $winSize - 1; # end position of window
my $currContig = 'NA'; # current contig
my $depthSum = 0; # sum of depth within a window
my $loop = 0; # loop
my $avgWin = 0; # average window size
my $currWin; # beginning position of current window
my $currSliWin = 0; # 1-based index of sliding window size
my $chrDep = {}; # reference to chr depth hash
my $winDep; # average depth of each sliding window
if ($mPileup =~ /gz$/) {
open (MPILEUP, "zcat $mPileup |") || die "can't open ALN file\n";
} else {
open (MPILEUP, "<$mPileup") || die "can't open ALN file\n";
}
while (my $line = <MPILEUP>) {
chomp $line;
my ($contig, $position, $depth) = split "\t", $line;
update_chr_dep($chrDep, $contig, $depth);
if ($currContig ne $contig) {
$currWin = get_curr_win($currSliWin, $winSize);
# set the current contig window end and rowcount
$currContig = $contig;
$winEnd = $winSize -1;
$currSliWin = 0; # 0 based sliding window
$depthSum = 0;
} else {
while ($loop==0) {
if ($position < $winEnd) {
$depthSum += $depth;
$loop = 1;
} else {
$currWin = get_curr_win($currSliWin, $winSize);
$$winDep{$currContig}{$currSliWin}{dep} = $depthSum/$winSize;
# initialize
$depthSum = 0;
$currSliWin += 1;
$winEnd += $winSize;
}
}
$loop = 0;
}
}
close (MPILEUP) or die;
$$winDep{$currContig}{$currSliWin}{dep} = $depthSum/$winSize;
#
my $chrlen = load_faidx($faidx);
my $aveDep = average_depth($chrDep, $chrlen);
depth_fold_change($winDep, $aveDep);
output_tsv($prefix, $out_dir, $winDep, $winSize);
__END__
=head1 NAME: dep_per_win.pl
=head1 SYNOPSIS
./dep_per_win.pl --help
=head1 DESCRIPTION
Get Alignment Cover in defined Sliding Window Size
=head1 AUTHOR
This script is modified from Jose Munoz's code by Xiao Li.
For bugs/questions, contact [email protected].
=head1 LOGS
03/26/18 16:39:03
- Initial implementation of code.
=cut