-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
74 lines (57 loc) · 1.47 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
manifest {
name = "orkas"
author = "Anders Goncalves da Silva"
description = "orkas is a Nextflow pipeline for bacterial pathogen genomics inspired by Nullarbor"
version = "0.1.0"
mainScript = "main.nf"
}
params {
//inputs
local_input = "data/local-samplesheet.csv"
context_input = "gs://fastq-minag/context-fastq/samplesheet/samplesheet.csv"
// reference
reference = "gs://fastq-minag/reference/NC_000913.3.fasta"
ref_is_complete = true
chromosome_id = "NC_000913.3"
//outputs
outdir = "results"
publish_dir_mode = "copy"
//kraken inputs
kraken_db = "gs://kraken2-db/stdandard-8g-20220607/"
// params
var_detection_mode = 'bcftools' // bcftools or freebayes
//freebayes
mincov = 10
basequal = 20
mapqual = 42
minfrac = 0.9
minqual = 50
// general config
enable_conda = false
// google_params
google_project = null
}
includeConfig 'confs/modules.config'
profiles {
standard {
process.executor = 'local'
}
google_life_sciences {
process.executor = 'google-lifesciences'
google.region = 'northamerica-northeast1'
docker.enabled = true
conda.enabled = false
}
google_batch {
process.executor = 'google-batch'
google.region = 'us-central1'
docker.enabled = true
conda.enabled = false
}
}
google {
project = params.google_project
}
conda {
useMamba = true
}