in reply to Help De-bugging
Hi GeneGeek,
Working backwards ...
192 my ($first_site, $last_site) = $use_filtered ? @{$thresholds +->{$dye}{'indices'}} : (0, $nchar-1);
188 my $nchar = ${$tax_sample->{'NChar'}}[0];
186 my $tax_sample = $data->{$taxon_label}{'Samples'}{$dye};
158 my ($thresholds, $data, $comments); 159 { 160 if (@ARGV) { 161 my $gtr_fname = canonpath $ARGV[0]; 162 open GTR_IN, $gtr_fname or die "Cannot open `$gtr_fname' for r +eading: $!"; 163 } else { 164 print STDERR "Reading data from standard input ...\n"; 165 *GTR_IN = *STDIN; 166 } 167 ($thresholds, $data, $comments) = readGTR *GTR_IN; 168 close GTR_IN; 169 }
So it looks like the hash is created by the readGTR() sub in genotyping_utilities . . .34 use genotyping_utilities qw( &canonpath &openForWriting &readGTR &g +etRepsTable &transpose &isReal &getReplicateGroups );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help De-bugging
by GeneGeek (Initiate) on Sep 04, 2015 at 21:00 UTC | |
by 1nickt (Canon) on Sep 04, 2015 at 21:05 UTC |