Skip to content

Commit

Permalink
improve output
Browse files Browse the repository at this point in the history
  • Loading branch information
snacktavish committed Aug 10, 2019
1 parent 2c7dc69 commit 5463766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion physcraper/scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ def filter_seqs(self, tmp_dict, threshold=5, type="random"):
aln_sp_d = self.make_sp_dict(aln_otus)
debug("There are {} taxa in aln".format(len(aln_sp_d)))
alltax = set(new_sp_d.keys()).union(aln_sp_d.keys())
sys.stdout.write("taxa in orginal alignment; {} taxa in updated alignemnt {}, keeping max {} seq per taxon".format(len(aln_sp_d), len(alltax), threshold))
sys.stdout.write("taxa in orginal alignment; {} taxa in updated alignemnt {}, keeping max {} seq per taxon\n".format(len(aln_sp_d), len(alltax), threshold))
for tax_id in new_sp_d:
debug(" {} new seqs for taxon {}".format(len(new_sp_d[tax_id]), tax_id))
tax_otus = []
Expand Down

0 comments on commit 5463766

Please sign in to comment.