Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
alienzj committed May 13, 2020
1 parent a59887c commit 32aebaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion metapi/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3

__version__ = '0.7.7'
__version__ = '0.7.8'
__author__ = "Jie Zhu"
4 changes: 2 additions & 2 deletions metapi/rules/trimming.smk
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ if config["params"]["trimming"]["fastp"]["do"]:
os.path.join(
config["output"]["trimming"],
"short_reads/{{sample}}/{{sample}}.trimming{read}.fq.gz"),
read=[".1", ".2", ".single"] if IS_PE else "")) if RMHOST_DO else \
read=[".1", ".2"] if IS_PE else "")) if RMHOST_DO else \
expand(os.path.join(
config["output"]["trimming"],
"short_reads/{{sample}}/{{sample}}.trimming{read}.fq.gz"),
read=[".1", ".2", ".single"] if IS_PE else ""),
read=[".1", ".2"] if IS_PE else ""),
html = os.path.join(config["output"]["trimming"],
"short_reads/{sample}/{sample}.fastp.html"),
json = os.path.join(config["output"]["trimming"],
Expand Down

0 comments on commit 32aebaf

Please sign in to comment.