I have a snakemake rule that calls a python program, the output of the python program is dependent on the arguments passed. I would like to make snakemake aware of the differences between the expected output when a certain parameter is passed (Boolean) or not passed. My current solution is to create a list of…
Tag: wildcard-expansion
Wrong snakemake glob_wilcards and wildcard_constraints
Within my snakemake pipeline I’m trying to retrieve the correct wildcards. I’ve looked into wildcard_constraints and this post and this post, however I can’t figure out the exact solution. Here’s an example of file names within 2 datasets. 1 dataset contains paired mouse RNAseq read fi…
How to use wildcards in keyword wildcard_constraints
For example, I have the following wildcards. I am trying to contrain my dataset with my group. for example, I want to create A1/file.A.txt A2/file.A.txt A3/file.A.txt B1/file.B.txt … I wrote a following rule hoping to make that possible oops, I got the error It seems like that the {group} is regarded as…