snakecharm
snakecharm copied to clipboard
Methods from another *.smk files highlighted as unresolved
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