Using Snakemake, is there any way to access the path of a config file passed to the workflow using the --configfile flag?
From poking around in the source for the workflow object, I initially thought the following minimal Snakefile
print(str(workflow.configfiles))
would print a list containing all config files, but running snakemake --configfile [path/to/config/file] -j 1 simply prints an empty list (Snakemake 6.1.1).