How to do a partial expand in Snakemake?

后端 未结 3 1346
眼角桃花
眼角桃花 2021-01-13 13:29

I\'m trying to first generate 4 files, for the LETTERS x NUMS combinations, then summarize over the NUMS to obtain one file per element in LETTERS:

LETTERS =         


        
3条回答
  •  太阳男子
    2021-01-13 13:57

    Indeed, braces need to be escaped when you want to ignore them in expand. It relies on str.format, and hence any rules from format apply to expand as well.

提交回复
热议问题