-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
executable file
·45 lines (37 loc) · 904 Bytes
/
nextflow.config
File metadata and controls
executable file
·45 lines (37 loc) · 904 Bytes
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
/*
crispr-process-nf nextflow config
*/
params {
inputDir = '01_raw'
outputDir = 'results'
library = 'library.txt'
barcodes = 'barcodes.txt'
barcode_demux_mismatches = 0
barcode_length = 4
demux_unknown = false
random_barcode_length = 2
spacer_seq = 'TTCCAGCATAGCTCTTAAAC'
spacer_error_rate = 0.2
max_guide_length = 21
rc_guide_seq = false
padding = 'GGT'
}
profiles {
standard {
includeConfig 'conf/resources.config'
}
apptainer {
includeConfig 'conf/resources.config'
includeConfig 'conf/apptainer.config'
}
cbe {
includeConfig 'conf/resources.config'
includeConfig 'conf/apptainer.config'
includeConfig 'conf/cbe.config'
}
test {
includeConfig 'conf/resources_test_mode.config'
includeConfig 'conf/apptainer.config'
includeConfig 'conf/cbe.config'
}
}