forked from science-aid/labcode-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprotocol.yaml
More file actions
67 lines (67 loc) · 1.13 KB
/
protocol.yaml
File metadata and controls
67 lines (67 loc) · 1.13 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
input:
- id: volume
type: Array[Float]
- id: channel
type: Integer
default:
value: 0
type: Integer
output:
- id: data
type: Spread[Array[Float]]
operations:
- id: serve_plate1
type: ServePlate96
- id: dispense_liquid1
type: DispenseLiquid96Wells
# input:
# - id: channel
# type: Integer
# value: 0
- id: read_absorbance1
type: ReadAbsorbance3Colors
- id: store_labware1
type: StoreLabware
connections:
- input:
- input
- volume
output:
- dispense_liquid1
- volume
is_data: True
- input:
- input
- channel
output:
- dispense_liquid1
- channel
is_data: True
- input:
- serve_plate1
- value
output:
- dispense_liquid1
- in1
is_data: False
- input:
- dispense_liquid1
- out1
output:
- read_absorbance1
- in1
is_data: False
- input:
- read_absorbance1
- out1
output:
- store_labware1
- in1
is_data: False
- input:
- read_absorbance1
- value
output:
- output
- data
is_data: True