-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
executable file
·28 lines (24 loc) · 1.05 KB
/
nextflow.config
File metadata and controls
executable file
·28 lines (24 loc) · 1.05 KB
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
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RutiSeq-nf Nextflow config file
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Default config options for all compute environments
----------------------------------------------------------------------------------------
*/
// Enable DSL2
nextflow.enable.dsl = 2
// Main nextflow.config file
includeConfig 'conf/params.config'
includeConfig 'conf/profiles.config'
includeConfig 'conf/reports.config'
// Include SGE resources only when using SGE profile
includeConfig 'conf/SGE_resources.config'
manifest {
name = 'RutiSeq-nf'
author = 'Poppy J. Hesketh Best'
homePage = 'https://github.com/phesketh-igtp/TBSEQ.cat-nf'
description = 'Mapping, variant calling and genomic clustering for the ongoing monitoring of MTB outbreaks in Catalunya'
mainScript = 'main.nf'
nextflowVersion = '>24.10.2'
version = '0.7.0 [pre_release]'
}