Skip to content

Commit

Permalink
[mg] fixed the conflicts in the Snakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
magodfroid committed Oct 26, 2023
1 parent 413c85f commit fca7dda
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -413,15 +413,16 @@ if common_config["platform"] =="RNA-Seq":
genome = genome_dir / pipeline_config["genome_filename"]
params:
annotations = genome_dir / pipeline_config["annotation_filename"],
genome_name = pipeline_config["genome_name"]
genome_name = pipeline_config["genome_name"],
genome_dir = pipeline_config["genomedir"]
output:
directory(genome_dir / "RSEM_index")
conda:
"envs/preprocessing.yml"
benchmark: log_dir / "benchmark.RSEM_make_index.txt"
shell:
'''
mkdir RSEM_index
mkdir {params.genome_dir}/RSEM_index
rsem-prepare-reference --gtf {params.annotations} {input.genome} {output}/{params.genome_name}
'''

Expand Down

0 comments on commit fca7dda

Please sign in to comment.