Skip to content

Commit 95b1358

Browse files
committed
Version increment, fix pplacer issue
1 parent 45bbba9 commit 95b1358

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

docs/src/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Change log
33
==========
44

5+
2.2.2
6+
-----
7+
8+
Bug Fixes:
9+
10+
* Fix Pplacer issue
11+
12+
513
2.2.1
614
-----
715

gtdbtk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
__status__ = 'Production'
3030
__title__ = 'GTDB-Tk'
3131
__url__ = 'https://github.com/Ecogenomics/GTDBTk'
32-
__version__ = '2.2.1'
32+
__version__ = '2.2.2'

gtdbtk/classify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def place_genomes(self,
263263
if levelopt is None or levelopt == 'high':
264264
self.logger.info(f'pplacer version: {pplacer.version}')
265265
# #DEBUG: Skip pplacer
266-
run_pplacer = False
266+
run_pplacer = True
267267
if run_pplacer:
268268
pplacer.run(self.pplacer_cpus, 'wag', pplacer_ref_pkg, pplacer_json_out,
269269
user_msa_file, pplacer_out, pplacer_mmap_file)

gtdbtk/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def run_test(self, options):
492492

493493
shutil.copytree(input_dir, genome_test_dir)
494494

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

0 commit comments

Comments
 (0)