Skip to content

Commit

Permalink
Merge pull request #16 from martinghunt/minimus2_error_typos
Browse files Browse the repository at this point in the history
Minimus2 error typos
  • Loading branch information
bewt85 committed May 29, 2015
2 parents 56ccbeb + 21d4099 commit b3f87c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion circlator/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
import subprocess

version = '0.13.0'
version = '0.13.1'

def syscall(cmd, allow_fail=False, verbose=False):
if verbose:
Expand Down
4 changes: 2 additions & 2 deletions circlator/minimus2.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ def _run_initial_merge(self, infile, outdir):
print('Error running merge. Going to use original contigs. Minimus2 errors follow...\n', file=sys.stderr)
print(errors, file=sys.stderr)
print('... end of Minimus2 output.\n\n', file=sys.stderr)
logging.info('Number of original contigs: ' + strlen(original_contigs))
logging.info('Number of singleton contigs: ', 'NA')
logging.info('Number of original contigs: ' + str(len(original_contigs)))
logging.info('Number of singleton contigs: NA')
logging.info('Number of contigs that were merged: NA')
logging.info('Merged contigs: NA')
return infile
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='circlator',
version='0.13.0',
version='0.13.1',
description='circlator: a tool to circularise bacterial genome assemblies',
packages = find_packages(),
package_data={'circlator': ['data/*']},
Expand Down

0 comments on commit b3f87c7

Please sign in to comment.