snakecharm icon indicating copy to clipboard operation
snakecharm copied to clipboard

Methods from another *.smk files highlighted as unresolved

Open iromeo opened this issue 3 years ago • 2 comments

Make accessible methods defined in the *.smk files. On runtime everything will be merged to the same file

E.g.

# rules/common.smk
def foo():
 pass

# rules/foo.smk
 a = foo() # <- here complete/resolve `foo`

E.g see https://github.com/snakemake-workflows/dna-seq-gatk-variant-calling, mapping.smk

Method get_trimmed_reads marked as unresolved, although is defined in common.smk

image

iromeo avatar May 18 '21 15:05 iromeo