From 7205c8effd21e268fef608c3e0afa3ebd34a0729 Mon Sep 17 00:00:00 2001 From: Shinya Suzuki Date: Wed, 19 Jun 2019 20:08:01 +0900 Subject: [PATCH] [DEV] Change output suffix of deblur_seqs command to align with build_biom_table --- scripts/deblur | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deblur b/scripts/deblur index f5d9dcc..98c6031 100755 --- a/scripts/deblur +++ b/scripts/deblur @@ -106,7 +106,7 @@ def deblur_seqs(seqs_fp, mean_error, error_dist, indel_prob, seqs = deblur(sequence_generator(seqs_fp), mean_error, error_dist, indel_prob, indel_max) - output_path = "%s.clean" % seqs_fp + output_path = "%s.deblur" % seqs_fp with open(output_path, 'w') as f: for s in seqs: f.write(s.to_fasta())