From ff7f4d1db251ae001180fd327c634996e05fc7f7 Mon Sep 17 00:00:00 2001 From: Bastian Eichenberger Date: Wed, 15 Mar 2023 19:03:39 +0100 Subject: [PATCH] Bumpversion; remove Blast in tasklist --- eFISHent/__init__.py | 2 +- eFISHent/cli.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eFISHent/__init__.py b/eFISHent/__init__.py index b34e673..0d3aa93 100644 --- a/eFISHent/__init__.py +++ b/eFISHent/__init__.py @@ -1,6 +1,6 @@ """eFISHent.""" -__version__ = "0.0.2" +__version__ = "0.0.3" import logging diff --git a/eFISHent/cli.py b/eFISHent/cli.py index 232eecb..4cf139f 100644 --- a/eFISHent/cli.py +++ b/eFISHent/cli.py @@ -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: diff --git a/setup.py b/setup.py index cf3afe6..d37c8c3 100644 --- a/setup.py +++ b/setup.py @@ -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",