Skip to content
Snippets Groups Projects
Commit 7af20a4c authored by Kenzo-Hugo Hillion's avatar Kenzo-Hugo Hillion ♻️
Browse files

fix typo in Snakefiles

parent 7f3a14c9
No related branches found
No related tags found
No related merge requests found
...@@ -6,9 +6,9 @@ rule export2graphlan: ...@@ -6,9 +6,9 @@ rule export2graphlan:
__export2graphlan_input __export2graphlan_input
output: output:
tree = __export2graphlan_output_tree, tree = __export2graphlan_output_tree,
annot = __export2graphlan_output_annot annot = __export2graphlan_output_annotation
params: params:
exec_command = __export2graphlan_exec_command, exec_command = __export2graphlan_exec_command,
options = __export2graphlan_options options = __export2graphlan_options
shell: shell:
"{params.exec_command} {params.options} -i {input} -tree {output.tree} --annotation {output.annot}" "{params.exec_command} {params.options} -i {input} --tree {output.tree} --annotation {output.annot}"
...@@ -3,8 +3,8 @@ __graphlan_annotate_options = config['graphlan_annotate'].get('options', "") ...@@ -3,8 +3,8 @@ __graphlan_annotate_options = config['graphlan_annotate'].get('options', "")
rule graphlan_annotate: rule graphlan_annotate:
input: input:
tree = __graphlan_annotate_input_tree tree = __graphlan_annotate_input_tree,
annot = __graphlan_annotate_input_annot annot = __graphlan_annotate_input_annotation
output: output:
__graphlan_annotate_output __graphlan_annotate_output
params: params:
......
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