-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnextflow.config
64 lines (53 loc) · 1.23 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
manifest {
author = 'Angel Angelov'
name = 'nxf-ont'
description = 'A nextflow pipeline for processing raw Nanopore data'
homePage = 'https://github.com/angelovangel/nxf-ont'
nextflowVersion = '>=19.08'
/*
* pipeline input parameters
*/
}
params {
//Options: mandatory
input = false
outdir = './results'
csv = false
cpus = 4
// Options: guppy basecalling & demultiplexing
flowcell = false
kit = false
barcode_kits = false
skip_basecalling = false
skip_demultiplexing = false
cpu_threads_per_caller = false
num_callers = 1
config = false
trim_barcodes = false
// Options: adaper trimming
skip_porechop = false
// Options: quality control
skip_pycoqc = false
// Options: other
help = false
}
profiles {
test { includeConfig 'test.config' }
// profile just for rename + cat, used to prep data for qbic
rename {
params.skip_basecalling = true
params.skip_demultiplexing = true
params.skip_porechop = true
params.skip_pycoqc = true
}
}
docker.enabled = true
process.container = 'aangeloo/nxf-ont:1.1'
process {
withName:guppy_basecaller {
container = 'aangeloo/ont-guppy:4.0.14'
}
withName:guppy_barcoder {
container = 'aangeloo/ont-guppy:4.0.14'
}
}