Skip to content

Commit

Permalink
Merge pull request #473 from tseemann/cdhit_version_bug
Browse files Browse the repository at this point in the history
Fix cd-hit version check regexp
  • Loading branch information
andrewjpage authored Nov 6, 2019
2 parents 1ea98f0 + 0c433a1 commit 6c6a7c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Bio/Roary/External/CheckTools.pm
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ my %tools = (
my %cdhit_tools = (
'cdhit' => {
GETVER => "cdhit -h | grep 'CD-HIT version'",
REGEXP => qr/version ($BIDEC) /,
REGEXP => qr/version\s+($BIDEC)/i,
MINVER => "4.6",
},
'cd-hit' => {
GETVER => "cd-hit -h | grep 'CD-HIT version'",
REGEXP => qr/version ($BIDEC) /,
REGEXP => qr/version\s+($BIDEC)i/,
MINVER => "4.6",
}
);
Expand Down

0 comments on commit 6c6a7c2

Please sign in to comment.