Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unresolved output in rule imported from module #552

Closed
iromeo opened this issue Oct 21, 2024 · 1 comment
Closed

Unresolved output in rule imported from module #552

iromeo opened this issue Oct 21, 2024 · 1 comment

Comments

@iromeo
Copy link
Contributor

iromeo commented Oct 21, 2024

Should not be unresolved here.

Example:

image
rule all:
    input:
        "results/all.done",


module other:
    snakefile:
        "module.smk"
    prefix:
        "results/other"


use rule * from other as other_*


rule all_impl:
    output:
        out=touch("results/all.done"),
    input:
        b=rules.other_b.output.b,
    shell:
        "cp {input} {output}"
@iromeo
Copy link
Contributor Author

iromeo commented Oct 21, 2024

duplicates #520

@iromeo iromeo closed this as completed Oct 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant