Skip to content

Commit

Permalink
Bumpversion; remove Blast in tasklist
Browse files Browse the repository at this point in the history
  • Loading branch information
BBQuercus committed Mar 15, 2023
1 parent a648a56 commit ff7f4d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eFISHent/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""eFISHent."""

__version__ = "0.0.2"
__version__ = "0.0.3"

import logging

Expand Down
2 changes: 1 addition & 1 deletion eFISHent/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def main():

tasks: List[luigi.Task] = []
if args.build_indices:
tasks = [BuildJellyfishIndex(), BuildBowtieIndex(), BuildBlastDatabase()]
tasks = [BuildJellyfishIndex(), BuildBowtieIndex()]
elif args.analyze_probeset:
tasks = [AnalyzeProbeset()]
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
setup(
# Description
name="eFISHent",
version="0.0.2",
version="0.0.3",
license="MIT",
description="RNA FISH oligos/probes design tool.",
long_description_content_type="text/plain",
Expand Down

0 comments on commit ff7f4d1

Please sign in to comment.