Is it possible to specify dependancies for a stage using wildcard characters (aka glob)? I would like to be able to write something like
stages:
compare:
cmd: python src/compare_data.py
deps:
- src/compare_data.py
- data/parameter_*.csv
In this case, the parameter_001.csv etc files came from a previous stage that includes a foreach loop that created the csv files.
When I tried the above, I get the error dependency 'data/parameter_*.csv' does not exist, even though the file (with * replaced by 001) does actually exist.