-
Notifications
You must be signed in to change notification settings - Fork 1
/
mynewworkflow.json
57 lines (57 loc) · 1.17 KB
/
mynewworkflow.json
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
{
"1": {
"category": "preprocessing",
"function": "intensity_normalization",
"parameter_values": {
"scaling_param": [
3.0,
15.0
]
},
"parent": 0
},
"2": {
"category": "preprocessing",
"function": "edge_preserving_smoothing",
"parent": 1
},
"3": {
"category": "core",
"function": "filament_filter_3D",
"parameter_values": {
"cutoff": 0.15,
"sigmas": [
2.0
]
},
"parent": 2
},
"4": {
"category": "core",
"function": "filament_filter_3D",
"parameter_values": {
"cutoff": 0.05,
"sigmas": [
1.0
]
},
"parent": 2
},
"5": {
"category": "core",
"function": "merge_segmentation",
"parent": [
3,
4
]
},
"6": {
"category": "postprocessing",
"function": "size_filter",
"parameter_values": {
"method": "3D",
"min_size": 5
},
"parent": 5
}
}