Skip to content

Commit

Permalink
add nucleotide information to marker name
Browse files Browse the repository at this point in the history
  • Loading branch information
lileiting committed Jun 6, 2015
1 parent a0c86ed commit fc7c3d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion createpileupmatrix.pl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ sub main{
next unless /^(\S+)\s+(\d+)\s+([ATGCatgcNn])\s+(\d+)\s+(\S+)\s+(\S+)/;
$num_valid++;
my($chr, $pos, $nt, $num, $bases, $qual) = ($1, $2, $3, $4, $5, $6);
$super_hash{"$chr-$pos"}->{$file} = $bases;
$super_hash{"$chr-$pos-$nt"}->{$file} = $bases;
}
close $fh;
warn "$num_line lines, $num_valid valid lines\n";
Expand Down

0 comments on commit fc7c3d8

Please sign in to comment.