-
Notifications
You must be signed in to change notification settings - Fork 0
/
exemplar2tg
executable file
·123 lines (97 loc) · 1.96 KB
/
exemplar2tg
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
#!/usr/bin/perl
use warnings;
use strict;
use fralib;
use File::Basename;
use Getopt::Long;
use Pod::Usage;
=head1 NAME
exemplar2tg
=head1 SYNOPSIS
exemplar2tg [options] <exemplar-file>
-h help
exemplar-file comma separated value file
example: exemplar2tg pscalare.csv
No marker file is required, it is the user's onus to ensure the marker file generated is correct.
Converts exemplar [blank],0,1,2,3 encoding to fratools -1,0,1,2 encoding.
=head1 DESCRIPTION
=cut
#option variables
my $help;
my $exemplarFile;
my $tgFile;
my $colNo;
my $headerProcessed;
#initialize options
Getopt::Long::Configure ('bundling');
if(!GetOptions ('h'=>\$help)
|| scalar(@ARGV)!=1)
{
if ($help)
{
pod2usage(-verbose => 2);
}
else
{
pod2usage(1);
}
}
$exemplarFile = $ARGV[0];
open(EXEMPLAR, "$exemplarFile") || die "Cannot open $exemplarFile\n";
if (!defined($tgFile))
{
my ($name, $dir, $ext) = fileparse($exemplarFile, '\..*');
$tgFile = "$name.tg";
}
open(TG, ">$tgFile") || die "Cannot open $tgFile\n";
$headerProcessed = 0;
while (<EXEMPLAR>)
{
s/\r?\n?$//;
if(!$headerProcessed)
{
$colNo = s/,/,/g + 1;
my $header = $_;
$header =~ s/,/\t/g;
my @fields = split('\t', $header, 2);
print TG "snp-id\t$fields[1]\n";
$headerProcessed = 1;
}
else
{
my @fields = split(',', $_, $colNo);
my $snp = $fields[0];
print TG "$snp";
for my $col (1..$#fields)
{
my $genotype = $fields[$col];
if ($genotype == 1)
{
print TG "\t0";
}
elsif ($genotype == 2)
{
print TG "\t1";
}
elsif ($genotype == 3)
{
print TG "\t2";
}
elsif (!defined($genotype))
{
print TG "\t-1";
}
elsif ($genotype == 0)
{
print TG "\t-1";
}
else
{
die "Encoding not valid for $snp at column $col : $genotype";
}
}
print TG "\n";
}
}
close(TG);
close(EXEMPLAR);