-
Notifications
You must be signed in to change notification settings - Fork 20
/
thinner_dadi.pl
executable file
·206 lines (184 loc) · 5.09 KB
/
thinner_dadi.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
#!/usr/bin/perl
my $usage="
thinner.pl (v.4.4) :
Subsamples a tab-delimited genotype file (vcf, beagle, etc) where first column is
chromosome (contig) and second column is position within it.
Leaves only one SNP per specified nucleotide distance interval, chosen by its
allele frequency, sequencing depth, combination of those, or randomly. All criteria
except random assume the input is a VCF with AF and DP info.
The process works like this:
1. Start position is randomly chosen within \"interval\" distance from the beginning
of the chromosome.
2. SNP is chosen within the \"interval\" from the start position.
3. New start is set \"interval\" away from the chosen SNP.
4. Repeat 2-3 until end of chromosome, then go to 1 with new chromosome.
The minimal distance between selected SNPs is \"interval\", but most selected SNPs will
be further apart than that.
Since the process uses random starts at each chromosome, different SNPs might be selected
even with deterministic (AF- or DP-based) criteria. Random thinning is particularly
useful for \"LD network\" analysis.
Arguments:
infile=[file name] : input dadi-formatted file name (last two columns
must be chromosome and position)
interval=[integer] : interval length, default 40 (for 2bRAD tags)
Output: thinned table, printed to STDOUT
Example: thinner_dadi.pl infile=denovo_dadi.data > thinDenov.dadi
NOTES: - Do not thin variants if you want to calculate pi or Tajima's D.
Mikhail Matz, matz\@utexas.edu
";
my $vcf;
if (" @ARGV "=~/infile=(\S+)/) { $vcf=$1; } else { die $usage; }
my $inter=80;
if (" @ARGV "=~/interval=(\d+)/) { $inter=$1*2; }
my $criterion="random";
#warn "criterion:$criterion\n";
open VCF, $vcf or die "cannot open input file $vcf\n";
my @dats;
my $info;
my $chrom;
my $pos;
my $pos0=-sprintf("%.0f",rand $inter/2);
my $poslast=-$inter;
#warn "pos0:$pos0;poslast:$poslast\n";
my $af;
my $dp;
my @afs=();
my @dps=();
my $maxaf=0;
my $maxdp=0;
my @snps=();
my $chrom0="";
my @maxdps=();
my $skipped=0;
my $selected=0;
my $total=0;
while (<VCF>) {
if ($_=~/^#/) { print and next;}
chomp;
$total++;
@dats=split(/\s/,$_);
$chrom=$dats[$#dats-1];
$pos=$dats[$#dats];
if (!$chrom0) { $chrom0=$chrom;}
if ( $pos-$poslast < $inter/2 and ($chrom eq $chrom0)) {
#warn "\t\t\tskipping $pos\n" ;
$skipped++;
next;
}
$info=$dats[7];
if ($info=~/AF=(\S*?);/ | $info=~/AF=([^;]*?)$/) {
$af=$1;
} else {
if ($criterion=~/AF/) {
warn "no AF:\n@dats\n" and next;
}
}
if ($info=~/DP=(\d*?);/ | $info=~/DP=([^;]*?)$/) {
$dp=$1;
} else {
if ($criterion=~/DP/) {
warn "no DP:\n@dats\n" and next;
}
}
if ($af>0.5) { $af=1-$af; }
if (($pos-$pos0 < $inter) and ($chrom eq $chrom0)){
#warn "\t pos:$pos - interval:",$pos0,"-",$pos0+$inter," - poslast:$poslast\n";
push @snps,join("\t",@dats);
push @afs,$af;
push @dps,$dp;
if ($af >$afs[$maxaf]) { $maxaf=$#afs; }
if ($dp > $dps[$maxdp]) {
@maxdps=();
$maxdp=$#dps;
push @maxdps, $maxdp;
}
elsif ($dp==$dps[$maxdp]) { push @maxdps, $#dps; }
}
else {
if ($snps[0]){
my $datum;
#warn "$chrom0: $#snps | @afs | @dps : maxaf:$afs[$maxaf]; maxdp:$dps[$maxdp] (@maxdps) \n";
if ($criterion eq "random") {
$datum=$snps[rand @snps];
}
elsif ($criterion eq "maxAF") {
$datum=$snps[$maxaf] ;
}
elsif ($criterion eq "maxDP-random"){
$datum=$snps[$maxdps[rand @maxdps]] ;
}
elsif ($criterion eq "maxDP-maxAF"){
$maxaf=0;
foreach my $md (@maxdps) {
if ($afs[$md]>$maxaf) {
$maxaf=$afs[$md];
$maxdp=$md;
}
}
$datum=$snps[$maxdp] ;
#warn "chose $maxdp\n";
}
my @datss=split(/\t/,$datum);
$poslast=$datss[1];
#warn "\t\tSel:$poslast\n";
print $datum,"\n" ;
$selected++;
}
$maxaf=0;
$maxdp=0;
@afs=();
@dps=();
@snps=();
if ( $pos-$poslast < $inter/2 and ($chrom eq $chrom0)) {
#warn "\t\t\tskipping $pos\n" ;
$skipped++;
next;
}
if ($chrom ne $chrom0) {
$chrom0=$chrom;
#warn "\n-------------\nnew chrom: $chrom\n";
$poslast=-$inter;
$pos0=-sprintf("%.0f",rand $inter/2);
}
while ($pos0+$inter<$pos) { $pos0+=$inter;}
#warn "\t Pos:$pos - interval:",$pos0,"-",$pos0+$inter," - poslast:$poslast\n";
push @afs,$af;
push @dps,$dp;
@maxdps=();
push @maxdps, 0;
push @snps,join("\t",@dats);
}
}
if ($snps[0]){
my $datum;
#warn "$chrom0: $#snps | @afs | @dps : maxaf:$afs[$maxaf]; maxdp:$dps[$maxdp] (@maxdps) \n";
if ($criterion eq "random") {
$datum=$snps[rand @snps];
}
elsif ($criterion eq "maxAF") {
$datum=$snps[$maxaf] ;
}
elsif ($criterion eq "maxDP-random"){
$datum=$snps[$maxdps[rand @maxdps]] ;
}
elsif ($criterion eq "maxDP-maxAF"){
$maxaf=0;
foreach my $md (@maxdps) {
if ($afs[$md]>$maxaf) {
$maxaf=$afs[$md];
$maxdp=$md;
}
}
$datum=$snps[$maxdp] ;
#warn "chose $maxdp\n";
}
my @datss=split(/\t/,$datum);
$poslast=$datss[1];
#warn "\t\tSel:$poslast\n";
print $datum,"\n" ;
$selected++;
}
warn "
$total total loci
$selected loci selected
";