You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Criterion is met if the number of basecalled bases which pass filtering is greater than or
86
86
// equal to the specified value.
87
87
//
88
+
// `coverage` (float)
89
+
// The number of times a given reference genome is sequenced
90
+
// Criterion will never be met if basecalling is not enabled or a reference is not supplied
91
+
// Updates will not be supplied if basecalling is not enabled or a reference is not supplied
92
+
// Criterion is met if the coverage amount is greater than or equal than the specified value
93
+
//
94
+
// `barcode_coverage` (float)
95
+
// The number of times a given reference genome is sequenced and has also been identified to have an attached barcode
96
+
// Criterion will never be met if basecalling is not enabled, a reference is not supplied, barcoding is not enabled, or the samples have no attached barcode
97
+
// Updates will not be supplied if basecalling is not enabled or a reference is not supplied, barcoding is not enabled, or the samples have no attached barcode
98
+
// Criterion is met if the coverage amount is greater than or equal than the specified value
99
+
//
100
+
// `bed_coverage` (float)
101
+
// The same as `coverage`, with the addition that the bases have to be associated with a BED region
102
+
// Criterion will also never be met if a BED file is not supplied
103
+
//
104
+
// `bed_barcode_coverage` (float)
105
+
// The same as `barcode_coverage`, with the addition that the bases have to be associated with a BED region
106
+
// Criterion will also never be met if a BED file is not supplied
This section of the API is an under-construction replacement of the per-flow-cell-position APIs, such as:
1
+
This section of the API is an under-construction replacement of the per-flow-cell-position APIs.
2
2
3
-
## ProtocolService
4
-
* list_protocol_runs
5
-
* get_run_info
6
-
* generate_run_report
7
-
* clear_protocol_history_data
8
-
9
-
## AcquisitionService
10
-
* get_acquisition_info
11
-
* list_acquisition_runs
12
-
13
-
The above calls should be made to the usual manager port (9501/2) rather than to individual `control_server` ports.
14
-
Each of the above calls will be modified to add a `run_id` field, or potentially a 'repeated' `run_id` for interacting with multiple protocols simultaneously.
3
+
The calls should be made to the usual manager port (9501/2) rather than to individual `control_server` ports.
4
+
Calls will be modified to add a `run_id` field, or potentially a 'repeated' `run_id` for interacting with multiple protocols simultaneously.
0 commit comments