Skip to content

Commit

Permalink
Revert "update minimap wrapper"
Browse files Browse the repository at this point in the history
This reverts commit 956d884.
  • Loading branch information
SilasK committed Dec 17, 2024
1 parent 2331806 commit 7c5ecf4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/assemble.smk
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ if config["filter_contigs"]:
resources:
mem_mb=config["mem"] * 1000,
wrapper:
"v5.5.0/bio/minimap2/aligner"
"v1.19.0/bio/minimap2/aligner"

rule pileup_prefilter:
input:
Expand Down Expand Up @@ -635,7 +635,7 @@ rule align_reads_to_final_contigs:
resources:
mem_mb=config["mem"] * 1000,
wrapper:
"v5.5.0/bio/minimap2/aligner"
"v1.19.0/bio/minimap2/aligner"


rule pileup_contigs_sample:
Expand Down
4 changes: 2 additions & 2 deletions workflow/rules/genecatalog.smk
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ rule index_genecatalog:
params:
index_size="12G",
wrapper:
"v5.5.0/bio/minimap2/index"
"v1.19.0/bio/minimap2/index"


rule concat_all_reads:
Expand Down Expand Up @@ -266,7 +266,7 @@ rule align_reads_to_Genecatalog:
extra="-x sr --split-prefix {sample}_split_ ",
sort="coordinate",
wrapper:
"v5.5.0/bio/minimap2/aligner"
"v1.19.0/bio/minimap2/aligner"


rule pileup_Genecatalog:
Expand Down
4 changes: 2 additions & 2 deletions workflow/rules/genomes.smk
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ if config["genome_aligner"] == "minimap":
resources:
mem_mb=config["mem"] * 1000,
wrapper:
"v5.5.0/bio/minimap2/index"
"v1.19.0/bio/minimap2/index"

rule align_reads_to_genomes:
input:
Expand All @@ -223,7 +223,7 @@ if config["genome_aligner"] == "minimap":
resources:
mem_mb=config["mem"] * 1000,
wrapper:
"v5.5.0/bio/minimap2/aligner"
"v1.19.0/bio/minimap2/aligner"

elif config["genome_aligner"] == "bwa":

Expand Down

0 comments on commit 7c5ecf4

Please sign in to comment.