arkitekt-next 0.7.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of arkitekt-next might be problematic. Click here for more details.
- arkitekt_next/__init__.py +43 -0
- arkitekt_next/apps/__init__.py +3 -0
- arkitekt_next/apps/easy.py +99 -0
- arkitekt_next/apps/next.py +40 -0
- arkitekt_next/apps/qt.py +97 -0
- arkitekt_next/apps/service/__init__.py +3 -0
- arkitekt_next/apps/service/fakts.py +88 -0
- arkitekt_next/apps/service/fakts_next.py +79 -0
- arkitekt_next/apps/service/fakts_qt.py +82 -0
- arkitekt_next/apps/service/fluss_next.py +31 -0
- arkitekt_next/apps/service/grant_registry.py +27 -0
- arkitekt_next/apps/service/herre.py +24 -0
- arkitekt_next/apps/service/herre_qt.py +57 -0
- arkitekt_next/apps/service/kabinet.py +31 -0
- arkitekt_next/apps/service/mikro_next.py +81 -0
- arkitekt_next/apps/service/rekuest_next.py +53 -0
- arkitekt_next/apps/service/unlok_next.py +32 -0
- arkitekt_next/apps/types.py +53 -0
- arkitekt_next/builders.py +264 -0
- arkitekt_next/cli/__init__.py +0 -0
- arkitekt_next/cli/commands/call/__init__.py +0 -0
- arkitekt_next/cli/commands/call/local.py +132 -0
- arkitekt_next/cli/commands/call/main.py +22 -0
- arkitekt_next/cli/commands/call/remote.py +90 -0
- arkitekt_next/cli/commands/gen/__init__.py +0 -0
- arkitekt_next/cli/commands/gen/compile.py +45 -0
- arkitekt_next/cli/commands/gen/init.py +122 -0
- arkitekt_next/cli/commands/gen/main.py +29 -0
- arkitekt_next/cli/commands/gen/watch.py +32 -0
- arkitekt_next/cli/commands/init/__init__.py +0 -0
- arkitekt_next/cli/commands/init/main.py +194 -0
- arkitekt_next/cli/commands/inspect/__init__.py +0 -0
- arkitekt_next/cli/commands/inspect/definitions.py +53 -0
- arkitekt_next/cli/commands/inspect/main.py +22 -0
- arkitekt_next/cli/commands/inspect/variables.py +92 -0
- arkitekt_next/cli/commands/manifest/__init__.py +0 -0
- arkitekt_next/cli/commands/manifest/inspect.py +42 -0
- arkitekt_next/cli/commands/manifest/main.py +25 -0
- arkitekt_next/cli/commands/manifest/scopes.py +155 -0
- arkitekt_next/cli/commands/manifest/version.py +147 -0
- arkitekt_next/cli/commands/manifest/wizard.py +94 -0
- arkitekt_next/cli/commands/port/__init__.py +0 -0
- arkitekt_next/cli/commands/port/build.py +231 -0
- arkitekt_next/cli/commands/port/init.py +82 -0
- arkitekt_next/cli/commands/port/main.py +31 -0
- arkitekt_next/cli/commands/port/publish.py +102 -0
- arkitekt_next/cli/commands/port/stage.py +59 -0
- arkitekt_next/cli/commands/port/utils.py +47 -0
- arkitekt_next/cli/commands/port/validate.py +78 -0
- arkitekt_next/cli/commands/port/wizard.py +329 -0
- arkitekt_next/cli/commands/run/__init__.py +0 -0
- arkitekt_next/cli/commands/run/dev.py +349 -0
- arkitekt_next/cli/commands/run/main.py +22 -0
- arkitekt_next/cli/commands/run/prod.py +57 -0
- arkitekt_next/cli/commands/run/utils.py +10 -0
- arkitekt_next/cli/commands/server/__init__.py +0 -0
- arkitekt_next/cli/commands/server/down.py +56 -0
- arkitekt_next/cli/commands/server/init.py +74 -0
- arkitekt_next/cli/commands/server/inspect.py +59 -0
- arkitekt_next/cli/commands/server/main.py +33 -0
- arkitekt_next/cli/commands/server/open.py +66 -0
- arkitekt_next/cli/commands/server/remove.py +60 -0
- arkitekt_next/cli/commands/server/stop.py +56 -0
- arkitekt_next/cli/commands/server/up.py +70 -0
- arkitekt_next/cli/commands/server/utils.py +33 -0
- arkitekt_next/cli/configs/base.yaml +867 -0
- arkitekt_next/cli/constants.py +63 -0
- arkitekt_next/cli/dockerfiles/vanilla.dockerfile +8 -0
- arkitekt_next/cli/errors.py +4 -0
- arkitekt_next/cli/inspect.py +1 -0
- arkitekt_next/cli/io.py +255 -0
- arkitekt_next/cli/main.py +83 -0
- arkitekt_next/cli/options.py +166 -0
- arkitekt_next/cli/schemas/fluss.schema.graphql +2446 -0
- arkitekt_next/cli/schemas/gucker.schema.graphql +8908 -0
- arkitekt_next/cli/schemas/kabinet.schema.graphql +515 -0
- arkitekt_next/cli/schemas/kluster.schema.graphql +109 -0
- arkitekt_next/cli/schemas/konviktion.schema.graphql +70 -0
- arkitekt_next/cli/schemas/kuay.schema.graphql +356 -0
- arkitekt_next/cli/schemas/mikro.schema.graphql +8908 -0
- arkitekt_next/cli/schemas/mikro_next.schema.graphql +1639 -0
- arkitekt_next/cli/schemas/napari.schema.graphql +8908 -0
- arkitekt_next/cli/schemas/omero_ark.schema.graphql +100 -0
- arkitekt_next/cli/schemas/port.schema.graphql +356 -0
- arkitekt_next/cli/schemas/rekuest.schema.graphql +4630 -0
- arkitekt_next/cli/schemas/rekuest_next.schema.graphql +1159 -0
- arkitekt_next/cli/schemas/unlok.schema.graphql +1013 -0
- arkitekt_next/cli/templates/filter.py +26 -0
- arkitekt_next/cli/templates/simple.py +67 -0
- arkitekt_next/cli/texts.py +20 -0
- arkitekt_next/cli/types.py +365 -0
- arkitekt_next/cli/ui.py +111 -0
- arkitekt_next/cli/utils.py +15 -0
- arkitekt_next/cli/validators.py +17 -0
- arkitekt_next/cli/vars.py +39 -0
- arkitekt_next/cli/versions/v1.yaml +1 -0
- arkitekt_next/constants.py +6 -0
- arkitekt_next/model.py +110 -0
- arkitekt_next/qt/__init__.py +9 -0
- arkitekt_next/qt/assets/dark/gear.png +0 -0
- arkitekt_next/qt/assets/dark/green pulse.gif +0 -0
- arkitekt_next/qt/assets/dark/orange pulse.gif +0 -0
- arkitekt_next/qt/assets/dark/pink pulse.gif +0 -0
- arkitekt_next/qt/assets/dark/red pulse.gif +0 -0
- arkitekt_next/qt/assets/light/gear.png +0 -0
- arkitekt_next/qt/assets/light/green pulse.gif +0 -0
- arkitekt_next/qt/assets/light/orange pulse.gif +0 -0
- arkitekt_next/qt/assets/light/pink pulse.gif +0 -0
- arkitekt_next/qt/assets/light/red pulse.gif +0 -0
- arkitekt_next/qt/magic_bar.py +545 -0
- arkitekt_next/qt/utils.py +30 -0
- arkitekt_next/service_registry.py +51 -0
- arkitekt_next/tqdm.py +43 -0
- arkitekt_next/utils.py +38 -0
- arkitekt_next-0.7.8.dist-info/LICENSE +21 -0
- arkitekt_next-0.7.8.dist-info/METADATA +155 -0
- arkitekt_next-0.7.8.dist-info/RECORD +119 -0
- arkitekt_next-0.7.8.dist-info/WHEEL +4 -0
- arkitekt_next-0.7.8.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,1639 @@
|
|
|
1
|
+
"""Make string uppercase"""
|
|
2
|
+
directive @upper on FIELD
|
|
3
|
+
|
|
4
|
+
directive @replace(old: String!, new: String!) on FIELD
|
|
5
|
+
|
|
6
|
+
"""Make get stuff uppercase"""
|
|
7
|
+
directive @relation(on: String!) on FIELD
|
|
8
|
+
|
|
9
|
+
type Query {
|
|
10
|
+
images(filters: ImageFilter, order: ImageOrder, pagination: OffsetPaginationInput): [Image!]!
|
|
11
|
+
myimages(filters: ImageFilter, order: ImageOrder, pagination: OffsetPaginationInput): [Image!]!
|
|
12
|
+
datasets(filters: DatasetFilter, pagination: OffsetPaginationInput): [Dataset!]!
|
|
13
|
+
mydatasets(filters: DatasetFilter, pagination: OffsetPaginationInput): [Dataset!]!
|
|
14
|
+
timepointViews(filters: TimepointViewFilter, pagination: OffsetPaginationInput): [TimepointView!]!
|
|
15
|
+
labelViews: [LabelView!]!
|
|
16
|
+
channelViews: [ChannelView!]!
|
|
17
|
+
continousScanViews(filters: ContinousScanViewFilter, pagination: OffsetPaginationInput): [ContinousScanView!]!
|
|
18
|
+
wellPositionViews(filters: WellPositionViewFilter, pagination: OffsetPaginationInput): [WellPositionView!]!
|
|
19
|
+
acquisitionViews: [AcquisitionView!]!
|
|
20
|
+
rgbViews: [RGBView!]!
|
|
21
|
+
affineTransformationViews(filters: AffineTransformationViewFilter, pagination: OffsetPaginationInput): [AffineTransformationView!]!
|
|
22
|
+
eras(filters: EraFilter, pagination: OffsetPaginationInput): [Era!]!
|
|
23
|
+
myeras(filters: EraFilter, pagination: OffsetPaginationInput): [Era!]!
|
|
24
|
+
fluorophores(filters: FluorophoreFilter, pagination: OffsetPaginationInput): [Fluorophore!]!
|
|
25
|
+
antibodies(filters: AntibodyFilter, pagination: OffsetPaginationInput): [Antibody!]!
|
|
26
|
+
stages(filters: StageFilter, pagination: OffsetPaginationInput): [Stage!]!
|
|
27
|
+
channels: [Channel!]!
|
|
28
|
+
rgbcontexts(filters: RGBContextFilter, pagination: OffsetPaginationInput): [RGBContext!]!
|
|
29
|
+
mychannels: [Channel!]!
|
|
30
|
+
instruments: [Instrument!]!
|
|
31
|
+
multiWellPlates(filters: MultiWellPlateFilter, pagination: OffsetPaginationInput): [MultiWellPlate!]!
|
|
32
|
+
objectives: [Objective!]!
|
|
33
|
+
myobjectives: [Objective!]!
|
|
34
|
+
tables(pagination: OffsetPaginationInput): [Table!]!
|
|
35
|
+
mytables(pagination: OffsetPaginationInput): [Table!]!
|
|
36
|
+
snapshots(filters: SnapshotFilter, pagination: OffsetPaginationInput): [Snapshot!]!
|
|
37
|
+
mysnapshots(filters: SnapshotFilter, pagination: OffsetPaginationInput): [Snapshot!]!
|
|
38
|
+
files(filters: FileFilter, pagination: OffsetPaginationInput): [File!]!
|
|
39
|
+
myfiles(filters: FileFilter, pagination: OffsetPaginationInput): [File!]!
|
|
40
|
+
randomImage: Image!
|
|
41
|
+
image(id: ID!): Image!
|
|
42
|
+
fluorophore(id: ID!): Fluorophore!
|
|
43
|
+
rgbcontext(id: ID!): RGBContext!
|
|
44
|
+
objective(id: ID!): Objective!
|
|
45
|
+
camera(id: ID!): Camera!
|
|
46
|
+
snapshot(id: ID!): Snapshot!
|
|
47
|
+
file(id: ID!): File!
|
|
48
|
+
table(id: ID!): Table!
|
|
49
|
+
instrument(id: ID!): Instrument!
|
|
50
|
+
dataset(id: ID!): Dataset!
|
|
51
|
+
multiWellPlate(id: ID!): MultiWellPlate!
|
|
52
|
+
stage(id: ID!): Stage!
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
type Image {
|
|
56
|
+
id: ID!
|
|
57
|
+
name: String!
|
|
58
|
+
|
|
59
|
+
"""The store where the image data is stored."""
|
|
60
|
+
store: ZarrStore!
|
|
61
|
+
views(filters: ViewFilter, types: [ViewKind!]): [View!]!
|
|
62
|
+
snapshots(filters: SnapshotFilter, pagination: OffsetPaginationInput): [Snapshot!]!
|
|
63
|
+
videos(pagination: OffsetPaginationInput): [Video!]!
|
|
64
|
+
origins(filters: ImageFilter, order: ImageOrder, pagination: OffsetPaginationInput): [Image!]!
|
|
65
|
+
fileOrigins(filters: FileFilter, pagination: OffsetPaginationInput): [File!]!
|
|
66
|
+
roiOrigins: [ROI!]!
|
|
67
|
+
dataset: Dataset
|
|
68
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
69
|
+
|
|
70
|
+
"""The affine transformation views of the image."""
|
|
71
|
+
affineTransformationViews(filters: AffineTransformationViewFilter, pagination: OffsetPaginationInput): [AffineTransformationView!]!
|
|
72
|
+
labelViews: [LabelView!]!
|
|
73
|
+
channelViews: [ChannelView!]!
|
|
74
|
+
timepointViews(filters: TimepointViewFilter, pagination: OffsetPaginationInput): [TimepointView!]!
|
|
75
|
+
opticsViews(filters: OpticsViewFilter, pagination: OffsetPaginationInput): [OpticsView!]!
|
|
76
|
+
intMetrics(pagination: OffsetPaginationInput): [ImageIntMetric!]!
|
|
77
|
+
createdAt: DateTime!
|
|
78
|
+
creator: User
|
|
79
|
+
latestSnapshot: Snapshot
|
|
80
|
+
pinned: Boolean!
|
|
81
|
+
tags: [String!]!
|
|
82
|
+
metrics(filters: ViewFilter, types: [RenderKind!]): [ImageMetric!]!
|
|
83
|
+
renders(filters: ViewFilter, types: [RenderKind!]): [Render!]!
|
|
84
|
+
rois(filters: ROIFilter): [View!]!
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
type ZarrStore {
|
|
88
|
+
id: ID!
|
|
89
|
+
|
|
90
|
+
"""The path to the data. Relative to the bucket."""
|
|
91
|
+
path: String
|
|
92
|
+
|
|
93
|
+
"""The shape of the data."""
|
|
94
|
+
shape: [Int!]
|
|
95
|
+
|
|
96
|
+
"""The dtype of the data."""
|
|
97
|
+
dtype: String
|
|
98
|
+
|
|
99
|
+
"""The bucket where the data is stored."""
|
|
100
|
+
bucket: String!
|
|
101
|
+
|
|
102
|
+
"""The key where the data is stored."""
|
|
103
|
+
key: String!
|
|
104
|
+
|
|
105
|
+
"""The chunks of the data."""
|
|
106
|
+
chunks: [Int!]
|
|
107
|
+
|
|
108
|
+
"""Whether the zarr store was populated (e.g. was a dataset created)."""
|
|
109
|
+
populated: Boolean!
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
interface View {
|
|
113
|
+
image: Image!
|
|
114
|
+
zMin: Int
|
|
115
|
+
zMax: Int
|
|
116
|
+
xMin: Int
|
|
117
|
+
xMax: Int
|
|
118
|
+
yMin: Int
|
|
119
|
+
yMax: Int
|
|
120
|
+
tMin: Int
|
|
121
|
+
tMax: Int
|
|
122
|
+
cMin: Int
|
|
123
|
+
cMax: Int
|
|
124
|
+
isGlobal: Boolean!
|
|
125
|
+
|
|
126
|
+
"""The accessor"""
|
|
127
|
+
accessor: [String!]!
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
input ViewFilter {
|
|
131
|
+
isGlobal: Boolean
|
|
132
|
+
provenance: ProvenanceFilter
|
|
133
|
+
AND: ViewFilter
|
|
134
|
+
OR: ViewFilter
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
input ProvenanceFilter {
|
|
138
|
+
during: String
|
|
139
|
+
AND: ProvenanceFilter
|
|
140
|
+
OR: ProvenanceFilter
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
enum ViewKind {
|
|
144
|
+
CHANNEL
|
|
145
|
+
LABEL
|
|
146
|
+
AFFINE_TRANSFORMATION
|
|
147
|
+
TIMEPOINT
|
|
148
|
+
OPTICS
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
type Snapshot implements Render {
|
|
152
|
+
createdAt: DateTime!
|
|
153
|
+
creator: User
|
|
154
|
+
id: ID!
|
|
155
|
+
store: MediaStore!
|
|
156
|
+
name: String!
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
interface Render {
|
|
160
|
+
createdAt: DateTime!
|
|
161
|
+
creator: User
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
"""Date with time (isoformat)"""
|
|
165
|
+
scalar DateTime
|
|
166
|
+
|
|
167
|
+
"""A user."""
|
|
168
|
+
type User {
|
|
169
|
+
id: ID!
|
|
170
|
+
sub: String!
|
|
171
|
+
username: String!
|
|
172
|
+
email: String!
|
|
173
|
+
password: String!
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
type MediaStore {
|
|
177
|
+
id: ID!
|
|
178
|
+
path: String!
|
|
179
|
+
bucket: String!
|
|
180
|
+
key: String!
|
|
181
|
+
presignedUrl(host: String = null): String!
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
input SnapshotFilter {
|
|
185
|
+
name: StrFilterLookup
|
|
186
|
+
ids: [ID!]
|
|
187
|
+
AND: SnapshotFilter
|
|
188
|
+
OR: SnapshotFilter
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
input StrFilterLookup {
|
|
192
|
+
exact: String
|
|
193
|
+
iExact: String
|
|
194
|
+
contains: String
|
|
195
|
+
iContains: String
|
|
196
|
+
inList: [String!]
|
|
197
|
+
gt: String
|
|
198
|
+
gte: String
|
|
199
|
+
lt: String
|
|
200
|
+
lte: String
|
|
201
|
+
startsWith: String
|
|
202
|
+
iStartsWith: String
|
|
203
|
+
endsWith: String
|
|
204
|
+
iEndsWith: String
|
|
205
|
+
range: [String!]
|
|
206
|
+
isNull: Boolean
|
|
207
|
+
regex: String
|
|
208
|
+
iRegex: String
|
|
209
|
+
nExact: String
|
|
210
|
+
nIExact: String
|
|
211
|
+
nContains: String
|
|
212
|
+
nIContains: String
|
|
213
|
+
nInList: [String!]
|
|
214
|
+
nGt: String
|
|
215
|
+
nGte: String
|
|
216
|
+
nLt: String
|
|
217
|
+
nLte: String
|
|
218
|
+
nStartsWith: String
|
|
219
|
+
nIStartsWith: String
|
|
220
|
+
nEndsWith: String
|
|
221
|
+
nIEndsWith: String
|
|
222
|
+
nRange: [String!]
|
|
223
|
+
nIsNull: Boolean
|
|
224
|
+
nRegex: String
|
|
225
|
+
nIRegex: String
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
input OffsetPaginationInput {
|
|
229
|
+
offset: Int! = 0
|
|
230
|
+
limit: Int! = -1
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
type Video implements Render {
|
|
234
|
+
createdAt: DateTime!
|
|
235
|
+
creator: User
|
|
236
|
+
id: ID!
|
|
237
|
+
store: MediaStore!
|
|
238
|
+
thumbnail: MediaStore!
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
input ImageFilter {
|
|
242
|
+
name: StrFilterLookup
|
|
243
|
+
ids: [ID!]
|
|
244
|
+
store: ZarrStoreFilter
|
|
245
|
+
dataset: DatasetFilter
|
|
246
|
+
transformationViews: AffineTransformationViewFilter
|
|
247
|
+
timepointViews: TimepointViewFilter
|
|
248
|
+
provenance: ProvenanceFilter
|
|
249
|
+
AND: ImageFilter
|
|
250
|
+
OR: ImageFilter
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
input ZarrStoreFilter {
|
|
254
|
+
shape: IntFilterLookup
|
|
255
|
+
AND: ZarrStoreFilter
|
|
256
|
+
OR: ZarrStoreFilter
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
input IntFilterLookup {
|
|
260
|
+
exact: Int
|
|
261
|
+
iExact: Int
|
|
262
|
+
contains: Int
|
|
263
|
+
iContains: Int
|
|
264
|
+
inList: [Int!]
|
|
265
|
+
gt: Int
|
|
266
|
+
gte: Int
|
|
267
|
+
lt: Int
|
|
268
|
+
lte: Int
|
|
269
|
+
startsWith: Int
|
|
270
|
+
iStartsWith: Int
|
|
271
|
+
endsWith: Int
|
|
272
|
+
iEndsWith: Int
|
|
273
|
+
range: [Int!]
|
|
274
|
+
isNull: Boolean
|
|
275
|
+
regex: String
|
|
276
|
+
iRegex: String
|
|
277
|
+
nExact: Int
|
|
278
|
+
nIExact: Int
|
|
279
|
+
nContains: Int
|
|
280
|
+
nIContains: Int
|
|
281
|
+
nInList: [Int!]
|
|
282
|
+
nGt: Int
|
|
283
|
+
nGte: Int
|
|
284
|
+
nLt: Int
|
|
285
|
+
nLte: Int
|
|
286
|
+
nStartsWith: Int
|
|
287
|
+
nIStartsWith: Int
|
|
288
|
+
nEndsWith: Int
|
|
289
|
+
nIEndsWith: Int
|
|
290
|
+
nRange: [Int!]
|
|
291
|
+
nIsNull: Boolean
|
|
292
|
+
nRegex: String
|
|
293
|
+
nIRegex: String
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
input DatasetFilter {
|
|
297
|
+
id: ID
|
|
298
|
+
name: StrFilterLookup
|
|
299
|
+
provenance: ProvenanceFilter
|
|
300
|
+
AND: DatasetFilter
|
|
301
|
+
OR: DatasetFilter
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
input AffineTransformationViewFilter {
|
|
305
|
+
isGlobal: Boolean
|
|
306
|
+
provenance: ProvenanceFilter
|
|
307
|
+
AND: AffineTransformationViewFilter
|
|
308
|
+
OR: AffineTransformationViewFilter
|
|
309
|
+
stage: StageFilter
|
|
310
|
+
pixelSize: FloatFilterLookup
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
input StageFilter {
|
|
314
|
+
ids: [ID!]
|
|
315
|
+
search: String
|
|
316
|
+
id: ID
|
|
317
|
+
kind: String
|
|
318
|
+
name: StrFilterLookup
|
|
319
|
+
provenance: ProvenanceFilter
|
|
320
|
+
AND: StageFilter
|
|
321
|
+
OR: StageFilter
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
input FloatFilterLookup {
|
|
325
|
+
exact: Float
|
|
326
|
+
iExact: Float
|
|
327
|
+
contains: Float
|
|
328
|
+
iContains: Float
|
|
329
|
+
inList: [Float!]
|
|
330
|
+
gt: Float
|
|
331
|
+
gte: Float
|
|
332
|
+
lt: Float
|
|
333
|
+
lte: Float
|
|
334
|
+
startsWith: Float
|
|
335
|
+
iStartsWith: Float
|
|
336
|
+
endsWith: Float
|
|
337
|
+
iEndsWith: Float
|
|
338
|
+
range: [Float!]
|
|
339
|
+
isNull: Boolean
|
|
340
|
+
regex: String
|
|
341
|
+
iRegex: String
|
|
342
|
+
nExact: Float
|
|
343
|
+
nIExact: Float
|
|
344
|
+
nContains: Float
|
|
345
|
+
nIContains: Float
|
|
346
|
+
nInList: [Float!]
|
|
347
|
+
nGt: Float
|
|
348
|
+
nGte: Float
|
|
349
|
+
nLt: Float
|
|
350
|
+
nLte: Float
|
|
351
|
+
nStartsWith: Float
|
|
352
|
+
nIStartsWith: Float
|
|
353
|
+
nEndsWith: Float
|
|
354
|
+
nIEndsWith: Float
|
|
355
|
+
nRange: [Float!]
|
|
356
|
+
nIsNull: Boolean
|
|
357
|
+
nRegex: String
|
|
358
|
+
nIRegex: String
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
input TimepointViewFilter {
|
|
362
|
+
isGlobal: Boolean
|
|
363
|
+
provenance: ProvenanceFilter
|
|
364
|
+
AND: TimepointViewFilter
|
|
365
|
+
OR: TimepointViewFilter
|
|
366
|
+
era: EraFilter
|
|
367
|
+
msSinceStart: Float
|
|
368
|
+
indexSinceStart: Int
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
input EraFilter {
|
|
372
|
+
id: ID
|
|
373
|
+
begin: DateTime
|
|
374
|
+
provenance: ProvenanceFilter
|
|
375
|
+
AND: EraFilter
|
|
376
|
+
OR: EraFilter
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
input ImageOrder {
|
|
380
|
+
createdAt: Ordering
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
enum Ordering {
|
|
384
|
+
ASC
|
|
385
|
+
DESC
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
type File {
|
|
389
|
+
id: ID!
|
|
390
|
+
name: String!
|
|
391
|
+
origins(filters: ImageFilter, order: ImageOrder, pagination: OffsetPaginationInput): [Image!]!
|
|
392
|
+
store: BigFileStore!
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
type BigFileStore {
|
|
396
|
+
id: ID!
|
|
397
|
+
path: String!
|
|
398
|
+
bucket: String!
|
|
399
|
+
key: String!
|
|
400
|
+
presignedUrl: String!
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
input FileFilter {
|
|
404
|
+
id: ID
|
|
405
|
+
name: StrFilterLookup
|
|
406
|
+
provenance: ProvenanceFilter
|
|
407
|
+
AND: FileFilter
|
|
408
|
+
OR: FileFilter
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
interface ROI {
|
|
412
|
+
id: ID!
|
|
413
|
+
image: Image!
|
|
414
|
+
vectors: FiveDVector!
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
"""The `Vector` scalar type represents a matrix values as specified by"""
|
|
418
|
+
scalar FiveDVector
|
|
419
|
+
|
|
420
|
+
type Dataset {
|
|
421
|
+
id: ID!
|
|
422
|
+
images(filters: ImageFilter, order: ImageOrder, pagination: OffsetPaginationInput): [Image!]!
|
|
423
|
+
files(filters: FileFilter, pagination: OffsetPaginationInput): [File!]!
|
|
424
|
+
children(filters: DatasetFilter, pagination: OffsetPaginationInput): [Dataset!]!
|
|
425
|
+
description: String
|
|
426
|
+
name: String!
|
|
427
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
428
|
+
isDefault: Boolean!
|
|
429
|
+
createdAt: DateTime!
|
|
430
|
+
creator: User
|
|
431
|
+
pinned: Boolean!
|
|
432
|
+
tags: [String!]!
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
type History {
|
|
436
|
+
app: App
|
|
437
|
+
user: User
|
|
438
|
+
kind: HistoryKind!
|
|
439
|
+
date: DateTime!
|
|
440
|
+
during: String
|
|
441
|
+
id: ID!
|
|
442
|
+
effectiveChanges: [ModelChange!]!
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
type App {
|
|
446
|
+
id: ID!
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
enum HistoryKind {
|
|
450
|
+
CREATE
|
|
451
|
+
UPDATE
|
|
452
|
+
DELETE
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
type ModelChange {
|
|
456
|
+
field: String!
|
|
457
|
+
oldValue: String!
|
|
458
|
+
newValue: String!
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
type AffineTransformationView implements View {
|
|
462
|
+
image: Image!
|
|
463
|
+
zMin: Int
|
|
464
|
+
zMax: Int
|
|
465
|
+
xMin: Int
|
|
466
|
+
xMax: Int
|
|
467
|
+
yMin: Int
|
|
468
|
+
yMax: Int
|
|
469
|
+
tMin: Int
|
|
470
|
+
tMax: Int
|
|
471
|
+
cMin: Int
|
|
472
|
+
cMax: Int
|
|
473
|
+
isGlobal: Boolean!
|
|
474
|
+
|
|
475
|
+
"""The accessor"""
|
|
476
|
+
accessor: [String!]!
|
|
477
|
+
id: ID!
|
|
478
|
+
stage: Stage!
|
|
479
|
+
affineMatrix: FourByFourMatrix!
|
|
480
|
+
pixelSize: ThreeDVector!
|
|
481
|
+
pixelSizeX: Micrometers!
|
|
482
|
+
pixelSizeY: Micrometers!
|
|
483
|
+
position: ThreeDVector!
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
type Stage {
|
|
487
|
+
id: ID!
|
|
488
|
+
affineViews(filters: AffineTransformationViewFilter, pagination: OffsetPaginationInput): [AffineTransformationView!]!
|
|
489
|
+
description: String
|
|
490
|
+
name: String!
|
|
491
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
492
|
+
pinned: Boolean!
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
"""
|
|
496
|
+
The `FourByFourMatrix` scalar type represents a matrix values as specified by
|
|
497
|
+
"""
|
|
498
|
+
scalar FourByFourMatrix
|
|
499
|
+
|
|
500
|
+
"""The `Vector` scalar type represents a matrix values as specified by"""
|
|
501
|
+
scalar ThreeDVector
|
|
502
|
+
|
|
503
|
+
"""
|
|
504
|
+
The `Micrometers` scalar type represents a matrix valuesas specified by
|
|
505
|
+
"""
|
|
506
|
+
scalar Micrometers
|
|
507
|
+
|
|
508
|
+
type LabelView implements View {
|
|
509
|
+
image: Image!
|
|
510
|
+
zMin: Int
|
|
511
|
+
zMax: Int
|
|
512
|
+
xMin: Int
|
|
513
|
+
xMax: Int
|
|
514
|
+
yMin: Int
|
|
515
|
+
yMax: Int
|
|
516
|
+
tMin: Int
|
|
517
|
+
tMax: Int
|
|
518
|
+
cMin: Int
|
|
519
|
+
cMax: Int
|
|
520
|
+
isGlobal: Boolean!
|
|
521
|
+
|
|
522
|
+
"""The accessor"""
|
|
523
|
+
accessor: [String!]!
|
|
524
|
+
id: ID!
|
|
525
|
+
fluorophore: Fluorophore
|
|
526
|
+
primaryAntibody: Antibody
|
|
527
|
+
secondaryAntibody: Antibody
|
|
528
|
+
acquisitionMode: String
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
type Fluorophore {
|
|
532
|
+
id: ID!
|
|
533
|
+
name: String!
|
|
534
|
+
views: [LabelView!]!
|
|
535
|
+
emissionWavelength: Micrometers
|
|
536
|
+
excitationWavelength: Micrometers
|
|
537
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
type Antibody {
|
|
541
|
+
id: ID!
|
|
542
|
+
name: String!
|
|
543
|
+
epitope: String
|
|
544
|
+
primaryViews: [LabelView!]!
|
|
545
|
+
secondaryViews: [LabelView!]!
|
|
546
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
type ChannelView implements View {
|
|
550
|
+
image: Image!
|
|
551
|
+
zMin: Int
|
|
552
|
+
zMax: Int
|
|
553
|
+
xMin: Int
|
|
554
|
+
xMax: Int
|
|
555
|
+
yMin: Int
|
|
556
|
+
yMax: Int
|
|
557
|
+
tMin: Int
|
|
558
|
+
tMax: Int
|
|
559
|
+
cMin: Int
|
|
560
|
+
cMax: Int
|
|
561
|
+
isGlobal: Boolean!
|
|
562
|
+
|
|
563
|
+
"""The accessor"""
|
|
564
|
+
accessor: [String!]!
|
|
565
|
+
id: ID!
|
|
566
|
+
channel: Channel!
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
type Channel {
|
|
570
|
+
id: ID!
|
|
571
|
+
views: [ChannelView!]!
|
|
572
|
+
name: String!
|
|
573
|
+
emissionWavelength: Float
|
|
574
|
+
excitationWavelength: Float
|
|
575
|
+
acquisitionMode: String
|
|
576
|
+
color: String
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
type TimepointView implements View {
|
|
580
|
+
image: Image!
|
|
581
|
+
zMin: Int
|
|
582
|
+
zMax: Int
|
|
583
|
+
xMin: Int
|
|
584
|
+
xMax: Int
|
|
585
|
+
yMin: Int
|
|
586
|
+
yMax: Int
|
|
587
|
+
tMin: Int
|
|
588
|
+
tMax: Int
|
|
589
|
+
cMin: Int
|
|
590
|
+
cMax: Int
|
|
591
|
+
isGlobal: Boolean!
|
|
592
|
+
|
|
593
|
+
"""The accessor"""
|
|
594
|
+
accessor: [String!]!
|
|
595
|
+
id: ID!
|
|
596
|
+
era: Era!
|
|
597
|
+
msSinceStart: Milliseconds
|
|
598
|
+
indexSinceStart: Int
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
type Era {
|
|
602
|
+
id: ID!
|
|
603
|
+
begin: DateTime
|
|
604
|
+
views(filters: TimepointViewFilter, pagination: OffsetPaginationInput): [TimepointView!]!
|
|
605
|
+
name: String!
|
|
606
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
"""The `Matrix` scalar type represents a matrix values as specified by"""
|
|
610
|
+
scalar Milliseconds
|
|
611
|
+
|
|
612
|
+
type OpticsView implements View {
|
|
613
|
+
image: Image!
|
|
614
|
+
zMin: Int
|
|
615
|
+
zMax: Int
|
|
616
|
+
xMin: Int
|
|
617
|
+
xMax: Int
|
|
618
|
+
yMin: Int
|
|
619
|
+
yMax: Int
|
|
620
|
+
tMin: Int
|
|
621
|
+
tMax: Int
|
|
622
|
+
cMin: Int
|
|
623
|
+
cMax: Int
|
|
624
|
+
isGlobal: Boolean!
|
|
625
|
+
|
|
626
|
+
"""The accessor"""
|
|
627
|
+
accessor: [String!]!
|
|
628
|
+
id: ID!
|
|
629
|
+
instrument: Instrument
|
|
630
|
+
camera: Camera
|
|
631
|
+
objective: Objective
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
type Instrument {
|
|
635
|
+
id: ID!
|
|
636
|
+
name: String!
|
|
637
|
+
model: String
|
|
638
|
+
serialNumber: String!
|
|
639
|
+
views(filters: OpticsViewFilter, pagination: OffsetPaginationInput): [OpticsView!]!
|
|
640
|
+
manufacturer: String
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
input OpticsViewFilter {
|
|
644
|
+
isGlobal: Boolean
|
|
645
|
+
provenance: ProvenanceFilter
|
|
646
|
+
AND: OpticsViewFilter
|
|
647
|
+
OR: OpticsViewFilter
|
|
648
|
+
instrument: InstrumentFilter
|
|
649
|
+
objective: ObjectiveFilter
|
|
650
|
+
camera: CameraFilter
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
input InstrumentFilter {
|
|
654
|
+
id: ID
|
|
655
|
+
name: String
|
|
656
|
+
provenance: ProvenanceFilter
|
|
657
|
+
AND: InstrumentFilter
|
|
658
|
+
OR: InstrumentFilter
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
input ObjectiveFilter {
|
|
662
|
+
id: ID
|
|
663
|
+
name: String
|
|
664
|
+
provenance: ProvenanceFilter
|
|
665
|
+
AND: ObjectiveFilter
|
|
666
|
+
OR: ObjectiveFilter
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
input CameraFilter {
|
|
670
|
+
id: ID
|
|
671
|
+
name: String
|
|
672
|
+
provenance: ProvenanceFilter
|
|
673
|
+
AND: CameraFilter
|
|
674
|
+
OR: CameraFilter
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
type Camera {
|
|
678
|
+
id: ID!
|
|
679
|
+
name: String!
|
|
680
|
+
serialNumber: String!
|
|
681
|
+
views(filters: OpticsViewFilter, pagination: OffsetPaginationInput): [OpticsView!]!
|
|
682
|
+
model: String
|
|
683
|
+
bitDepth: Int
|
|
684
|
+
pixelSizeX: Micrometers
|
|
685
|
+
pixelSizeY: Micrometers
|
|
686
|
+
sensorSizeX: Int
|
|
687
|
+
sensorSizeY: Int
|
|
688
|
+
manufacturer: String
|
|
689
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
type Objective {
|
|
693
|
+
id: ID!
|
|
694
|
+
name: String!
|
|
695
|
+
serialNumber: String!
|
|
696
|
+
na: Float
|
|
697
|
+
magnification: Float
|
|
698
|
+
immersion: String
|
|
699
|
+
views(filters: OpticsViewFilter, pagination: OffsetPaginationInput): [OpticsView!]!
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
type ImageIntMetric implements ImageMetric & IntMetric {
|
|
703
|
+
image: Image!
|
|
704
|
+
createdAt: DateTime!
|
|
705
|
+
creator: User
|
|
706
|
+
value: Int!
|
|
707
|
+
id: ID!
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
interface ImageMetric {
|
|
711
|
+
image: Image!
|
|
712
|
+
createdAt: DateTime!
|
|
713
|
+
creator: User
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
interface IntMetric {
|
|
717
|
+
value: Int!
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
enum RenderKind {
|
|
721
|
+
VIDEO
|
|
722
|
+
SNAPSHOT
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
input ROIFilter {
|
|
726
|
+
id: ID
|
|
727
|
+
kind: RoiKind
|
|
728
|
+
AND: ROIFilter
|
|
729
|
+
OR: ROIFilter
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
enum RoiKind {
|
|
733
|
+
ELLIPSIS
|
|
734
|
+
POLYGON
|
|
735
|
+
LINE
|
|
736
|
+
RECTANGLE
|
|
737
|
+
SPECTRAL_RECTANGLE
|
|
738
|
+
TEMPORAL_RECTANGLE
|
|
739
|
+
CUBE
|
|
740
|
+
SPECTRAL_CUBE
|
|
741
|
+
TEMPORAL_CUBE
|
|
742
|
+
HYPERCUBE
|
|
743
|
+
SPECTRAL_HYPERCUBE
|
|
744
|
+
PATH
|
|
745
|
+
UNKNOWN
|
|
746
|
+
FRAME
|
|
747
|
+
SLICE
|
|
748
|
+
POINT
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
type ContinousScanView implements View {
|
|
752
|
+
image: Image!
|
|
753
|
+
zMin: Int
|
|
754
|
+
zMax: Int
|
|
755
|
+
xMin: Int
|
|
756
|
+
xMax: Int
|
|
757
|
+
yMin: Int
|
|
758
|
+
yMax: Int
|
|
759
|
+
tMin: Int
|
|
760
|
+
tMax: Int
|
|
761
|
+
cMin: Int
|
|
762
|
+
cMax: Int
|
|
763
|
+
isGlobal: Boolean!
|
|
764
|
+
|
|
765
|
+
"""The accessor"""
|
|
766
|
+
accessor: [String!]!
|
|
767
|
+
id: ID!
|
|
768
|
+
direction: ScanDirection!
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
enum ScanDirection {
|
|
772
|
+
ROW_COLUMN_SLICE
|
|
773
|
+
COLUMN_ROW_SLICE
|
|
774
|
+
SLICE_ROW_COLUMN
|
|
775
|
+
ROW_COLUMN_SLICE_SNAKE
|
|
776
|
+
COLUMN_ROW_SLICE_SNAKE
|
|
777
|
+
SLICE_ROW_COLUMN_SNAKE
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
input ContinousScanViewFilter {
|
|
781
|
+
isGlobal: Boolean
|
|
782
|
+
provenance: ProvenanceFilter
|
|
783
|
+
AND: ContinousScanViewFilter
|
|
784
|
+
OR: ContinousScanViewFilter
|
|
785
|
+
direction: ContinousScanDirection
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
enum ContinousScanDirection {
|
|
789
|
+
ROW_COLUMN_SLICE
|
|
790
|
+
COLUMN_ROW_SLICE
|
|
791
|
+
SLICE_ROW_COLUMN
|
|
792
|
+
ROW_COLUMN_SLICE_SNAKE
|
|
793
|
+
COLUMN_ROW_SLICE_SNAKE
|
|
794
|
+
SLICE_ROW_COLUMN_SNAKE
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
type WellPositionView implements View {
|
|
798
|
+
image: Image!
|
|
799
|
+
zMin: Int
|
|
800
|
+
zMax: Int
|
|
801
|
+
xMin: Int
|
|
802
|
+
xMax: Int
|
|
803
|
+
yMin: Int
|
|
804
|
+
yMax: Int
|
|
805
|
+
tMin: Int
|
|
806
|
+
tMax: Int
|
|
807
|
+
cMin: Int
|
|
808
|
+
cMax: Int
|
|
809
|
+
isGlobal: Boolean!
|
|
810
|
+
|
|
811
|
+
"""The accessor"""
|
|
812
|
+
accessor: [String!]!
|
|
813
|
+
id: ID!
|
|
814
|
+
well: MultiWellPlate
|
|
815
|
+
row: Int
|
|
816
|
+
column: Int
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
type MultiWellPlate {
|
|
820
|
+
id: ID!
|
|
821
|
+
views(filters: WellPositionViewFilter, pagination: OffsetPaginationInput): [WellPositionView!]!
|
|
822
|
+
name: String
|
|
823
|
+
description: String
|
|
824
|
+
rows: Int
|
|
825
|
+
columns: Int
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
input WellPositionViewFilter {
|
|
829
|
+
isGlobal: Boolean
|
|
830
|
+
provenance: ProvenanceFilter
|
|
831
|
+
AND: WellPositionViewFilter
|
|
832
|
+
OR: WellPositionViewFilter
|
|
833
|
+
well: MultiWellPlateFilter
|
|
834
|
+
row: Int
|
|
835
|
+
column: Int
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
input MultiWellPlateFilter {
|
|
839
|
+
ids: [ID!]
|
|
840
|
+
search: String
|
|
841
|
+
id: ID
|
|
842
|
+
name: StrFilterLookup
|
|
843
|
+
AND: MultiWellPlateFilter
|
|
844
|
+
OR: MultiWellPlateFilter
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
type AcquisitionView implements View {
|
|
848
|
+
image: Image!
|
|
849
|
+
zMin: Int
|
|
850
|
+
zMax: Int
|
|
851
|
+
xMin: Int
|
|
852
|
+
xMax: Int
|
|
853
|
+
yMin: Int
|
|
854
|
+
yMax: Int
|
|
855
|
+
tMin: Int
|
|
856
|
+
tMax: Int
|
|
857
|
+
cMin: Int
|
|
858
|
+
cMax: Int
|
|
859
|
+
isGlobal: Boolean!
|
|
860
|
+
|
|
861
|
+
"""The accessor"""
|
|
862
|
+
accessor: [String!]!
|
|
863
|
+
id: ID!
|
|
864
|
+
description: String
|
|
865
|
+
acquiredAt: DateTime
|
|
866
|
+
operator: User
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
type RGBView implements View {
|
|
870
|
+
image: Image!
|
|
871
|
+
zMin: Int
|
|
872
|
+
zMax: Int
|
|
873
|
+
xMin: Int
|
|
874
|
+
xMax: Int
|
|
875
|
+
yMin: Int
|
|
876
|
+
yMax: Int
|
|
877
|
+
tMin: Int
|
|
878
|
+
tMax: Int
|
|
879
|
+
cMin: Int
|
|
880
|
+
cMax: Int
|
|
881
|
+
isGlobal: Boolean!
|
|
882
|
+
|
|
883
|
+
"""The accessor"""
|
|
884
|
+
accessor: [String!]!
|
|
885
|
+
id: ID!
|
|
886
|
+
context: RGBContext!
|
|
887
|
+
rScale: Float!
|
|
888
|
+
gScale: Float!
|
|
889
|
+
bScale: Float!
|
|
890
|
+
fullColour(format: ColorFormat = RGB): String!
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
type RGBContext {
|
|
894
|
+
id: ID!
|
|
895
|
+
name: String!
|
|
896
|
+
views: [RGBView!]!
|
|
897
|
+
pinned: Boolean!
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
enum ColorFormat {
|
|
901
|
+
RGB
|
|
902
|
+
HSL
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
input FluorophoreFilter {
|
|
906
|
+
id: ID
|
|
907
|
+
emissionWavelength: IntFilterLookup
|
|
908
|
+
excitationWavelength: IntFilterLookup
|
|
909
|
+
provenance: ProvenanceFilter
|
|
910
|
+
search: String
|
|
911
|
+
ids: [ID!]
|
|
912
|
+
AND: FluorophoreFilter
|
|
913
|
+
OR: FluorophoreFilter
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
input AntibodyFilter {
|
|
917
|
+
ids: [ID!]
|
|
918
|
+
search: String
|
|
919
|
+
id: ID
|
|
920
|
+
name: StrFilterLookup
|
|
921
|
+
AND: AntibodyFilter
|
|
922
|
+
OR: AntibodyFilter
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
input RGBContextFilter {
|
|
926
|
+
ids: [ID!]
|
|
927
|
+
search: String
|
|
928
|
+
id: ID
|
|
929
|
+
provenance: ProvenanceFilter
|
|
930
|
+
AND: RGBContextFilter
|
|
931
|
+
OR: RGBContextFilter
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
type Table {
|
|
935
|
+
id: ID!
|
|
936
|
+
name: String!
|
|
937
|
+
origins(filters: ImageFilter, order: ImageOrder, pagination: OffsetPaginationInput): [Image!]!
|
|
938
|
+
store: ParquetStore!
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
type ParquetStore {
|
|
942
|
+
id: ID!
|
|
943
|
+
path: String!
|
|
944
|
+
bucket: String!
|
|
945
|
+
key: String!
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
type Mutation {
|
|
949
|
+
relateToDataset(
|
|
950
|
+
"""Input data for `relateToDataset` mutation"""
|
|
951
|
+
input: RelateToDatasetInput!
|
|
952
|
+
): Image!
|
|
953
|
+
requestUpload(input: RequestUploadInput!): Credentials!
|
|
954
|
+
|
|
955
|
+
"""Request upload credentials for a given key"""
|
|
956
|
+
requestAccess(input: RequestAccessInput!): AccessCredentials!
|
|
957
|
+
requestTableUpload(input: RequestTableUploadInput!): Credentials!
|
|
958
|
+
requestTableAccess(input: RequestTableAccessInput!): AccessCredentials!
|
|
959
|
+
requestFileUpload(input: RequestFileUploadInput!): Credentials!
|
|
960
|
+
requestFileAccess(input: RequestFileAccessInput!): AccessCredentials!
|
|
961
|
+
createAffineTransformationView(input: AffineTransformationViewInput!): AffineTransformationView!
|
|
962
|
+
fromArrayLike(input: FromArrayLikeInput!): Image!
|
|
963
|
+
pinImage(input: PinImageInput!): Image!
|
|
964
|
+
updateImage(input: UpdateImageInput!): Image!
|
|
965
|
+
fromParquetLike(input: FromParquetLike!): Table!
|
|
966
|
+
fromFileLike(input: FromFileLike!): File!
|
|
967
|
+
createChannel(input: ChannelInput!): Channel!
|
|
968
|
+
pinChannel(input: PinChannelInput!): Channel!
|
|
969
|
+
ensureChannel(input: ChannelInput!): Channel!
|
|
970
|
+
deleteChannel(input: DeleteChannelInput!): ID!
|
|
971
|
+
createStage(input: StageInput!): Stage!
|
|
972
|
+
pinStage(input: PinStageInput!): Stage!
|
|
973
|
+
deleteStage(input: DeleteStageInput!): ID!
|
|
974
|
+
createRgbContext(input: RGBContextInput!): RGBContext!
|
|
975
|
+
deleteRgbContext(input: DeleteRGBContextInput!): ID!
|
|
976
|
+
createDataset(input: CreateDatasetInput!): Dataset!
|
|
977
|
+
updateDataset(input: ChangeDatasetInput!): Dataset!
|
|
978
|
+
revertDataset(input: RevertInput!): Dataset!
|
|
979
|
+
pinDataset(input: PinDatasetInput!): Dataset!
|
|
980
|
+
deleteDataset(input: DeleteDatasetInput!): ID!
|
|
981
|
+
putDatasetsInDataset(input: AssociateInput!): Dataset!
|
|
982
|
+
releaseDatasetsFromDataset(input: DesociateInput!): Dataset!
|
|
983
|
+
putImagesInDataset(input: AssociateInput!): Dataset!
|
|
984
|
+
releaseImagesFromDataset(input: DesociateInput!): Dataset!
|
|
985
|
+
putFilesInDataset(input: AssociateInput!): Dataset!
|
|
986
|
+
releaseFilesFromDataset(input: DesociateInput!): Dataset!
|
|
987
|
+
createFluorophore(input: FluorophoreInput!): Fluorophore!
|
|
988
|
+
ensureFluorophore(input: FluorophoreInput!): Fluorophore!
|
|
989
|
+
pinFluorophore(input: PinFluorophoreInput!): Fluorophore!
|
|
990
|
+
deleteFluorophore(input: DeleteFluorophoreInput!): ID!
|
|
991
|
+
createMultiWellPlate(input: MultiWellPlateInput!): MultiWellPlate!
|
|
992
|
+
ensureMultiWellPlate(input: MultiWellPlateInput!): MultiWellPlate!
|
|
993
|
+
pinMultiWellPlate(input: PintMultiWellPlateInput!): MultiWellPlate!
|
|
994
|
+
deleteMultiWellPlate(input: DeleteMultiWellInput!): ID!
|
|
995
|
+
ensureAntibody(input: AntibodyInput!): Antibody!
|
|
996
|
+
createAntibody(input: AntibodyInput!): Antibody!
|
|
997
|
+
pinAntibody(input: PinAntibodyInput!): Antibody!
|
|
998
|
+
deleteAntibody(input: DeleteAntibodyInput!): ID!
|
|
999
|
+
createViewCollection(input: ViewCollectionInput!): ViewCollection!
|
|
1000
|
+
pinViewCollection(input: PinViewCollectionInput!): ViewCollection!
|
|
1001
|
+
deleteViewCollection(input: DeleteViewCollectionInput!): ID!
|
|
1002
|
+
createEra(input: EraInput!): Era!
|
|
1003
|
+
pinEra(input: PinEraInput!): Era!
|
|
1004
|
+
deleteEra(input: DeleteEraInput!): ID!
|
|
1005
|
+
createLabelView(input: LabelViewInput!): LabelView!
|
|
1006
|
+
createTimepointView(input: TimepointViewInput!): TimepointView!
|
|
1007
|
+
createOpticsView(input: OpticsViewInput!): OpticsView!
|
|
1008
|
+
createRgbView(input: RGBViewInput!): RGBView!
|
|
1009
|
+
createChannelView(input: ChannelViewInput!): ChannelView!
|
|
1010
|
+
createWellPositionView(input: WellPositionViewInput!): WellPositionView!
|
|
1011
|
+
createContinousScanView(input: ContinousScanViewInput!): ContinousScanView!
|
|
1012
|
+
deleteAffineTransformationView(input: DeleteViewInput!): ID!
|
|
1013
|
+
deleteChannelView(input: DeleteViewInput!): ID!
|
|
1014
|
+
deleteTimepointView(input: DeleteViewInput!): ID!
|
|
1015
|
+
deleteOpticsView(input: DeleteViewInput!): ID!
|
|
1016
|
+
deleteRgbView(input: DeleteViewInput!): ID!
|
|
1017
|
+
deleteView(input: DeleteViewInput!): ID!
|
|
1018
|
+
pinView(input: PinViewInput!): View!
|
|
1019
|
+
createInstrument(input: InstrumentInput!): Instrument!
|
|
1020
|
+
deleteInstrument(input: DeleteInstrumentInput!): ID!
|
|
1021
|
+
pinInstrument(input: PinInstrumentInput!): Instrument!
|
|
1022
|
+
ensureInstrument(input: InstrumentInput!): Instrument!
|
|
1023
|
+
createObjective(input: ObjectiveInput!): Objective!
|
|
1024
|
+
deleteObjective(input: DeleteObjectiveInput!): ID!
|
|
1025
|
+
pinObjective(input: PinObjectiveInput!): Objective!
|
|
1026
|
+
ensureObjective(input: ObjectiveInput!): Objective!
|
|
1027
|
+
createCamera(input: CameraInput!): Camera!
|
|
1028
|
+
deleteCamera(input: DeleteCameraInput!): ID!
|
|
1029
|
+
pinCamera(input: PinCameraInput!): Camera!
|
|
1030
|
+
ensureCamera(input: CameraInput!): Camera!
|
|
1031
|
+
createSnapshot(input: SnaphotInput!): Snapshot!
|
|
1032
|
+
deleteSnapshot(input: DeleteSnaphotInput!): ID!
|
|
1033
|
+
pinSnapshot(input: PinSnapshotInput!): Snapshot!
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
input RelateToDatasetInput {
|
|
1037
|
+
id: ID!
|
|
1038
|
+
other: ID!
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
"""
|
|
1042
|
+
Temporary Credentials for a file upload that can be used by a Client (e.g. in a python datalayer)
|
|
1043
|
+
"""
|
|
1044
|
+
type Credentials {
|
|
1045
|
+
status: String!
|
|
1046
|
+
accessKey: String!
|
|
1047
|
+
secretKey: String!
|
|
1048
|
+
sessionToken: String!
|
|
1049
|
+
datalayer: String!
|
|
1050
|
+
bucket: String!
|
|
1051
|
+
key: String!
|
|
1052
|
+
store: String!
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
input RequestUploadInput {
|
|
1056
|
+
key: String!
|
|
1057
|
+
datalayer: String!
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
"""
|
|
1061
|
+
Temporary Credentials for a file download that can be used by a Client (e.g. in a python datalayer)
|
|
1062
|
+
"""
|
|
1063
|
+
type AccessCredentials {
|
|
1064
|
+
accessKey: String!
|
|
1065
|
+
secretKey: String!
|
|
1066
|
+
sessionToken: String!
|
|
1067
|
+
bucket: String!
|
|
1068
|
+
key: String!
|
|
1069
|
+
path: String!
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
input RequestAccessInput {
|
|
1073
|
+
store: ID!
|
|
1074
|
+
duration: Int = null
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
input RequestTableUploadInput {
|
|
1078
|
+
key: String!
|
|
1079
|
+
datalayer: String!
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
input RequestTableAccessInput {
|
|
1083
|
+
store: ID!
|
|
1084
|
+
duration: Int
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
input RequestFileUploadInput {
|
|
1088
|
+
key: String!
|
|
1089
|
+
datalayer: String!
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
input RequestFileAccessInput {
|
|
1093
|
+
store: ID!
|
|
1094
|
+
duration: Int
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
input AffineTransformationViewInput {
|
|
1098
|
+
collection: ID = null
|
|
1099
|
+
zMin: Int = null
|
|
1100
|
+
zMax: Int = null
|
|
1101
|
+
xMin: Int = null
|
|
1102
|
+
xMax: Int = null
|
|
1103
|
+
yMin: Int = null
|
|
1104
|
+
yMax: Int = null
|
|
1105
|
+
tMin: Int = null
|
|
1106
|
+
tMax: Int = null
|
|
1107
|
+
cMin: Int = null
|
|
1108
|
+
cMax: Int = null
|
|
1109
|
+
stage: ID = null
|
|
1110
|
+
affineMatrix: FourByFourMatrix!
|
|
1111
|
+
image: ID!
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
input FromArrayLikeInput {
|
|
1115
|
+
name: String!
|
|
1116
|
+
array: ArrayLike!
|
|
1117
|
+
origins: [ID!] = null
|
|
1118
|
+
dataset: ID = null
|
|
1119
|
+
channelViews: [PartialChannelViewInput!] = null
|
|
1120
|
+
transformationViews: [PartialAffineTransformationViewInput!] = null
|
|
1121
|
+
acquisitionViews: [PartialAcquisitionViewInput!] = null
|
|
1122
|
+
labelViews: [PartialLabelViewInput!] = null
|
|
1123
|
+
rgbViews: [PartialRGBViewInput!] = null
|
|
1124
|
+
timepointViews: [PartialTimepointViewInput!] = null
|
|
1125
|
+
opticsViews: [PartialOpticsViewInput!] = null
|
|
1126
|
+
tags: [String!] = null
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
"""
|
|
1130
|
+
The `ArrayLike` scalar type represents a reference to a store previously created by the user n a datalayer
|
|
1131
|
+
"""
|
|
1132
|
+
scalar ArrayLike
|
|
1133
|
+
|
|
1134
|
+
input PartialChannelViewInput {
|
|
1135
|
+
collection: ID = null
|
|
1136
|
+
zMin: Int = null
|
|
1137
|
+
zMax: Int = null
|
|
1138
|
+
xMin: Int = null
|
|
1139
|
+
xMax: Int = null
|
|
1140
|
+
yMin: Int = null
|
|
1141
|
+
yMax: Int = null
|
|
1142
|
+
tMin: Int = null
|
|
1143
|
+
tMax: Int = null
|
|
1144
|
+
cMin: Int = null
|
|
1145
|
+
cMax: Int = null
|
|
1146
|
+
channel: ID!
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
input PartialAffineTransformationViewInput {
|
|
1150
|
+
collection: ID = null
|
|
1151
|
+
zMin: Int = null
|
|
1152
|
+
zMax: Int = null
|
|
1153
|
+
xMin: Int = null
|
|
1154
|
+
xMax: Int = null
|
|
1155
|
+
yMin: Int = null
|
|
1156
|
+
yMax: Int = null
|
|
1157
|
+
tMin: Int = null
|
|
1158
|
+
tMax: Int = null
|
|
1159
|
+
cMin: Int = null
|
|
1160
|
+
cMax: Int = null
|
|
1161
|
+
stage: ID = null
|
|
1162
|
+
affineMatrix: FourByFourMatrix!
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
input PartialAcquisitionViewInput {
|
|
1166
|
+
collection: ID = null
|
|
1167
|
+
zMin: Int = null
|
|
1168
|
+
zMax: Int = null
|
|
1169
|
+
xMin: Int = null
|
|
1170
|
+
xMax: Int = null
|
|
1171
|
+
yMin: Int = null
|
|
1172
|
+
yMax: Int = null
|
|
1173
|
+
tMin: Int = null
|
|
1174
|
+
tMax: Int = null
|
|
1175
|
+
cMin: Int = null
|
|
1176
|
+
cMax: Int = null
|
|
1177
|
+
description: String = null
|
|
1178
|
+
acquiredAt: DateTime = null
|
|
1179
|
+
operator: ID = null
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
input PartialLabelViewInput {
|
|
1183
|
+
collection: ID = null
|
|
1184
|
+
zMin: Int = null
|
|
1185
|
+
zMax: Int = null
|
|
1186
|
+
xMin: Int = null
|
|
1187
|
+
xMax: Int = null
|
|
1188
|
+
yMin: Int = null
|
|
1189
|
+
yMax: Int = null
|
|
1190
|
+
tMin: Int = null
|
|
1191
|
+
tMax: Int = null
|
|
1192
|
+
cMin: Int = null
|
|
1193
|
+
cMax: Int = null
|
|
1194
|
+
fluorophore: ID = null
|
|
1195
|
+
primaryAntibody: ID = null
|
|
1196
|
+
secondaryAntibody: ID = null
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
input PartialRGBViewInput {
|
|
1200
|
+
collection: ID = null
|
|
1201
|
+
zMin: Int = null
|
|
1202
|
+
zMax: Int = null
|
|
1203
|
+
xMin: Int = null
|
|
1204
|
+
xMax: Int = null
|
|
1205
|
+
yMin: Int = null
|
|
1206
|
+
yMax: Int = null
|
|
1207
|
+
tMin: Int = null
|
|
1208
|
+
tMax: Int = null
|
|
1209
|
+
cMin: Int = null
|
|
1210
|
+
cMax: Int = null
|
|
1211
|
+
context: ID = null
|
|
1212
|
+
rScale: Float!
|
|
1213
|
+
gScale: Float!
|
|
1214
|
+
bScale: Float!
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
input PartialTimepointViewInput {
|
|
1218
|
+
collection: ID = null
|
|
1219
|
+
zMin: Int = null
|
|
1220
|
+
zMax: Int = null
|
|
1221
|
+
xMin: Int = null
|
|
1222
|
+
xMax: Int = null
|
|
1223
|
+
yMin: Int = null
|
|
1224
|
+
yMax: Int = null
|
|
1225
|
+
tMin: Int = null
|
|
1226
|
+
tMax: Int = null
|
|
1227
|
+
cMin: Int = null
|
|
1228
|
+
cMax: Int = null
|
|
1229
|
+
era: ID = null
|
|
1230
|
+
msSinceStart: Milliseconds = null
|
|
1231
|
+
indexSinceStart: Int = null
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
input PartialOpticsViewInput {
|
|
1235
|
+
collection: ID = null
|
|
1236
|
+
zMin: Int = null
|
|
1237
|
+
zMax: Int = null
|
|
1238
|
+
xMin: Int = null
|
|
1239
|
+
xMax: Int = null
|
|
1240
|
+
yMin: Int = null
|
|
1241
|
+
yMax: Int = null
|
|
1242
|
+
tMin: Int = null
|
|
1243
|
+
tMax: Int = null
|
|
1244
|
+
cMin: Int = null
|
|
1245
|
+
cMax: Int = null
|
|
1246
|
+
instrument: ID = null
|
|
1247
|
+
objective: ID = null
|
|
1248
|
+
camera: ID = null
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
input PinImageInput {
|
|
1252
|
+
id: ID!
|
|
1253
|
+
pin: Boolean!
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
input UpdateImageInput {
|
|
1257
|
+
id: ID!
|
|
1258
|
+
tags: [String!] = null
|
|
1259
|
+
name: String = null
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
input FromParquetLike {
|
|
1263
|
+
name: String!
|
|
1264
|
+
dataframe: ParquetLike!
|
|
1265
|
+
origins: [ID!] = null
|
|
1266
|
+
dataset: ID = null
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
"""
|
|
1270
|
+
The `ParquetLike` scalar type represents a reference to a parquet objected stored previously created by the user on a datalayer
|
|
1271
|
+
"""
|
|
1272
|
+
scalar ParquetLike
|
|
1273
|
+
|
|
1274
|
+
input FromFileLike {
|
|
1275
|
+
name: String!
|
|
1276
|
+
file: FileLike!
|
|
1277
|
+
origins: [ID!] = null
|
|
1278
|
+
dataset: ID = null
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
"""
|
|
1282
|
+
The `FileLike` scalar type represents a reference to a big file storage previously created by the user n a datalayer
|
|
1283
|
+
"""
|
|
1284
|
+
scalar FileLike
|
|
1285
|
+
|
|
1286
|
+
input ChannelInput {
|
|
1287
|
+
name: String!
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
input PinChannelInput {
|
|
1291
|
+
id: ID!
|
|
1292
|
+
pin: Boolean!
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
input DeleteChannelInput {
|
|
1296
|
+
id: ID!
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
input StageInput {
|
|
1300
|
+
name: String!
|
|
1301
|
+
instrument: ID = null
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
input PinStageInput {
|
|
1305
|
+
id: ID!
|
|
1306
|
+
pin: Boolean!
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
input DeleteStageInput {
|
|
1310
|
+
id: ID!
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
input RGBContextInput {
|
|
1314
|
+
name: String = null
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
input DeleteRGBContextInput {
|
|
1318
|
+
id: ID!
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
input CreateDatasetInput {
|
|
1322
|
+
name: String!
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
input ChangeDatasetInput {
|
|
1326
|
+
name: String!
|
|
1327
|
+
id: ID!
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
input RevertInput {
|
|
1331
|
+
id: ID!
|
|
1332
|
+
historyId: ID!
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
input PinDatasetInput {
|
|
1336
|
+
id: ID!
|
|
1337
|
+
pin: Boolean!
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
input DeleteDatasetInput {
|
|
1341
|
+
id: ID!
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
input AssociateInput {
|
|
1345
|
+
selfs: [ID!]!
|
|
1346
|
+
other: ID!
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
input DesociateInput {
|
|
1350
|
+
selfs: [ID!]!
|
|
1351
|
+
other: ID!
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
input FluorophoreInput {
|
|
1355
|
+
name: String!
|
|
1356
|
+
emissionWavelength: Micrometers = null
|
|
1357
|
+
excitationWavelength: Micrometers = null
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
input PinFluorophoreInput {
|
|
1361
|
+
id: ID!
|
|
1362
|
+
pin: Boolean!
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
input DeleteFluorophoreInput {
|
|
1366
|
+
id: ID!
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
input MultiWellPlateInput {
|
|
1370
|
+
name: String!
|
|
1371
|
+
columns: Int = null
|
|
1372
|
+
rows: Int = null
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
input PintMultiWellPlateInput {
|
|
1376
|
+
id: ID!
|
|
1377
|
+
pin: Boolean!
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
input DeleteMultiWellInput {
|
|
1381
|
+
id: ID!
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
input AntibodyInput {
|
|
1385
|
+
name: String!
|
|
1386
|
+
epitope: String = null
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
input PinAntibodyInput {
|
|
1390
|
+
id: ID!
|
|
1391
|
+
pin: Boolean!
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
input DeleteAntibodyInput {
|
|
1395
|
+
id: ID!
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
type ViewCollection {
|
|
1399
|
+
id: ID!
|
|
1400
|
+
name: String!
|
|
1401
|
+
views: [View!]!
|
|
1402
|
+
history(pagination: OffsetPaginationInput): [History!]!
|
|
1403
|
+
affineTransformationViews(filters: AffineTransformationViewFilter, pagination: OffsetPaginationInput): [AffineTransformationView!]!
|
|
1404
|
+
labelViews: [LabelView!]!
|
|
1405
|
+
channelViews: [ChannelView!]!
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
input ViewCollectionInput {
|
|
1409
|
+
name: String!
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
input PinViewCollectionInput {
|
|
1413
|
+
id: ID!
|
|
1414
|
+
pin: Boolean!
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
input DeleteViewCollectionInput {
|
|
1418
|
+
id: ID!
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
input EraInput {
|
|
1422
|
+
name: String!
|
|
1423
|
+
begin: DateTime = null
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
input PinEraInput {
|
|
1427
|
+
id: ID!
|
|
1428
|
+
pin: Boolean!
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
input DeleteEraInput {
|
|
1432
|
+
id: ID!
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
input LabelViewInput {
|
|
1436
|
+
collection: ID = null
|
|
1437
|
+
zMin: Int = null
|
|
1438
|
+
zMax: Int = null
|
|
1439
|
+
xMin: Int = null
|
|
1440
|
+
xMax: Int = null
|
|
1441
|
+
yMin: Int = null
|
|
1442
|
+
yMax: Int = null
|
|
1443
|
+
tMin: Int = null
|
|
1444
|
+
tMax: Int = null
|
|
1445
|
+
cMin: Int = null
|
|
1446
|
+
cMax: Int = null
|
|
1447
|
+
fluorophore: ID = null
|
|
1448
|
+
primaryAntibody: ID = null
|
|
1449
|
+
secondaryAntibody: ID = null
|
|
1450
|
+
image: ID!
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
input TimepointViewInput {
|
|
1454
|
+
collection: ID = null
|
|
1455
|
+
zMin: Int = null
|
|
1456
|
+
zMax: Int = null
|
|
1457
|
+
xMin: Int = null
|
|
1458
|
+
xMax: Int = null
|
|
1459
|
+
yMin: Int = null
|
|
1460
|
+
yMax: Int = null
|
|
1461
|
+
tMin: Int = null
|
|
1462
|
+
tMax: Int = null
|
|
1463
|
+
cMin: Int = null
|
|
1464
|
+
cMax: Int = null
|
|
1465
|
+
era: ID = null
|
|
1466
|
+
msSinceStart: Milliseconds = null
|
|
1467
|
+
indexSinceStart: Int = null
|
|
1468
|
+
image: ID!
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
input OpticsViewInput {
|
|
1472
|
+
collection: ID = null
|
|
1473
|
+
zMin: Int = null
|
|
1474
|
+
zMax: Int = null
|
|
1475
|
+
xMin: Int = null
|
|
1476
|
+
xMax: Int = null
|
|
1477
|
+
yMin: Int = null
|
|
1478
|
+
yMax: Int = null
|
|
1479
|
+
tMin: Int = null
|
|
1480
|
+
tMax: Int = null
|
|
1481
|
+
cMin: Int = null
|
|
1482
|
+
cMax: Int = null
|
|
1483
|
+
instrument: ID = null
|
|
1484
|
+
objective: ID = null
|
|
1485
|
+
camera: ID = null
|
|
1486
|
+
image: ID!
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
input RGBViewInput {
|
|
1490
|
+
collection: ID = null
|
|
1491
|
+
zMin: Int = null
|
|
1492
|
+
zMax: Int = null
|
|
1493
|
+
xMin: Int = null
|
|
1494
|
+
xMax: Int = null
|
|
1495
|
+
yMin: Int = null
|
|
1496
|
+
yMax: Int = null
|
|
1497
|
+
tMin: Int = null
|
|
1498
|
+
tMax: Int = null
|
|
1499
|
+
cMin: Int = null
|
|
1500
|
+
cMax: Int = null
|
|
1501
|
+
context: ID = null
|
|
1502
|
+
rScale: Float!
|
|
1503
|
+
gScale: Float!
|
|
1504
|
+
bScale: Float!
|
|
1505
|
+
image: ID!
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
input ChannelViewInput {
|
|
1509
|
+
collection: ID = null
|
|
1510
|
+
zMin: Int = null
|
|
1511
|
+
zMax: Int = null
|
|
1512
|
+
xMin: Int = null
|
|
1513
|
+
xMax: Int = null
|
|
1514
|
+
yMin: Int = null
|
|
1515
|
+
yMax: Int = null
|
|
1516
|
+
tMin: Int = null
|
|
1517
|
+
tMax: Int = null
|
|
1518
|
+
cMin: Int = null
|
|
1519
|
+
cMax: Int = null
|
|
1520
|
+
channel: ID!
|
|
1521
|
+
image: ID!
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
input WellPositionViewInput {
|
|
1525
|
+
collection: ID = null
|
|
1526
|
+
zMin: Int = null
|
|
1527
|
+
zMax: Int = null
|
|
1528
|
+
xMin: Int = null
|
|
1529
|
+
xMax: Int = null
|
|
1530
|
+
yMin: Int = null
|
|
1531
|
+
yMax: Int = null
|
|
1532
|
+
tMin: Int = null
|
|
1533
|
+
tMax: Int = null
|
|
1534
|
+
cMin: Int = null
|
|
1535
|
+
cMax: Int = null
|
|
1536
|
+
well: ID = null
|
|
1537
|
+
row: Int = null
|
|
1538
|
+
column: Int = null
|
|
1539
|
+
image: ID!
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
input ContinousScanViewInput {
|
|
1543
|
+
collection: ID = null
|
|
1544
|
+
zMin: Int = null
|
|
1545
|
+
zMax: Int = null
|
|
1546
|
+
xMin: Int = null
|
|
1547
|
+
xMax: Int = null
|
|
1548
|
+
yMin: Int = null
|
|
1549
|
+
yMax: Int = null
|
|
1550
|
+
tMin: Int = null
|
|
1551
|
+
tMax: Int = null
|
|
1552
|
+
cMin: Int = null
|
|
1553
|
+
cMax: Int = null
|
|
1554
|
+
direction: ScanDirection!
|
|
1555
|
+
image: ID!
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
input DeleteViewInput {
|
|
1559
|
+
id: ID!
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
input PinViewInput {
|
|
1563
|
+
id: ID!
|
|
1564
|
+
pin: Boolean!
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
input InstrumentInput {
|
|
1568
|
+
serialNumber: String!
|
|
1569
|
+
manufacturer: String = null
|
|
1570
|
+
name: String = null
|
|
1571
|
+
model: String = null
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
input DeleteInstrumentInput {
|
|
1575
|
+
id: ID!
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
input PinInstrumentInput {
|
|
1579
|
+
id: ID!
|
|
1580
|
+
pin: Boolean!
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
input ObjectiveInput {
|
|
1584
|
+
serialNumber: String!
|
|
1585
|
+
name: String = null
|
|
1586
|
+
na: Float = null
|
|
1587
|
+
magnification: Float = null
|
|
1588
|
+
immersion: String = null
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
input DeleteObjectiveInput {
|
|
1592
|
+
id: ID!
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
input PinObjectiveInput {
|
|
1596
|
+
id: ID!
|
|
1597
|
+
pin: Boolean!
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
input CameraInput {
|
|
1601
|
+
serialNumber: String!
|
|
1602
|
+
name: String = null
|
|
1603
|
+
model: String = null
|
|
1604
|
+
bitDepth: Int = null
|
|
1605
|
+
sensorSizeX: Int = null
|
|
1606
|
+
sensorSizeY: Int = null
|
|
1607
|
+
pixelSizeX: Micrometers = null
|
|
1608
|
+
pixelSizeY: Micrometers = null
|
|
1609
|
+
manufacturer: String = null
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
input DeleteCameraInput {
|
|
1613
|
+
id: ID!
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
input PinCameraInput {
|
|
1617
|
+
id: ID!
|
|
1618
|
+
pin: Boolean!
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
input SnaphotInput {
|
|
1622
|
+
file: Upload!
|
|
1623
|
+
image: ID!
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
scalar Upload
|
|
1627
|
+
|
|
1628
|
+
input DeleteSnaphotInput {
|
|
1629
|
+
id: ID!
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
input PinSnapshotInput {
|
|
1633
|
+
id: ID!
|
|
1634
|
+
pin: Boolean!
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
type Subscription {
|
|
1638
|
+
historyEvents(user: String!): Image!
|
|
1639
|
+
}
|