-
Notifications
You must be signed in to change notification settings - Fork 1
/
experiment.yml
378 lines (378 loc) · 11.8 KB
/
experiment.yml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
$schema: https://json-schema.org/draft/2020-12/schema
title: MAVE experiment definition
$defs:
Document:
type: object
additionalProperties: false
description: a written document describing a work
properties:
title:
type: string
description: the title of the document
system:
type: string
description: >-
the name of the system the document is registered in, such as a journal or preprint server
date:
type: string
format: date
description: the date the document was registered
ref:
type: string
format: uri
description: >-
a Universal Record Identifier for the document
required:
- ref
Coding:
type: object
additionalProperties: false
properties:
system:
description: identity of the terminology system
type: string
format: uri
version:
description: version of the terminology system
type: string
code:
description: a code within the terminology system
type: string
pattern: '\S+( \S+)*'
label:
description: a human-readable description of the concept associated with the code
type: string
required:
- system
- code
Dataset:
type: object
additionalProperties: false
description: a dataset available from an external source
properties:
system:
type: string
description: the name of the system the dataset is available from, such as a database
accession:
type: string
description: accession number for the dataset in the system
ref:
type: string
format: uri
description: a Universal Record Identifier for the dataset
description:
description: additional details about the dataset, such as whether it contains raw or processed data
type: string
required:
- system
- accession
ReferenceSequence:
type: object
additionalProperties: false
properties:
id:
type: string
sha512t24u:
type: string
pattern: '[0-9A-Za-z_\-]{32}'
sequence:
type: string
pattern: '^[A-Z*\-]*$'
sequenceAlphabet:
type: string
enum:
- DNA
- RNA
- protein
EndogenousLocusLibraryMethod:
type: object
additionalProperties: false
description: a methodology for generating a variant library at an endogenous locus
properties:
type:
const: endogenous locus library
default: endogenous locus library
system:
type: string
description: the system used to generate the library
enum:
- SpCas9
- SaCas9
- AsCas12a
- RfsCas13d
mechanism:
description: the functional mechanism of the library generation method
type: string
enum:
- nuclease
- base editor
- prime editor
description:
description: additional details about the variant library generation method
type: string
required:
- type
- system
- mechanism
InVitroConstructLibraryMethod:
type: object
additionalProperties: false
description: a methodology for generating and integrating an exogenous variant library
properties:
type:
const: in-vitro construct library
default: in-vitro construct library
system:
type: string
description: the type of method used to generate the library
enum:
- oligo-directed mutagenic PCR
- error-prone PCR
- nicking mutagenesis
- microarray synthesis
- site-directed mutagenesis
- doped oligo synthesis
- oligo pool synthesis
- proprietary method
- other
integration:
description: the mechanism for integration or expression of an exogenous construct
type: string
enum:
- native locus replacement
- extra-local construct insertion
- random locus viral integration
- episomal delivery
- plasmid (not integrated)
- transfection of RNA
description:
description: additional details about the variant library generation method
type: string
if:
properties:
system:
const: other
then:
required:
- type
- system
- description
else:
required:
- type
- system
VariantLibrary:
type: object
additionalProperties: false
description: a collection of sequence variants that are derived from a common target sequence
properties:
targetSequences:
description: the collection of sequences used as references from which all variants in the library are defined
type: array
items:
$ref: "#/$defs/ReferenceSequence"
minItems: 1
scope:
description: the functional scope of DNA elements introduced into the library. DNA elements can have known
or unknown functions. Example functions include a gene, an exon or set of exons included in a transcript,
a set of enhancers, a set of repressors, etc.
type: object
properties:
type:
description: the scope type for elements introduced into the library
type: string
enum:
- coding
- intronic
- non-coding, regulatory
- non-coding, other
description:
type: string
description: additional details about the DNA element scope. For example, distinguishing the mode of
variant programming/engineering (e.g. all SNV, indels, ClinVar variants etc).
if:
properties:
type:
const: non-coding, other
then:
required:
- description
generationMethod:
description: the method used for generating the library
oneOf:
- $ref: "#/$defs/EndogenousLocusLibraryMethod"
- $ref: "#/$defs/InVitroConstructLibraryMethod"
deliveryMethod:
description: how the variant library was delivered to the model system for phenotype
evaluation.
type: object
properties:
type:
type: string
enum:
- electroporation
- nucleofection
- chemical-based transfection
- adeno-associated virus transduction
- lentivirus transduction
- chemical or heat shock transformation
- other
description:
type: string
description: additional details about the delivery method
required:
- type
required:
- scope
- targetSequences
- generationMethod
- deliveryMethod
phenotypicAssay:
description: a physical adjudication of a model system that allows for systematic interrogation of a functional
read-out for a large amount of genetic variants.
type: object
additionalProperties: false
properties:
dimensionality:
type: object
description: dimensionality of phenotyping assay. Describes how many phenotypes and of what complexity
are included in the map.
properties:
type:
description: a coding defining the dimensionality of the assay as single or multiple functional
readouts.
type: string
enum:
- single-dimensional data
- high-dimensional data
- combined functional data
description:
type: string
description: additional details about the dimensionality of the assay
required:
- type
replication:
type: object
description: replication of phenotyping assay. Describes what kind of replication was performed.
properties:
type:
description: a coding defining the kind of replication performed.
type: string
enum:
- biological
- technical
- biological and technical
- no replication
description:
type: string
description: additional details about the replicate structure of the assay, including number of replicates
required:
- type
method:
description: the assay method, defining the molecular properties interrogated.
type: object
properties:
type:
type: string
enum:
- promoter activity detection by reporter gene assay
- bulk RNA-sequencing
- single-cell RNA sequencing assay
- fluorescence in-situ hybridization (FISH) assay
- flow cytometry assay
- imaging mass cytometry assay
- systematic evolution of ligands by exponential enrichment assay
- single cell imaging
- multiplexed fluorescent antibody imaging
- binding assay
- cell proliferation assay
- survival assessment assay
- other
description:
type: string
description: additional details about the assay method.
required:
- type
relevance:
description: the disease or biological processes the assay is relevant to.
type: array
items:
$ref: "#/$defs/Coding"
minItems: 1
modelSystem:
description: the model system context that influences expression of the phenotype.
type: object
properties:
type:
description: the model system.
type: string
enum:
- immortalized human cells
- murine primary cells
- induced pluripotent stem cells from human male
- induced pluripotent stem cells from human female
- patient derived primary cells (e.g. T-cells, adipocytes)
- yeast
- bacteria
- bacteriophage
- molecular display
- other
description:
type: string
description: additional details about the model system.
codings:
description: relevant ontology terms or identifiers for the model system.
type: array
items:
$ref: "#/$defs/Coding"
minItems: 1
profilingStrategy:
description: the strategy used to profile the variant library
type: string
enum:
- direct sequencing
- shotgun sequencing
- barcode sequencing
sequencingReadType:
description: the sequencing method used
type: string
enum:
- single-segment (short read)
- single-segment (long read)
- multi-segment
required:
- dimensionality
- method
- relevance
- modelSystem
- profilingStrategy
- sequencingReadType
- replication
type: object
additionalProperties: false
properties:
title:
description: the title of the MAVE experiment
type: string
abstract:
description: an abstract describing the MAVE experiment
type: string
document:
description: the primary document describing this experiment
$ref: "#/$defs/Document"
datasets:
description: datasets associated with this experiment
type: array
items:
$ref: "#/$defs/Dataset"
minItems: 1
variantLibrary:
description: characteristics of the variant library generation process
$ref: "#/$defs/VariantLibrary"
phenotypicAssay:
$ref: "#/$defs/phenotypicAssay"
required:
- title
- abstract
- variantLibrary
- phenotypicAssay