Skip to content

Commit

Permalink
Added example, fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Engreitz committed Jun 17, 2021
1 parent 46db42d commit b9f5234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/design_guides.smk
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ SKIP_SCORING=true"
print("Running: " + command)
proc_output = subprocess.check_output(command, shell=True)
except subprocess.CalledProcessError as exc:
if 'filteredGuides.bed' in exc.output:
if 'filteredGuides.bed' in str(exc.output):
print("Snakemake caught Java Exception: Ignore this error, which is expected")
pass
else:
Expand Down

0 comments on commit b9f5234

Please sign in to comment.