-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaverage_tracks.pl
261 lines (202 loc) · 5.28 KB
/
average_tracks.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
#!/usr/bin/perl -w
# gff_average.pl -- averages multiple gff files
# Copyright © 2015 Owen Marshall
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
use strict;
use File::Basename;
$|++;
my @scores;
my @logscores;
my @probes;
my @files;
my @out;
my %probes;
my %scores;
my $format = 'bedgraph';
unless (@ARGV) {
help();
}
my %vars = (
'strip_chrs' => 0,
);
my %vars_details = (
'strip_chrs' => 'Remove "chr" prefixes from chromosome numbers',
);
my @in_files;
process_cli();
my $num_samples = @in_files;
foreach (@in_files) {
load_gff($_);
}
my ($fhead,$dir,$ext) = fileparse($ARGV[0], qr/\.[^.]*/);
$fhead =~ s/-n\d+-/-/; # remove -n1- -n2- type annotations
my $fout = "$fhead.average.$format";
analyse();
sort_array();
output();
print STDERR "All done.\n\n";
sub analyse {
print STDERR "Averaging ... \n";
my $count=0;
foreach my $k (keys %probes) {
my @ld = @{ $scores{$k} };
if (@ld < $num_samples) {
print STDERR "Warning: unmatched probe at $k ... \n";
next;
}
my ($chr, $start, $end) = @{ $probes{$k} };
my ($mean, $sd, $se) = stdev(@ld);
my $fano = fano($mean, $sd);
$count++ if $fano > 1;
push @out, [$chr, '.', '.', $start, $end, $mean, '.', '.', '.'];
}
my $t = $#out;
print " $t probes processed\n $count with fano > 1\n";
}
sub sort_array {
print STDERR "Sorting ...\n";
@out = sort {$a->[3] <=> $b->[3]} @out;
@out = sort {$a->[0] cmp $b->[0]} @out;
}
sub output {
print STDERR "Writing output to $fout ...\n";
open (OUT, ">$fout") || die "Cannot open output file for writing: $!\n";
print OUT qq(track type=bedGraph name="$fhead.average" description="$fhead.average"\n) unless $format eq 'gff';
foreach (@out) {
my ($chr, $source, $type, $start, $end, $score, $b, $c, $name) = @{$_};
if ($format eq 'gff') {
print OUT join("\t", $chr, '.', '.', $start, $end, $score, '.', '.', '.'), "\n";
} else {
print OUT join("\t", $chr, $start, $end, $score), "\n";
}
}
}
sub load_gff {
my ($fn, $ar2) = @_;
push @files, $fn;
print STDERR "Reading input file: $fn ...\n";
open (IN, "<$fn") || die "Unable to read $fn: $!\n";
my $p=0;
foreach (<IN>) {
next if m/^track/;
chomp;
my @line = split('\t');
next unless $#line > 2;
my ($chr, $start, $end, $score);
if ($#line == 3) {
# bedgraph
($chr, $start, $end, $score) = @line;
} else {
# GFF
($chr, $start, $end, $score) = @line[0,3,4,5];
$format = 'gff';
}
next unless $start;
print STDERR "Read $p lines ...\r" if ($p%10000 == 0);
$chr=~s/chr//g if $vars{'strip_chrs'};
$probes{"$chr-$start"} = [$chr, $start, $end];
push @{ $scores{"$chr-$start"} }, $score;
$p++;
}
close (IN);
}
sub stdev {
my @a = @_;
my $n = @a;
return ($a[0], 0, 0, $a[0]) if $n<2;
my $total;
foreach (@a) {
$total+=$_;
}
my $mean = $total/$n;
my $sum;
foreach my $x (@a) {
$sum+=abs($x-$mean);
}
my $sd= $sum/($n-1);
my $se = $sd/sqrt($n);
return ($mean, $sd, $se);
}
sub fano {
# the number of probes with a fano factor > 1 is a quick indication of the overall correlation
my ($mean, $sd) = @_;
my $variance = $sd**2;
$mean = 1 unless $mean;
my $fano = $variance/$mean;
return $fano;
}
sub process_cli {
foreach (@ARGV) {
if (/--(.*)=(.*)/) {
unless (defined($vars{$1})) {
print STDERR "Did not understand $_ ...\n";
help();
}
my ($v, $opt) = ($1,$2);
$vars{$v} = $opt;
next;
} elsif (/--h[elp]*/) {
help();
} elsif (/--(.*)/) {
# if no parameter is specified we assume it's a switch ...
if (defined($vars{$1})) {
$vars{$1} = 1;
} else {
print STDERR "Did not understand $_ ...\n";
help();
}
next;
}
push @in_files, $_;
}
}
sub help {
print STDOUT <<EOT;
Usage: gff_average [gff files to process]
Options:
EOT
my $opt_len = 0;
foreach (keys %vars) {
my $l = length($_);
$opt_len = $l if $l > $opt_len;
}
$opt_len+=2;
my $cols= `tput cols` || 80;
my ($v, $val, $def, $def_format);
my $help_format = "format STDOUT =\n"
.' '.'^'.'<'x$opt_len . ' '. '^' . '<'x($cols-$opt_len-4) . "\n"
.'$v, $def_format'."\n"
.' '.'^'.'<'x$opt_len . ' '. '^' . '<'x($cols-$opt_len-6) . "~~\n"
.'$v, $def_format'."\n"
.".\n";
eval $help_format;
die $@ if $@;
foreach my $k (sort (keys %vars)) {
($v, $val, $def) = ($k, $vars{$k}, $vars_details{$k});
$def||="";
$def_format = $val ? "$def\n\r[Current value: $val]" : $def;
$v = "--$v";
# format =
# ^<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
#$v, $def_format
# ^<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ~~
#$v, $def_format
#.
write();
}
print STDOUT "\n";
exit 1;
}