-
Notifications
You must be signed in to change notification settings - Fork 0
/
helixtree2gt
executable file
·172 lines (135 loc) · 2.78 KB
/
helixtree2gt
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
#!/usr/bin/perl
use warnings;
use strict;
use fralib;
use File::Basename;
use Getopt::Long;
use Pod::Usage;
=head1 NAME
helixtree2gt
=head1 SYNOPSIS
helixtree2gt [options] <filename>
-h help
-m mk-file
example: helixtree2tg -m pscalare.mk pscalare.txt
Converts an Helixtree file with [ACGT?]_[ACGT?] encoding to a gt-file.
=head1 DESCRIPTION
=cut
#option variables
my $help;
my $mkFile;
my $gtFile;
my $helixtreeFile;
my $headerProcessed;
my @col2snp;
my %SNP;
my $colNo;
my %anno2col;
#initialize options
Getopt::Long::Configure ('bundling');
if(!GetOptions ('h'=>\$help, 'm=s'=>\$mkFile)
|| !defined($mkFile))
{
if ($help)
{
pod2usage(-verbose => 2);
}
else
{
pod2usage(1);
}
}
$helixtreeFile = $ARGV[0];
open(MK, $mkFile) || die "Cannot open $mkFile";
$headerProcessed = 0;
while(<MK>)
{
s/\r?\n?$//;
if(!$headerProcessed)
{
$colNo = s/\t/\t/g + 1;
my @fields = split('\t', $_, $colNo);
SEARCH_LABEL: for my $label ('snp-id', 'alleles')
{
for my $col (0 .. $#fields)
{
if ($fields[$col] eq $label)
{
$anno2col{$label} = $col;
next SEARCH_LABEL;
}
}
die "Cannot find '$label' in $mkFile";
}
$headerProcessed = 1;
}
else
{
my @fields = split('\t', $_, $colNo);
my $snp = $fields[$anno2col{'snp-id'}];
my $allele = $fields[$anno2col{'alleles'}];
my @alleles;
if($allele=~/([ACGT])\/([ACGT])/)
{
@alleles = ($1, $2);
}
$SNP{$snp}{"$alleles[0]_$alleles[0]"} = 0;
$SNP{$snp}{"$alleles[0]_$alleles[1]"} = 1;
$SNP{$snp}{"$alleles[1]_$alleles[1]"} = 2;
}
}
close(MK);
open(HELIXTREE, "$helixtreeFile") || die "Cannot open $helixtreeFile\n";
$headerProcessed = 0;
if(!defined($gtFile))
{
my ($name, $path, $ext) = fileparse($helixtreeFile, '\..*');
$gtFile = "$name.gt";
}
open(GT, ">$gtFile") || die "Cannot open $gtFile\n";
while (<HELIXTREE>)
{
s/\r?\n?$//;
if(!$headerProcessed)
{
$colNo = s/\t/\t/g + 1;
my @fields = split('\t', $_, $colNo);
print GT "sample-id";
for my $col (1 .. $#fields)
{
print GT "\t$fields[$col]";
$col2snp[$col] = $fields[$col];
}
print GT "\n";
$headerProcessed = 1;
}
else
{
my @fields = split('\t', $_, $colNo);
print GT "$fields[0]";
my $sample = $fields[0];
for my $col (1..$#fields)
{
my $genotype = $fields[$col];
my $snp = $col2snp[$col];
if ($genotype ne '?_?')
{
if (exists($SNP{$snp}{$genotype}))
{
print GT "\t$SNP{$snp}{$genotype}";
}
else
{
die "Unrecognised $snp genotype for sample $sample: $genotype " . join('/',keys(%{$SNP{$snp}}));
}
}
else
{
print GT "\t-1";
}
}
print GT "\n";
}
}
close(GT);
close(HELIXTREE);