/usr/bin/vcf-fix-ploidy is in vcftools 0.1.15-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/env perl
#
# Author: petr.danecek@sanger
#
use strict;
use warnings;
use Carp;
use Vcf;
my $opts = parse_params();
fix_ploidy($opts);
exit;
#--------------------------------
sub error
{
my (@msg) = @_;
if ( scalar @msg ) { confess @msg; }
print
"Usage: cat broken.vcf | vcf-fix-ploidy [OPTIONS] > fixed.vcf\n",
"Options:\n",
" -a, --assumed-sex <sex> M or F, required if the list is not complete in -s\n",
" -l, --fix-likelihoods Add or remove het likelihoods (not the default behaviour)\n",
" -p, --ploidy <file> Ploidy definition. The default is shown below.\n",
" -s, --samples <file> List of sample sexes (sample_name [MF]).\n",
" -h, -?, --help This help message.\n",
"Default ploidy definition:\n",
" ploidy =>\n",
" {\n",
" X =>\n",
" [\n",
" # The pseudoautosomal regions 60,001-2,699,520 and 154,931,044-155,270,560 with the ploidy 2\n",
" { from=>1, to=>60_000, M=>1 },\n",
" { from=>2_699_521, to=>154_931_043, M=>1 },\n",
" ],\n",
" Y =>\n",
" [\n",
" # No chrY in females and one copy in males\n",
" { from=>1, to=>59_373_566, M=>1, F=>0 },\n",
" ],\n",
" MT =>\n",
" [\n",
" # Haploid MT in males and females\n",
" { from=>1, to => 16_569, M=>1, F=>1 },\n",
" ],\n",
" }\n",
"\n";
exit -1;
}
sub parse_params
{
my $opts =
{
ploidy =>
{
X =>
[
{ from=>1, to=>60_000, M=>1 },
{ from=>2_699_521, to=>154_931_043, M=>1 },
],
Y =>
[
{ from=>1, to=>59_373_566, M=>1, F=>0 },
],
MT =>
[
{ from=>1, to => 16_569, M=>1, F=>1 },
],
},
};
while (defined(my $arg=shift(@ARGV)))
{
if ( $arg eq '-p' || $arg eq '--ploidy' ) {
my $file=shift(@ARGV);
$file = "./$file" if $file !~ m{^/};
my $x=do $file;
if (!defined $x) {
error("problem parsing \"$file\": $@") if $@;
error("problem doing \"$file\": $!");
}
$$opts{ploidy}=$x;
next
}
if ( $arg eq '-s' || $arg eq '--samples' ) { $$opts{samples}=shift(@ARGV); next }
if ( $arg eq '-a' || $arg eq '--assumed-sex' ) { $$opts{assumed_sex}=shift(@ARGV); next }
if ( $arg eq '-l' || $arg eq '--fix-likelihoods' ) { $$opts{fix_likelihoods}=1; next }
if ( $arg eq '-?' || $arg eq '-h' || $arg eq '--help' ) { error(); }
error("Unknown parameter \"$arg\". Run -h for help.\n");
}
if ( !exists($$opts{samples}) ) { error("Missing the -s option.\n") }
return $opts;
}
sub fix_ploidy
{
my ($opts) = @_;
my $vcf = $$opts{vcf} = Vcf->new(fh=>\*STDIN);
$vcf->parse_header();
init_regions($opts);
print $vcf->format_header;
my @samples = $vcf->get_samples;
my ($prev_chr,$prev_pos,$regions,$iregion,$nregions);
my %nchanged;
while (my $line = $vcf->next_line)
{
my $rec = $vcf->next_data_array($line);
if ( !defined $prev_chr or $$rec[0] ne $prev_chr )
{
$prev_chr = $$rec[0];
$prev_pos = $$rec[1];
if ( exists($$opts{regions}{$prev_chr}) )
{
$regions = $$opts{regions}{$prev_chr};
$iregion = 0;
$nregions = @$regions;
}
else
{
$regions = undef;
}
}
$prev_chr = $$rec[0];
$prev_pos = $$rec[1];
my $samples;
if ( defined $regions )
{
if ( $prev_pos >= $$regions[$iregion]{from} && $prev_pos <= $$regions[$iregion]{to} )
{
$samples = $$regions[$iregion]{samples};
}
else
{
while ( $iregion<$nregions && $$regions[$iregion]{to}<$prev_pos ) { $iregion++; }
if ( $iregion>=$nregions ) { undef $regions; }
elsif ( $prev_pos >= $$regions[$iregion]{from} && $prev_pos <= $$regions[$iregion]{to} )
{
$samples = $$regions[$iregion]{samples};
}
}
}
if ( !defined $samples ) { print $line; next; }
my $igt = $vcf->get_tag_index($$rec[8],'GT',':');
my $ipl = $vcf->get_tag_index($$rec[8],'PL',':');
my $igl = $vcf->get_tag_index($$rec[8],'GL',':');
if ( $igt==-1 ) { print $line; next; }
my @alt = split(/,/,$$rec[4]);
my $nals = $alt[0] eq '.' ? 1 : 1 + scalar @alt;
my $changed = 0;
my $nrec = @$rec;
for (my $isample=9; $isample<$nrec; $isample++)
{
my $sample = $samples[$isample-9];
if ( !exists($$samples{$sample}) ) { next; }
my $gt = $vcf->get_field($$rec[$isample],$igt);
my ($pl,$gl);
if ( $$opts{fix_likelihoods} && $ipl != -1 ) { $pl = $vcf->get_field($$rec[$isample],$ipl); }
if ( $$opts{fix_likelihoods} && $igl != -1 ) { $gl = $vcf->get_field($$rec[$isample],$igl); }
my ($new_gt, $new_pl, $new_gl);
if ( !$$samples{$sample} )
{
# missing genotype - leave it as it is unless it must be removed
if ( $gt ne '.' && $gt ne './.' )
{
my (@als) = $vcf->split_gt($gt);
if ( defined $pl && $pl ne '.' ) { ($new_pl) = reploid_g($rec, 1, $nals, $pl, scalar @als, 1); }
if ( defined $gl && $gl ne '.' ) { ($new_gl) = reploid_g($rec, -1, $nals, $gl, scalar @als, 1); }
$new_gt = '.';
$nchanged{removed}{$sample}++;
}
}
else
{
my (@als) = $vcf->split_gt($gt);
if ( $$samples{$sample} != @als )
{
$new_gt = join('/',($als[0]) x $$samples{$sample});
if ( defined $pl && $pl ne '.' ) { ($new_pl,$new_gt) = reploid_g($rec, 1, $nals, $pl, scalar @als, $$samples{$sample}); }
if ( defined $gl && $gl ne '.' ) { ($new_gl,$new_gt) = reploid_g($rec, -1, $nals, $gl, scalar @als, $$samples{$sample}); }
}
}
if ( defined $new_gt )
{
$$rec[$isample] = $vcf->replace_field($$rec[$isample],$new_gt,$igt,':');
$changed++;
}
if ( defined $new_pl )
{
$$rec[$isample] = $vcf->replace_field($$rec[$isample],$new_pl,$ipl,':');
$changed++;
}
if ( defined $new_gl )
{
$$rec[$isample] = $vcf->replace_field($$rec[$isample],$new_gl,$igl,':');
$changed++;
}
}
if ( $changed ) { print join("\t",@$rec),"\n"; }
else { print $line; }
}
# Output stats
for my $key (sort keys %nchanged)
{
for my $sample (sort keys %{$nchanged{$key}})
{
print STDERR "$sample\t$$opts{samples}{$sample}\t$key\t$nchanged{$key}{$sample}\n";
}
}
}
sub reploid_g
{
my ($rec, $extr,$nals,$str,$n,$m) = @_;
my @vals = split(/,/,$str);
if ( $n==2 && $m==1 )
{
my @out;
my $d = 1;
my $k = 0;
my ($imin,$min);
for (my $i=0; $i<$nals; $i++)
{
if ( $k>=@vals ) { error("Cannot reploid $$rec[0]:$$rec[1], too few values in $str: $nals, $n->$m ($i,$d,$k)\n"); }
if ( $vals[$k] ne '.' && (!defined $min or $min>$extr*$vals[$k]) )
{
$min = $extr*$vals[$k];
$imin = $i;
}
push @out, $vals[$k];
$d++;
$k += $d;
}
my $gt = defined $imin ? $imin : 0;
return (join(',',@out), $gt);
}
elsif ( $n==1 && $m==2 )
{
my @out;
my ($imin,$min);
for (my $i=0; $i<$nals; $i++)
{
for (my $j=0; $j<=$i; $j++)
{
push @out, $i==$j ? $vals[$i] : '.';
if ( $vals[$i] ne '.' && (!defined $min or $min>$extr*$vals[$i]) )
{
$min = $extr*$vals[$i];
$imin = $i;
}
}
}
my $gt = defined $imin ? $imin : 0;
return (join(',',@out), "$gt/$gt" );
}
else { error("Only diploid/haploid cases handled in this version, sorry."); }
}
sub init_regions
{
my ($opts) = @_;
open(my $fh,'<',$$opts{samples}) or error("$$opts{samples}: $!");
my (%sexes,%samples);
while (my $line=<$fh>)
{
$line =~ s/^\s*//;
$line =~ s/\s*$//;
if ( !($line=~/^(\S+)\s+(\S+)$/) ) { error("Could not parse the sample file $$opts{sample}, the offending line was: $line"); }
push @{$sexes{$2}}, $1;
$samples{$1} = $2;
}
close($fh);
$$opts{samples} = \%samples;
for my $sample ($$opts{vcf}->get_samples())
{
if ( !exists($samples{$sample}) )
{
if ( !exists($$opts{assumed_sex}) ) { error("Could not determine the sex of the sample \"$sample\". Would the -a option help here?\n"); }
$samples{$sample} = $$opts{assumed_sex};
push @{$sexes{$$opts{assumed_sex}}}, $sample;
}
}
# Create a quick look-up structure
for my $chr (keys %{$$opts{ploidy}})
{
if ( ref($$opts{ploidy}{$chr}) ne 'ARRAY' ) { error("Uh, expected list reference for $chr regions.\n"); }
my $prev;
for my $reg (sort { $$a{from}<=>$$b{to} } @{$$opts{ploidy}{$chr}})
{
my $from = $$reg{from};
my $to = $$reg{to};
if ( defined $prev && $prev>=$from ) { error("FIXME: Overlapping regions $chr:$prev>=$from\n"); }
$prev = $to;
my $region;
for my $sex (keys %sexes)
{
if ( !exists($$reg{$sex}) ) { next; }
for my $sample (@{$sexes{$sex}})
{
$$region{samples}{$sample} = $$reg{$sex};
}
}
if ( !defined $region ) { next; }
$$region{from} = $from;
$$region{to} = $to;
push @{$$opts{regions}{$chr}}, $region;
}
}
}
|