-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyradStr2immanc.pl
executable file
·206 lines (168 loc) · 5.9 KB
/
pyradStr2immanc.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
use warnings;
use strict;
use Getopt::Std;
use Data::Dumper;
# kill program and print help if no command line arguments were given
if( scalar( @ARGV ) == 0 ){
&help;
die "Exiting program because no command line options were used.\n\n";
}
# take command line arguments
my %opts;
getopts( 'hm:o:p:s:', \%opts );
# if -h flag is used, or if no command line arguments were specified, kill program and print help
if( $opts{h} ){
&help;
die "Exiting program because help flag was used.\n\n";
}
# parse the command line
my( $str, $out, $map, $pops, $select ) = &parsecom( \%opts );
# declare variables
my @strlines; # array to hold lines from structure file
my @maplines; # array to hold lines from map file
my %popmap; # hash to hold population map
my %data; # holds converted data from structure file
my %selecthash; #holds selected populations that will be output
my %droploci;
# put files into array
&filetoarray( $str, \@strlines );
&filetoarray( $map, \@maplines );
# convert structure format to immanc format, and push data into hash
for(my $i = 0; $i < @strlines; $i++){
my @ima;
my @temp = split(/\s+/, $strlines[$i]);
my $name = shift(@temp);
foreach my $allele(@temp){
if( $allele == -9){
$allele = 0;
push( @ima, $allele);
}else{
$allele+=1;
push( @ima, $allele);
}
}
my $alleles = join("\t", @ima);
if($i%2==0){
$data{$name}{"a1"} = $alleles;
}else{
$data{$name}{"a2"} = $alleles;
}
}
# read in popmap
foreach my $item( @maplines ){
my @temp = split( /\s+/, $item );
$popmap{$temp[0]} = $temp[1];
}
if( $select == 1){
my @temp = split(/,/, $pops);
foreach my $thing(@temp){
# print $thing, "\n";
$selecthash{$thing} = 1;
}
}
#get number of individuals
my $numinds = keys %selecthash;
#count how many individuals have missing data at a locus
if( $select == 1){
foreach my $ind( sort keys %data ){
if(exists $selecthash{$popmap{$ind}} ){
my @temp = split( /\t/, $data{$ind}{"a1"} );
for(my $i=0; $i<@temp; $i++ ){
if( $temp[$i] == 0 ){
$droploci{"locus$i"}++;
}
}
}
}
}
#foreach my $locus( sort keys %droploci ){
# if($droploci{$locus} == $numinds ){
# print $locus, "\n";
# }
#}
open(OUT, '>', $out) or die "Can't open $out: $!\n\n";
# print output file
foreach my $ind( sort keys %data ){
if( $select == 1){
if(exists $selecthash{$popmap{$ind}} ){
#print $ind;
my @a1 = split( /\t/, $data{$ind}{"a1"} );
my @a2 = split( /\t/, $data{$ind}{"a2"} );
for( my $i=0; $i<@a1; $i++ ){
if(!(exists $droploci{"locus$i"})){
print OUT "$ind $popmap{$ind} locus$i $a1[$i] $a2[$i]\n";
}elsif($droploci{"locus$i"} != $numinds){
print OUT "$ind $popmap{$ind} locus$i $a1[$i] $a2[$i]\n";
}
}
}
}else{
my @a1 = split( /\t/, $data{$ind}{"a1"} );
my @a2 = split( /\t/, $data{$ind}{"a2"} );
for( my $i=0; $i<@a1; $i++ ){
print OUT "$ind $popmap{$ind} locus$i $a1[$i] $a2[$i]\n";
}
}
}
close OUT;
#print Dumper(\%data);
#print Dumper(\%popmap);
exit;
#####################################################################################################
############################################ Subroutines ############################################
#####################################################################################################
# subroutine to print help
sub help{
print "\nstr2immanc.pl is a perl script developed by Steven Michael Mussmann\n\n";
print "To report bugs send an email to mussmann\@uark.edu\n";
print "When submitting bugs please include all input files, options used for the program, and all error messages that were printed to the screen\n\n";
print "Program Options:\n";
print "\t\t[ -h | -m | -o | -p | -s ]\n\n";
print "\t-h:\tDisplay this help message.\n";
print "\t\tThe program will die after the help message is displayed.\n\n";
print "\t-m:\tSpecify your population map text file.\n";
print "\t\tThis is a tab delimited file specifying the sample name in the first column and population name in the second.\n\n";
print "\t-o:\tUse this flag to specify the output file name.\n";
print "\t\tIf no name is provided, the file extension \".immanc\" will be appended to the input file name.\n\n";
print "\t-p:\tUse this flag to provide a comma-delimited list of populations to select for output.\n";
print "\t\tFor example, enter \"NFV,NTH,WFA\" to select only these populations from the input file.\n\n";
print "\t-s:\tUse this flag to specify the name of the structure file produced by pyRAD.\n\n";
}
#####################################################################################################
# subroutine to parse the command line options
sub parsecom{
my( $params ) = @_;
my %opts = %$params;
# set default values for command line arguments
my $str = $opts{s} || die "No input file specified.\n\n"; #used to specify input file name. This is the input snps file produced by pyRAD
my $out = $opts{o} || "$str.immanc" ; #used to specify output file name. If no name is provided, the file extension ".genepop" will be appended to the input file name.
my $map = $opts{m} || die "No input population map file specified.\n\n"; #used to specify tab-delimited population map file
my $pops;
my $select=0;
if($opts{p}){
$pops = $opts{p};
$select=1;
}
return( $str, $out, $map, $pops, $select );
}
#####################################################################################################
# subroutine to put file into an array
sub filetoarray{
my( $infile, $array ) = @_;
# open the input file
open( FILE, $infile ) or die "Can't open $infile: $!\n\n";
# loop through input file, pushing lines onto array
while( my $line = <FILE> ){
chomp( $line );
next if($line =~ /^\s*$/);
#print $line, "\n";
push( @$array, $line );
}
#foreach my $thing( @$array ){
# print $thing, "\n";
#}
# close input file
close FILE;
}
#####################################################################################################