Skip to content

Commit

Permalink
Merge pull request #31 from martinghunt/master
Browse files Browse the repository at this point in the history
Spades use untrusted-contigs
  • Loading branch information
martinghunt committed Jul 14, 2015
2 parents 8b5b95a + 21e18e4 commit e6ee55c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ariba/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def _assemble_with_spades(self, unittest=False):
'-o', self.assembler_dir,
'-k', str(self.assembly_kmer),
'--threads', str(self.threads),
'--trusted-contigs', self.gene_fa,
'--untrusted-contigs', self.gene_fa,
])
if self.spades_other is not None:
cmd += ' ' + self.spades_other
Expand Down
2 changes: 1 addition & 1 deletion ariba/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
import subprocess

version = '0.4.0'
version = '0.4.1'

def syscall(cmd, allow_fail=False, verbose=False):
if verbose:
Expand Down
2 changes: 1 addition & 1 deletion ariba/faidx.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def write_fa_subset(seq_names, infile, outfile, samtools_exe='samtools', verbose
common.syscall(' '.join([
samtools_exe + ' faidx',
infile,
name,
'"' + name + '"',
'>>', outfile
]))

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='ariba',
version='0.4.0',
version='0.4.1',
description='ARIBA: Antibiotic Resistance Identification By Assembly',
packages = find_packages(),
author='Martin Hunt',
Expand Down

0 comments on commit e6ee55c

Please sign in to comment.