-
Notifications
You must be signed in to change notification settings - Fork 3
/
nextflow.config
56 lines (47 loc) · 1.04 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
49
50
51
52
53
54
55
56
process {
publishDir = {"./results_bst/$sid/$task.process"}
scratch = true
stageInMode = 'copy'
stageOutMode = 'rsync'
tag = { "$sid" }
afterScript = 'sleep 1'
}
params {
help=false
input=false
atlas_anat=false
atlas_directory=false
use_atlas_roi_seeding=false
use_orientational_priors=true
use_bs_tracking_mask=false
use_bs_endpoints_include=false
bs_endpoints_mask_dilation=3
use_tracking_mask_as_seeding=true
bs_tracking_mask_dilation=3
local_tracking=true
pft_tracking=false
seeding="npv"
nbr_seeds=1
algo="prob"
sh_basis="descoteaux07"
min_length=20
max_length=200
compress_error_tolerance=0.2
tracking_seed=0
// recobundles segmentation
recobundles=true
wb_clustering_thr=6
model_clustering_thr=4
prunning_thr=12
outlier_alpha=0.6
register_processes=4
}
singularity.autoMounts = true
profiles {
fully_reproducible {
params.register_processes=1
}
macos {
process.scratch="/tmp"
}
}