We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2104e10 commit d25f04dCopy full SHA for d25f04d
snakemake/rules.py
@@ -708,7 +708,7 @@ def apply_input_function(
708
# Function evaluation can depend on input files. Since expansion can happen during dryrun,
709
# where input files are not yet present, we need to skip such cases and
710
# mark them as <TBD>.
711
- if e.filename in aux_params["input"]:
+ if "input" in aux_params and e.filename in aux_params["input"]:
712
value = TBDString()
713
else:
714
raise e
0 commit comments