Skip to content

Commit

Permalink
Critical bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
youyupei committed Jul 28, 2024
1 parent 543184f commit ee14ca7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions blaze/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,11 @@ def update_pipeline_args(args):
else:
args.do_whitelisting = True
pipeline_summary += helper.green_msg('Generate the whitelist and knee plot: Yes\n', printit=False)
if args.force_cells is None:
if args.force_cells is not None:
pipeline_summary += f"\t*Forced number of cells: {args.force_cells}\n"
args.count_threshold = None
args.expect_cells = None
elif args.count_threshold is None:
elif args.count_threshold is not None:
args.expect_cells = None


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='blaze2',
version='2.3.0a1',
version='2.3.0a2',
author='Yupei You',
author_email="youyupei@gmail.com",
description='Barcode identification from Long reads for AnalyZing single cell gene Expression',
Expand Down

0 comments on commit ee14ca7

Please sign in to comment.