Created
August 2, 2020 20:28
-
-
Save samesense/4d11efc01c4d070793d70bed80c18599 to your computer and use it in GitHub Desktop.
Example snakefile for module concept
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' 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