Я сохранил свои правила SnakeMake в разных .smk
файлах. У меня есть один файл (a.smk) со следующей функцией ввода
def get_input(wildcards):
# Some processing
return input_list
rule some_rule_in_first_file:
input: get_input
# rest of the rule
Теперь в другом файле (b.smk) я хочу сделать что-то вроде следующего,
rule another_rule_in_second_file:
input: get_input
# Rest of the rule
Как можно Я добиваюсь выше?