用--profile替换--cluster-config

问题描述 投票:0回答:1

Snakemake的最新版本(v5.10.10)说cluster configuration has been deprecated,建议改用profiles。但是,我没有任何有关此操作的文档。

如何将以下群集配置(snakemake doc中使用的example转换为配置文件?

{
    "__default__" :
    {
        "account" : "my account",
        "time" : "00:15:00",
        "n" : 1,
        "partition" : "core"
    },
    "compute1" :
    {
        "time" : "00:20:00"
    }
}

snakemake
1个回答
0
投票

使用此链接,您应该能够找到适合您的个人资料。我同意文档并没有非常清楚地说明如何进行迁移。

https://github.com/snakemake-profiles/doc

© www.soinside.com 2019 - 2024. All rights reserved.