Skip to content

Commit

Permalink
Merge pull request #782 from mgcam/move_runfolder_bug_fix
Browse files Browse the repository at this point in the history
Fixed incorrect string comparison
  • Loading branch information
jmtcsngr authored Nov 28, 2023
2 parents 9b85eee + 58e62c7 commit ccca100
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ LIST OF CHANGES
instruments well after the run was mirrored and the runfolder moved to
'analysis'). The duplicate runfolder in 'incoming' is disregarded'.
- DRAGEN samplesheet generation - limit analysis to human samples only.
- Fixed incorrect string comparison in the npg_move_runfolder script.

release 97.0.2
- pin DBD::mysql to 4.050 to keep temp support for old mysql clients
Expand Down
2 changes: 1 addition & 1 deletion bin/npg_move_runfolder
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GetOptions (
);
if ($help) { pod2usage(0); }

if (!defined $runfolder_path || $runfolder_path == q[]) {
if (!defined $runfolder_path || $runfolder_path eq q[]) {
die "ERROR: --runfolder_path argument is required\n";
}

Expand Down

0 comments on commit ccca100

Please sign in to comment.