-
Notifications
You must be signed in to change notification settings - Fork 2
/
nextflow.config
29 lines (26 loc) · 1.06 KB
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
====================================================================================
v-met Nextflow config file
====================================================================================
See files in the ./conf folder to change configuration
------------------------------------------------------------------------------------
*/
// Pipeline metadata
manifest {
name = 'v-met'
author = 'K-State Molecular NGS Lab'
homePage = 'https://ksumngs.github.io/v-met'
description = 'A bare-bones, ridiculously simple metagenomics pipeline for viruses'
mainScript = 'main.nf'
nextflowVersion = '!>=21.10.6'
version = '1.0.1'
recurseSubmodules = true
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
includeConfig 'conf/parameters.config'
includeConfig 'conf/profiles.config'
includeConfig 'conf/resources.config'
includeConfig 'conf/environment.config'
includeConfig 'conf/trace.config'
includeConfig 'conf/modules.config'