Skip to content

Instantly share code, notes, and snippets.

@samesense
Created August 2, 2020 20:28
Show Gist options
  • Save samesense/4d11efc01c4d070793d70bed80c18599 to your computer and use it in GitHub Desktop.
Save samesense/4d11efc01c4d070793d70bed80c18599 to your computer and use it in GitHub Desktop.
Example snakefile for module concept
''' Three rule ex '''
rule one:
output:
'out1'
shell:
'touch {output}'
rule two:
input:
'out1'
output:
'some_dir/out2'
shell:
'touch {output}
rule three:
input:
out_path
output:
'out3'
shell:
'touch {output}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment