-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnextflow.config
More file actions
42 lines (36 loc) · 968 Bytes
/
nextflow.config
File metadata and controls
42 lines (36 loc) · 968 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
nextflow.enable.dsl = 2
params {
inputDir = 'raw'
outputDir = 'results'
library = 'library.txt'
barcodes = 'barcodes.txt'
barcode_demux_mismatches = 0
barcode_demux_location = 'both'
barcode_length = 4
demux_unknown = false
spacer_seq_R1 = 'ATATCCCTTGGAGAAAAGCCTTGTTT'
spacer_seq_R2 = 'CTTGCTATGCACTCTTGTGCTTAGCTCTGAAAC'
spacer_error_rate = 0.3
guide_length = 21
padding_bases_first_guide = 'GTT'
padding_bases_matching_guide = 'ACC'
random_barcode_length = 4
}
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'
}
}