Skip to content

Commit

Permalink
Update extractsnp.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdb authored May 20, 2022
1 parent ad58cad commit 9f2cb4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/adj/extractsnp.pl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl
# extractcols.pl file

open(GENELIST, $ARGV[0]) || die "Couldn't open $ARGV[0]\n";
open(GENELIST, $ARGV[0]) || die "Error: Cannot open $ARGV[0]\n";
while(<GENELIST>)
{
chomp;
Expand All @@ -10,7 +10,7 @@
}
close(GENELIST);

open(MAP, $ARGV[1]) || die "Couldn't open $ARGV[1]\n";
open(MAP, $ARGV[1]) || die "Error: Cannot open $ARGV[1]\n";
while(<MAP>)
{
chomp;
Expand Down

0 comments on commit 9f2cb4f

Please sign in to comment.