-
Notifications
You must be signed in to change notification settings - Fork 2
/
nextflow.config
executable file
·49 lines (42 loc) · 1.17 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
trace {
enabled = true
file = 'pipeline_trace.txt'
fields = 'task_id,name,tag,status,exit,realtime,%cpu,%mem,rss,peak_rss,realtime'
}
process.container = 'combinelab/quantaf:latest'
docker.enabled = true
params {
timecmd = "/usr/bin/time"
// bench_dir = "/mnt/scratch4/dongze/10x-requant"
work_dir = "${projectDir}/nf_pipeline"
output_dir = "${projectDir}/nf_pipeline/output"
// delete_fastq = 1
read_len = 90
n_threads = 16
input_sheets {
permitlist = "${projectDir}/input_files/pl_sheet.tsv"
// reference = "${projectDir}/input_files/ref_sheet_example.tsv"
// sample = "${projectDir}/input_files/sample_sheet_example.tsv"
reference = "${projectDir}/input_files/ref_sheet.tsv"
sample = "${projectDir}/input_files/sample_sheet.tsv"
}
}
process {
withLabel: multi_threads {
cpus = 16
}
withLabel: single_threads {
cpus = 1
}
}
profiles {
docker {
process.container = 'combinelab/quantaf:latest'
docker.enabled = true
}
conda {
process.conda = "${projectDir}/conda.yml"
useMamba = true
}
test { includeConfig 'conf/test.config' }
}