Skip to content

Commit

Permalink
set masked position file as one file, not array of files
Browse files Browse the repository at this point in the history
  • Loading branch information
lakras authored Nov 24, 2023
1 parent 7995198 commit fa227f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/detect_potential_cross_contamination.pl
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,11 @@
{
push(@plate_map_files, @$input);
}
elsif(($input = read_in_string_argument("-3", "--masked-positions")) ne -1)
elsif(($input = read_in_string_argument("-3", "--masked-positions")) ne "-1")
{
$masked_positions_string = $input;
}
elsif(($input = read_in_input_files_argument("-4", "--masked-positions-file")) ne -1)
elsif(($input = read_in_input_file_argument("-4", "--masked-positions-file")) ne "-1")
{
$masked_positions_file = $input;
}
Expand Down

0 comments on commit fa227f4

Please sign in to comment.