Skip to content

Commit

Permalink
fixes #110, #117
Browse files Browse the repository at this point in the history
should still work for versions lower than 3.9, but not tested on those
  • Loading branch information
spock authored Nov 3, 2017
1 parent c5e559c commit f6316c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circlator/external_progs.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Error (Exception): pass

prog_to_version_cmd = {
'bwa': ('', re.compile('^Version: ([0-9\.]+)')),
'nucmer': ('--version', re.compile('^NUCmer \(NUCleotide MUMmer\) version ([0-9\.]+)')),
'nucmer': ('--version', re.compile('^(?:NUCmer \(NUCleotide MUMmer\) version )?([0-9\.]+).*')),
'prodigal': ('-v', re.compile('^Prodigal V([0-9\.]+):')),
'samtools': ('', re.compile('^Version: ([0-9\.]+)')),
'spades': ('', re.compile('^SPAdes genome assembler v.?([0-9][0-9\.]+)')),
Expand Down

0 comments on commit f6316c9

Please sign in to comment.