Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Cutadapt compression level problem #153

Merged
merged 5 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_htsinfer_workflow/expected_output.md5
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
1dc3f566f896b72f8f0ab8b3d60da364 results/samples_htsinfer.tsv
642935539533503952f755dbe280fcbd results/htsinfer_SRR1.json
1632c04cd856a1af0abc964304d8e218 results/htsinfer_SRR2.json
ca3f9ef26821bfa061d3b7708823ebc3 results/htsinfer_SRR1.json
62303261f8dd73124c2a5a54cd28e572 results/htsinfer_SRR2.json
1 change: 1 addition & 0 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""General purpose RNA-Seq analysis pipeline developed by the Zavolan Lab"""

import os
import pandas as pd
import shutil
Expand Down
2 changes: 1 addition & 1 deletion workflow/envs/cutadapt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ channels:
- conda-forge
- bioconda
dependencies:
- cutadapt=3.4
- cutadapt=4.6
...
2 changes: 1 addition & 1 deletion workflow/rules/paired_end.snakefile.smk
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ rule pe_remove_adapters_cutadapt:
),
),
container:
"docker://quay.io/biocontainers/cutadapt:3.4--py37h73a75cf_1"
"docker://quay.io/biocontainers/cutadapt:4.6--py310h4b81fae_1"
conda:
os.path.join(workflow.basedir, "envs", "cutadapt.yaml")
threads: 4
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/single_end.snakefile.smk
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ rule remove_polya_cutadapt:
),
),
container:
"docker://quay.io/biocontainers/cutadapt:3.4--py37h73a75cf_1"
"docker://quay.io/biocontainers/cutadapt:4.6--py310h4b81fae_1"
conda:
os.path.join(workflow.basedir, "envs", "cutadapt.yaml")
threads: 4
Expand Down
Loading