Skip to content

Commit

Permalink
fixes #17
Browse files Browse the repository at this point in the history
  • Loading branch information
brwnj committed Oct 31, 2018
1 parent d01de36 commit 3929283
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hundo/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def md5(fname):

PROTOCOL_VERSION = subprocess.check_output("hundo --version", shell=True).decode("utf-8").strip()
if config.get("workflow") == "download":
SAMPLES, OMITTED = {"placeholder": {"r1": "placeholder", "r2": "placeholder"}}
SAMPLES, OMITTED = ({"placeholder": {"r1": "placeholder", "r2": "placeholder"}}, dict())
else:
SAMPLES, OMITTED = get_sample_files(
config.get("fastq_dir"), config.get("prefilter_file_size", 100000)
Expand Down
2 changes: 1 addition & 1 deletion hundo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.1"
__version__ = "1.2.3"
2 changes: 1 addition & 1 deletion hundo/hundo.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def get_snakefile():
help="use at most this many cores in parallel",
)
@click.option(
"--rd",
"-rd",
"--reference-database",
default="silva",
type=click.Choice(["silva", "greengenes", "unite"]),
Expand Down

0 comments on commit 3929283

Please sign in to comment.