Skip to content

Commit

Permalink
fixed typo in mapping.smk, missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
danilexn committed Apr 24, 2024
1 parent 5cc8ecd commit 9d5082e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacemake/snakemake/mapping.smk
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ rule load_genome:
output:
temp(touch(star_index_loaded)),
params:
f_locked_current=lambda wc: expand(star_index_locked_current, ref_name=wc.ref_name, species=wc.species)
f_locked_current=lambda wc: expand(star_index_locked_current, ref_name=wc.ref_name, species=wc.species),
log_dir=lambda wc: expand(star_index_log_location, ref_name=wc.ref_name, species=wc.species)
shell:
"""
Expand All @@ -604,7 +604,7 @@ rule unload_genome:
temp(touch(star_index_unloaded)),
params:
f_locked=lambda wc: expand(star_index_locked, ref_name=wc.ref_name, species=wc.species),
f_locked_current=lambda wc: expand(star_index_locked_current, ref_name=wc.ref_name, species=wc.species)
f_locked_current=lambda wc: expand(star_index_locked_current, ref_name=wc.ref_name, species=wc.species),
log_dir=lambda wc: expand(star_index_log_location, ref_name=wc.ref_name, species=wc.species)
shell:
"""
Expand Down

0 comments on commit 9d5082e

Please sign in to comment.