Description
Our pipeline requires that users install every variant caller at runtime, even if they don't actually use some of them.
For example, DELLY is not used by the pipeline by default, but it is still installed by Snakemake when it is executed for the first time.
Is there a way to improve this behavior so that only the required dependencies are installed at runtime? Currently, the answer is no.
Why? Well, there are only two steps in the Snakemake pipeline that execute the variant callers in the ensemble: the prepare_caller rule and the run_caller rule. Both steps must be general enough that they would work for any variant caller. The inputs and outputs of those rules dynamically adapt to every caller based on a single wildcard. If we wanted to have the dependencies of the rule change too, we would need to change the env
rule based on the caller
wildcard. But snakemake
currently offers no way of doing this; you can't provide a lambda function to env
like you can for input
, output
, and params
.
I really only see one solution to this issue, then: I submit a pull request (or feature request) for snakemake
that adds the functionality we desire. I can't really think of anything else short of some sort of major refactor?