-
Notifications
You must be signed in to change notification settings - Fork 2
/
plantit.yaml
76 lines (75 loc) · 1.86 KB
/
plantit.yaml
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
70
71
72
73
74
75
name: DIRT\mu
author: Peter Pietrzyk
public: True
doi: 10.1002/essoar.10508833.1
shell: bash
image: docker://computationalplantscience/dirtmu
logo: DIRTX-mu.png
commands: python3 /opt/code/hairyroots.py -i $INPUT -o $OUTPUT --n_levels $N_LEVELS --w_mind $W_MIND --w_len $W_LEN --w_curve $W_CURVE --id_root $ID_ROOT --id_background $ID_BACKGROUND --id_roothair $ID_ROOTHAIR -p --pixel_size $PIXEL_SIZE
jobqueue:
walltime: "24:00:00"
memory: "32GB"
processes: 1
cores: 1
input:
kind: files
filetypes:
- tif
- tiff
output:
include:
patterns:
- csv # include csv files
- png # and png files
exclude:
patterns:
- pkl # don't include pickle files
params:
- name: n_levels # number of levels for simulated annealing
type: number
default: 1000
step: 100
min: 100
max: 2000
- name: w_mind # weight for minimum distance
type: number
default: 1
step: 1
min: 0
max: 100
- name: w_len # weight for length (=completeness)
type: number
default: 1
step: 1
min: 0
max: 100
- name: w_curve # weight for curvature
type: number
default: 1
step: 1
min: 0
max: 100
- name: id_root # index for root pixels
type: number
default: 3
step: 1
min: 0
max: 255
- name: id_background # index for image background
type: number
default: 2
step: 1
min: 0
max: 255
- name: id_roothair # index for root hair pixels
type: number
default: 1
step: 1
min: 0
max: 255
- name: pixel_size # scale of microscopy image
type: number
default: 1
step: 0.01
min: 0.01
max: 10