Skip to content

Commit

Permalink
Version increment, fix pplacer issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pchaumeil committed Feb 14, 2023
1 parent 45bbba9 commit 95b1358
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions docs/src/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Change log
==========

2.2.2
-----

Bug Fixes:

* Fix Pplacer issue


2.2.1
-----

Expand Down
2 changes: 1 addition & 1 deletion gtdbtk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
__status__ = 'Production'
__title__ = 'GTDB-Tk'
__url__ = 'https://github.com/Ecogenomics/GTDBTk'
__version__ = '2.2.1'
__version__ = '2.2.2'
2 changes: 1 addition & 1 deletion gtdbtk/classify.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def place_genomes(self,
if levelopt is None or levelopt == 'high':
self.logger.info(f'pplacer version: {pplacer.version}')
# #DEBUG: Skip pplacer
run_pplacer = False
run_pplacer = True
if run_pplacer:
pplacer.run(self.pplacer_cpus, 'wag', pplacer_ref_pkg, pplacer_json_out,
user_msa_file, pplacer_out, pplacer_mmap_file)
Expand Down
2 changes: 1 addition & 1 deletion gtdbtk/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def run_test(self, options):

shutil.copytree(input_dir, genome_test_dir)

args = ['gtdbtk', 'classify_wf', '--genome_dir', genome_test_dir,
args = ['gtdbtk', 'classify_wf','--skip_ani_screen', '--genome_dir', genome_test_dir,
'--out_dir', output_dir, '--cpus', str(options.cpus), '-f']
self.logger.info('Command: {}'.format(' '.join(args)))

Expand Down

0 comments on commit 95b1358

Please sign in to comment.