We had issue with following line:
Step 4. Preparing list of final outputs...
- Getting outputs for project: Lactobacillus_delbrueckii
WorkflowError in file /home/mhaahr/bgcflow/workflow/rules/common.smk, line 731:
Failed to open source file /home/mhaahr/bgcflow/workflow/../../workflow/rules.yaml
FileNotFoundError: [Errno 2] No such file or directory: '/home/mhaahr/bgcflow/workflow/../../workflow/rules.yaml'
Worked afrer updating from:
Line 731: with open(workflow.source_path(f"../../{rule_dict_path}"), "r") as file:
to:
Line 731: with open(workflow.source_path(f"../{rule_dict_path}"), "r") as file: