展开

流程管理器设计

最后发布时间 : 2023-11-19 20:27:36 浏览量 :

生信小木屋

https://seqera.io/blog/deploying-nextflow-on-amazon-eks/

process {
    executor = 'slurm' 
    queue = 'short' 

    withLabel: bigTask {  
        executor = 'awsbatch' 
        queue = 'my-batch-queue' 
        container = 'my/image:tag' 
    }
}

aws {
    region = 'eu-west-1' 
}

https://training.nextflow.io/basic_training/executors/#hybrid-deployments

生信小木屋

https://www.nextflow.io/docs/latest/kubernetes.html

生信小木屋

https://github.com/mpc-bioinformatics/nf-cloud