-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
69 lines (66 loc) · 2.21 KB
/
Copy pathnextflow.config
File metadata and controls
69 lines (66 loc) · 2.21 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
def INPUTDIR = "/path/to/your/dataset"
params {
PoSTcode = true
inputRefImagePath = INPUTDIR + "anchor_nuclei.tif*"
inputMovImagesLearnPath = INPUTDIR + "r*_DAPI.tif*"
movingImagesApplyPath = INPUTDIR + "r*_*.tif*"
inputUntransformedImagesPath = INPUTDIR + "anchor_*.tif*"
elastix_parameter_files = "/$baseDir/parameter_files/elastix_parameters_2D_*.txt"
ExpMetaJSON = INPUTDIR + "experiment_metadata.json"
CodeJSON = INPUTDIR + "codebook.json"
filt_radius = "5"
rescale_factor = "5"
}
profiles {
conda {
conda.enabled = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
mamba {
conda.enabled = true
conda.useMamba = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
docker {
docker.enabled = true
conda.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
docker.runOptions = '--entrypoint ""'
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
conda.enabled = false
docker.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
apptainer {
apptainer.enabled = true
apptainer.autoMounts = true
conda.enabled = false
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
}
// Load modules.config for DSL2 module specific options
includeConfig 'conf/slurm.config'