Skip to content

Commit

Permalink
formatting error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tdayris committed Dec 4, 2023
1 parent e03150d commit f4c9d25
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .test/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ snakefiles := \
"../workflow/rules/raw_data/genome_variation.smk" \
"../workflow/rules/samtools/faidx.smk" \
"../workflow/rules/common.smk" \
"../workflow/rules/pyroe/id_to_name.smk" \
"../workflow/Snakefile"

python_scripts := \
Expand Down
1 change: 1 addition & 0 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ include: "rules/gatk/picard_dict.smk"
include: "rules/samtools/faidx.smk"
include: "rules/raw_data/blacklist.smk"
include: "rules/bedtools/merge_blacklist.smk"
include: "rules/pyroe/id_to_name.smk"


rule target:
Expand Down
6 changes: 3 additions & 3 deletions workflow/rules/pyroe/id_to_name.smk
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
rule pyroe_id_to_name:
input:
"reference/{species}.{build}.{release}.gtf"
"reference/{species}.{build}.{release}.gtf",
output:
"resources/{species}.{build}.{release}/tx2gene.tsv"
"resources/{species}.{build}.{release}/tx2gene.tsv",
threads: 1
log:
"logs/pyroe/id2name/{species}.{build}.{release}.log"
benchmark:
"benchmark/pyroe/id2name/{species}.{build}.{release}.tsv"
params:
extra="type='salmon'"
extra="type='salmon'",
wrapper:
f"{snakemake_wrappers_version}/bio/pyroe/idtoname"

0 comments on commit f4c9d25

Please sign in to comment.