Skip to content

Commit

Permalink
Merge pull request #151 from RoanKanninga/master
Browse files Browse the repository at this point in the history
update for unknown barcode
  • Loading branch information
Gerbenvandervries authored Dec 9, 2016
2 parents 9b99b1c + ea1072a commit cf54f14
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CreateIlluminaSampleSheet_V2.pl
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,10 @@ sub _ProcessExperiment {
# Check if barcodeType is one for which we know how to handle it.
#
unless (exists($gaf_barcode_types{$barcodeType})) {
$logger->fatal('Detected unknown barcodeType ' . $barcodeType . ' for internalSampleID ' . $internalSampleID . '.');
$logger->fatal('Known barcodeType values are ' . join(' || ', keys(%gaf_barcode_types)) . '.');
exit(1);
$gaf_barcode_types{$barcodeType}{'IlluminaDemultiplexing'}=1;
#$logger->fatal('Detected unknown barcodeType ' . $barcodeType . ' for internalSampleID ' . $internalSampleID . '.');
#$logger->fatal('Known barcodeType values are ' . join(' || ', keys(%gaf_barcode_types)) . '.');
#exit(1);
}

my @lanes = split(',',$lanes); # Separate multiple lane values like "1,2".
Expand Down

0 comments on commit cf54f14

Please sign in to comment.