Skip to content

Commit

Permalink
Merge pull request #47 from martinghunt/nucmer_simplify_true
Browse files Browse the repository at this point in the history
Nucmer simplify true
  • Loading branch information
satta committed Feb 19, 2016
2 parents 3e5092c + f52611b commit 204bd0d
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
Expand Up @@ -4,7 +4,7 @@

class Error (Exception): pass

version = '1.1.3'
version = '1.1.4'

def syscall(cmd, allow_fail=False, verbose=False):
if verbose:
Expand Down
2 changes: 1 addition & 1 deletion circlator/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def _run_nucmer(self, ref, qry, outfile):
diagdiff=self.nucmer_diagdiff,
maxmatch=True,
breaklen=self.nucmer_breaklen,
simplify=False,
simplify=True,
verbose=self.verbose
)
n.run()
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='circlator',
version='1.1.3',
version='1.1.4',
description='circlator: a tool to circularise genome assemblies',
packages = find_packages(),
package_data={'circlator': ['data/*']},
Expand All @@ -22,7 +22,7 @@
'pyfastaq >= 3.10.0',
'pysam >= 0.8.1',
'pymummer>=0.6.1',
'bio_assembly_refinement>=0.4.0',
'bio_assembly_refinement>=0.5.0',
],
license='GPLv3',
classifiers=[
Expand Down

0 comments on commit 204bd0d

Please sign in to comment.