Skip to content
Snippets Groups Projects
Commit cd08880e authored by Valentina Galata's avatar Valentina Galata
Browse files

rm workflow/steps/mapping.smk (incl in assembly)

parent 3981a117
No related branches found
No related tags found
1 merge request!76Merge "cleanup" branch with "master" branch
# Mapping
include:
'../rules/mapping.smk'
# NOTE: Using "shell: touch ..." to avoid the rule from being autodetected as `localrule`.
# This is needed so that an email can be sent upon event changes for this rule.
rule MAPPING:
input:
lr=expand(os.path.join(RESULTS_DIR, "mapping/lr/{tool}/assembly_lr.bam"), tool=config["assemblers"]["lr"]),
sr=expand(os.path.join(RESULTS_DIR, "mapping/sr/{tool}/assembly_sr.bam"), tool=config["assemblers"]["sr"]),
hy=expand(
os.path.join(RESULTS_DIR, "mapping/{rtype1}/{tool}/assembly_{rtype2}.bam"),
rtype1=["hy"], rtype2=["sr", "lr", "hy"], tool=config["assemblers"]["hy"]
)
output:
"status/mapping.done"
shell:
"touch {output}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment