-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
39 lines (28 loc) · 1001 Bytes
/
justfile
File metadata and controls
39 lines (28 loc) · 1001 Bytes
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
default:
just --list
fiber_segmentation:
python -m fiberpipeline.segmentation.fiber_segmentation --config=config.yaml
cell_segmentation:
python -m fiberpipeline.segmentation.cell_segmentation --config=config.yaml
fiber_skeleton:
python -m fiberpipeline.processing.skeletonize_fibers --config=config.yaml
extract_signals:
python -m fiberpipeline.processing.extract_signals --config=config.yaml
normalize_signals:
python -m fiberpipeline.processing.normalize_signals --config=config.yaml
filter_all:
python -m fiberpipeline.processing.filter_all --config=config.yaml
stats:
python -m fiberpipeline.processing.stats --config=config.yaml
plot:
python -m fiberpipeline.plot.plot --config=config.yaml
plot_signals:
python -m fiberpipeline.plot.plot_signals --config=config.yaml
everything:
just fiber_segmentation
just cell_segmentation
just fiber_skeleton
just extract_signals
just normalize_signals
just filter_all
just stats