Skip to content

Commit

Permalink
Fix container linkst
Browse files Browse the repository at this point in the history
  • Loading branch information
cokelaer committed Sep 22, 2022
1 parent ee98a95 commit a8929e7
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions sequana_pipelines/variant_calling/variant_calling.rules
Expand Up @@ -79,7 +79,8 @@ if config["snpeff"]["do"]:
new_reference
log:
"common_logs/snpeff_add_locus_in_fasta.log"
"https://zenodo.org/record/6794508/files/sequana_tools_0.14.3.img"
container:
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/snpeff_add_locus_in_fasta"

Expand Down Expand Up @@ -116,7 +117,7 @@ if not config["input_pattern"].endswith("bam"):
options="",
index_algorithm="is"
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
threads: 2
wrapper:
f"{sequana_wrapper_branch}/wrappers/bwa/build"
Expand All @@ -136,7 +137,7 @@ if not config["input_pattern"].endswith("bam"):
options=config["bwa_mem"]["options"],
tmp_directory=config["bwa_mem"]["tmp_directory"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
threads: 2
wrapper:
f"{sequana_wrapper_branch}/wrappers/bwa/align"
Expand All @@ -156,7 +157,7 @@ rule add_read_group:
options=config["add_read_group"]["options"],
SM="{sample}"
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/add_read_group"

Expand All @@ -176,7 +177,7 @@ if config["sambamba_markdup"]["do"]:
tmp_directory=config["sambamba_markdup"]["tmp_directory"],
remove_duplicates=config["sambamba_markdup"]["remove_duplicates"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/sambamba_markdup"

Expand All @@ -202,7 +203,7 @@ if config["sambamba_filter"]["do"]:
threshold=config["sambamba_filter"]["threshold"],
options=config["sambamba_filter"]["options"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/sambamba_filter"

Expand All @@ -223,7 +224,7 @@ if config["sequana_coverage"]["do"]:
log:
"{sample}/samtools_depth/{sample}.log"
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/samtools_depth"

Expand Down Expand Up @@ -275,7 +276,7 @@ rule freebayes:
ploidy=config["freebayes"]["ploidy"],
options=config["freebayes"]["options"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/freebayes"

Expand All @@ -297,7 +298,7 @@ if config["snpeff"]["do"]:
params:
options=config["snpeff"]["options"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/snpeff"

Expand All @@ -323,7 +324,7 @@ rule freebayes_vcf_filter:
params:
filter_dict=config["freebayes_vcf_filter"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/freebayes_vcf_filter"

Expand All @@ -345,7 +346,7 @@ if config["joint_freebayes"]["do"]:
ploidy=config["freebayes"]["ploidy"],
options=config["joint_freebayes"]["options"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/freebayes"

Expand All @@ -365,7 +366,7 @@ if config["joint_freebayes"]["do"]:
params:
options=config["snpeff"]["options"]
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/snpeff"

Expand All @@ -386,7 +387,7 @@ if config["joint_freebayes"]["do"]:
filter_dict=config["freebayes_vcf_filter"],
report_dir="joint_calling"
container:
"https://zenodo.org/record/7031863/files/sequana_tools_0.14.3.img"
"https://zenodo.org/record/7102074/files/sequana_tools_0.14.3.img"
wrapper:
f"{sequana_wrapper_branch}/wrappers/freebayes_vcf_filter"
expected_output+=["joint_calling/variant_calling.html"]
Expand Down

0 comments on commit a8929e7

Please sign in to comment.