-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
executable file
·69 lines (54 loc) · 1.54 KB
/
nextflow.config
File metadata and controls
executable file
·69 lines (54 loc) · 1.54 KB
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
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Cell Type Annotation Benchmarking Pipeline - Nextflow config
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
// Load base config
includeConfig "$projectDir/conf/base.config"
// Load params config
includeConfig "$projectDir/conf/params.config"
// Load module-specific config
includeConfig "$projectDir/conf/modules.config"
// Note: outdir is computed in profile-specific configs or via command line
// to ensure profile params are applied before path computation
// DAG settings
dag.overwrite = true
// Trace settings
trace {
enabled = true
file = "${params.outdir}/trace.txt"
overwrite = true
}
// Cleanup work dir after successful run
cleanup = true
// Profiles
profiles {
conda {
conda.enabled = true
}
// slurm {
// process.executor = 'slurm'
// process.queue = 'default'
// }
hsap {
//includeConfig "$projectDir/conf/hsap.config"
}
mmus {
// includeConfig "$projectDir/conf/mmus.config"
}
debug {
process.beforeScript = 'echo $HOSTNAME'
cleanup = false
}
}
workDir = '/cosmos/data/nextflow-eval-pipeline-work'
// Manifest
manifest {
name = 'cell-annotation-benchmark'
author = 'rschwartz'
homePage = ''
description = 'Benchmarking pipeline for cell type annotation methods'
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.0.0'
}