You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shell.executable("bash")
configfile: "config/config.yaml"
module test1:
snakefile:
"module-test/Snakefile"
config:
config
replace_prefix:
{"results/": "results/testmodule1/"}
module test2:
snakefile:
"module-test/Snakefile"
config:
config
replace_prefix:
{"results/": "results/testmodule2/"}
use rule * from test1 as test1_*
use rule * from test2 as test2_*
rule all:
default_target: True
input:
rules.test1_a.output,
rules.test2_a.output
assert test1.some_func() == 15
assert test2.some_func() == 15
module-test:
configfile: "config.yaml" # does not exist, but this statement should be ignored on module import
def some_func():
return 15
rule a:
output:
"results/test.out"
shell:
"echo {config[test]} > {output}"
```
The text was updated successfully, but these errors were encountered:
module-test:
The text was updated successfully, but these errors were encountered: