Skip to content

Data

Data

Bases: PrimaryBaseNode

Definition

A Data node node contains the meta-data to describe raw data that is beyond a single value, (i.e. n-dimensional data). Each Data node must be linked to a single Experiment node.

Available Sub-Objects
Attributes
Attribute Type Example Description Required
name str "my_data_name" Name of the data node True
type str "nmr_h1" Pick from CRIPT data type controlled vocabulary True
file List[File] [file_1, file_2, file_3] list of file nodes False
sample_preparation Process False
computation List[Computation] data produced from this Computation method False
computation_process Computational Process data was produced from this computation process False
material List[Material] materials with attributes associated with the data node False
process List[Process] processes with attributes associated with the data node False
citation Citation reference to a book, paper, or scholarly work False
notes str "my awesome notes" miscellaneous information, or custom data structure False

Examples:

>>> import cript
>>> my_file = cript.File(
...    name="my file node name",
...    source="https://criptapp.org",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
JSON Representation
{
   "name":"my data name",
   "node":["Data"],
   "type":"afm_amp",
   "uid":"_:80b02470-73d0-416e-8d93-12fdf69e481a",
   "uuid":"80b02470-73d0-416e-8d93-12fdf69e481a"
   "file":[
      {
        "node":["File"],
        "name":"my file node name",
         "uid":"_:535779ea-0d1f-4b23-b3e8-60052f717307",
         "uuid":"535779ea-0d1f-4b23-b3e8-60052f717307"
         "type":"calibration",
         "source":"https://criptapp.org",
         "extension":".csv",
         "data_dictionary":"my file's data dictionary",
      }
   ]
}
Source code in src/cript/nodes/primary_nodes/data.py
 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
class Data(PrimaryBaseNode):
    """
    ## Definition
    A [Data node](https://pubs.acs.org/doi/suppl/10.1021/acscentsci.3c00011/suppl_file/oc3c00011_si_001.pdf#page=13)
     node contains the meta-data to describe raw data that is beyond a single value, (i.e. n-dimensional data).
     Each `Data` node must be linked to a single `Experiment` node.

    ## Available Sub-Objects
    * [Citation](../../subobjects/citation)

    ## Attributes
    | Attribute           | Type                                              | Example                    | Description                                                                                  | Required |
    |---------------------|---------------------------------------------------|----------------------------|----------------------------------------------------------------------------------------------|----------|
    | name                | str                                               | `"my_data_name"`           | Name of the data node                                                                        | True     |
    | type                | str                                               | `"nmr_h1"`                 | Pick from [CRIPT data type controlled vocabulary](https://app.criptapp.org/vocab/data_type/) | True     |
    | file                | List[[File](../supporting_nodes/file.md)]         | `[file_1, file_2, file_3]` | list of file nodes                                                                           | False    |
    | sample_preparation  | [Process](process.md)                             |                            |                                                                                              | False    |
    | computation         | List[[Computation](computation.md)]               |                            | data produced from this Computation method                                                   | False    |
    | computation_process | [Computational Process](./computation_process.md) |                            | data was produced from this computation process                                              | False    |
    | material            | List[[Material](./material.md)]                   |                            | materials with attributes associated with the data node                                      | False    |
    | process             | List[[Process](./process.md)]                     |                            | processes with attributes associated with the data node                                      | False    |
    | citation            | [Citation](../subobjects/citation.md)             |                            | reference to a book, paper, or scholarly work                                                | False    |
    | notes               | str                                               | "my awesome notes"         | miscellaneous information, or custom data structure                                          | False    |

    Examples
    --------
    >>> import cript
    >>> my_file = cript.File(
    ...    name="my file node name",
    ...    source="https://criptapp.org",
    ...    type="calibration",
    ...    extension=".csv",
    ...    data_dictionary="my file's data dictionary"
    ... )
    >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])

    ## JSON Representation
    ```json
    {
       "name":"my data name",
       "node":["Data"],
       "type":"afm_amp",
       "uid":"_:80b02470-73d0-416e-8d93-12fdf69e481a",
       "uuid":"80b02470-73d0-416e-8d93-12fdf69e481a"
       "file":[
          {
            "node":["File"],
            "name":"my file node name",
             "uid":"_:535779ea-0d1f-4b23-b3e8-60052f717307",
             "uuid":"535779ea-0d1f-4b23-b3e8-60052f717307"
             "type":"calibration",
             "source":"https://criptapp.org",
             "extension":".csv",
             "data_dictionary":"my file's data dictionary",
          }
       ]
    }
    ```
    """

    @dataclass(frozen=True)
    class JsonAttributes(PrimaryBaseNode.JsonAttributes):
        """
        all Data attributes
        """

        type: str = ""
        # TODO add proper typing in future, using Any for now to avoid circular import error
        file: List[Union[Any, UIDProxy]] = field(default_factory=list)
        sample_preparation: Union[Any, UIDProxy] = field(default_factory=list)
        computation: List[Union[Any, UIDProxy]] = field(default_factory=list)
        computation_process: Union[Any, UIDProxy] = field(default_factory=list)
        material: List[Union[Any, UIDProxy]] = field(default_factory=list)
        process: List[Union[Any, UIDProxy]] = field(default_factory=list)
        citation: List[Union[Any, UIDProxy]] = field(default_factory=list)

    _json_attrs: JsonAttributes = JsonAttributes()

    @beartype
    def __init__(
        self,
        name: str,
        type: str,
        file: List[Union[Any, UIDProxy]],
        sample_preparation: Union[Any, UIDProxy] = None,
        computation: Optional[List[Union[Any, UIDProxy]]] = None,
        computation_process: Optional[Union[Any, UIDProxy]] = None,
        material: Optional[List[Union[Any, UIDProxy]]] = None,
        process: Optional[List[Union[Any, UIDProxy]]] = None,
        citation: Optional[List[Union[Any, UIDProxy]]] = None,
        notes: str = "",
        **kwargs
    ) -> None:
        """
        Examples
        --------
        >>> import cript
        >>> my_file = cript.File(
        ...     name="my file node name",
        ...     source="https://pubs.acs.org/doi/suppl/10.1021/acscentsci.3c00011/suppl_file/oc3c00011_si_001.pdf",
        ...      type="calibration",
        ...      extension=".pdf",
        ... )
        >>> my_data = cript.Data(
        ...     name="my data node name",
        ...     type="afm_amp",
        ...     file=[my_file],
        ... )

        Parameters
        ----------
        name: str
            data node name
        type: str
            [data type](https://app.criptapp.org/vocab/data_type) must come from CRIPT controlled vocabulary
        file: List[File], default None
            list of CRIPT file nodes within the data node
        sample_preparation: Process, default None
            sample preparation
        computation: Optional[Computation], default None
            data was produced from this computation method
        computation_process: Optional[ComputationalProcess], default None
            data was produced from this computation process
        material: Optional[List[Material]], default None
            materials with attributes associated with the data node
        process: Optional[List[Process]], default None
            processes with attributes associated with the data node
        citation: Optional[List[Citation]], default None
            reference to a book, paper, or scholarly work
        notes: str, default ""
            miscellaneous information, or custom data structure
        kwargs
            used for deserializing JSON into Python SDK nodes

        Returns
        -------
        None
        """
        super().__init__(name=name, notes=notes, **kwargs)

        if file is None:
            file = []

        if sample_preparation is None:
            sample_preparation = []

        if computation is None:
            computation = []

        if computation_process is None:
            computation_process = []

        if material is None:
            material = []

        if process is None:
            process = []

        if citation is None:
            citation = []

        new_json_attrs = replace(
            self._json_attrs,
            type=type,
            file=file,
            sample_preparation=sample_preparation,
            computation=computation,
            computation_process=computation_process,
            material=material,
            process=process,
            citation=citation,
        )
        self._update_json_attrs_if_valid(new_json_attrs)

    @property
    @beartype
    def type(self) -> str:
        """
        The data type must come from [CRIPT data type vocabulary](https://app.criptapp.org/vocab/data_type)

        Examples
        --------
        >>> import cript
        >>> my_file = cript.File(
        ...    name="my file node name",
        ...    source="https://criptapp.org",
        ...    type="calibration",
        ...    extension=".csv",
        ...    data_dictionary="my file's data dictionary"
        ... )
        >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
        >>> my_data.type = "nmr_h1"

        Returns
        -------
        data type: str
            data type for the data node must come from CRIPT controlled vocabulary
        """
        return self._json_attrs.type

    @type.setter
    @beartype
    def type(self, new_data_type: str) -> None:
        """
        set the data type.
        The data type must come from [CRIPT data type vocabulary](https://app.criptapp.org/vocab/data_type)

        Parameters
        ----------
        new_data_type: str
            new data type to replace the current data type

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, type=new_data_type)
        self._update_json_attrs_if_valid(new_attrs)

    @property
    @beartype
    def file(self) -> List[Any]:
        """
        get the list of [files](../../supporting_nodes/file) for this data node

        Examples
        --------
        >>> import cript
        >>> my_file = cript.File(
        ...    name="my file node name",
        ...    source="https://criptapp.org",
        ...    type="calibration",
        ...    extension=".csv",
        ...    data_dictionary="my file's data dictionary"
        ... )
        >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
        >>> my_new_file = cript.File(
        ...    name="my new file node name",
        ...    source="path/to/local/file",
        ...    type="calibration",
        ...    extension=".csv",
        ...    data_dictionary="my file's data dictionary"
        ... )
        >>> my_data.file += [my_new_file]

        Returns
        -------
        List[File]
            list of files for this data node
        """
        return self._json_attrs.file.copy()

    @file.setter
    @beartype
    def file(self, new_file_list: List[Any]) -> None:
        """
        set the list of file for this data node

        Parameters
        ----------
        new_files_list: List[File]
            new list of file nodes to replace the current list

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, file=new_file_list)
        self._update_json_attrs_if_valid(new_attrs)

    @property
    @beartype
    def sample_preparation(self) -> Union[Any, None]:
        """
        The [sample preparation](../process) for this data node

        Examples
        --------
        >>> import cript
        >>> my_new_files = cript.File(
        ...     name="my file node name",
        ...     source="https://pubs.acs.org/doi/10.1021/acscentsci.3c00011",
        ...     type="computation_config",
        ...     extension=".pdf",
        ...     data_dictionary="my data dictionary",
        ... )
        >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_new_files])
        >>> my_sample_preparation = cript.Process(name="my sample preparation name", type="affinity_pure")
        >>> my_data.sample_preparation = my_sample_preparation

        Returns
        -------
        sample_preparation: Process
            sample preparation for this data node
        """
        return self._json_attrs.sample_preparation

    @sample_preparation.setter
    @beartype
    def sample_preparation(self, new_sample_preparation: Union[Any, None]) -> None:
        """
        set sample_preparation

        Parameters
        ----------
        new_sample_preparation: Process
            new_sample_preparation to replace the current one for this node

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, sample_preparation=new_sample_preparation)
        self._update_json_attrs_if_valid(new_attrs)

    @property
    @beartype
    def computation(self) -> List[Any]:
        """
        list of [computation nodes](../computation/) for this material node

        Examples
        --------
        >>> import cript
        >>> my_file = cript.File(
        ...    name="my file node name",
        ...    source="https://criptapp.org",
        ...    type="calibration",
        ...    extension=".csv",
        ...    data_dictionary="my file's data dictionary"
        ... )
        >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
        >>> my_computation = cript.Computation(name="my computation name", type="analysis")
        >>> my_data.computation = [my_computation]

        Returns
        -------
        None
            list of computation nodes
        """
        return self._json_attrs.computation.copy()

    @computation.setter
    @beartype
    def computation(self, new_computation_list: List[Any]) -> None:
        """
        set list of computation  for this data node

        Parameters
        ----------
        new_computation_list: List[Computation]
            new computation list to replace the current one

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, computation=new_computation_list)
        self._update_json_attrs_if_valid(new_attrs)

    @property
    @beartype
    def computation_process(self) -> Union[Any, None]:
        """
        The [computation_process](../computation_process) for this data node

        Examples
        --------
        >>> import cript
        >>> my_file = cript.File(
        ...     name="my file node name",
        ...     source="https://criptapp.org",
        ...     type="calibration",
        ...     extension=".csv",
        ...     data_dictionary="my file's data dictionary"
        ... )
        >>> my_data = cript.Data(
        ...     name="my data name",
        ...     type="afm_amp",
        ...     file=[my_file]
        ... )
        >>> my_file_for_second_data_node = cript.File(
        ...     name="my second file node name",
        ...     source="https://criptapp.org",
        ...     type="calibration",
        ...     extension=".csv",
        ...     data_dictionary="my file's data dictionary"
        ... )
        >>> my_second_data_node = cript.Data(
        ...     name="my data name",
        ...     type="afm_amp",
        ...     file=[my_file_for_second_data_node]
        ... )
        >>> my_material = cript.Material(
        ...     name="my material name",
        ...     bigsmiles = "123456"
        ... )
        >>> my_quantity = cript.Quantity(
        ...     key="mass", value=11.2, unit="kg", uncertainty=0.2, uncertainty_type="stdev"
        ... )
        >>> my_ingredient = cript.Ingredient(
        ...     material=my_material,
        ...     quantity=[my_quantity],
        ...     keyword=["catalyst"],
        ... )
        >>> my_computational_process = cript.ComputationProcess(
        ...     name="my computational process node name",
        ...     type="cross_linking",
        ...     input_data=[my_second_data_node],
        ...     ingredient=[my_ingredient],
        ... )

        Returns
        -------
        ComputationalProcess
            computational process node for this data node
        """
        return self._json_attrs.computation_process

    @computation_process.setter
    @beartype
    def computation_process(self, new_computation_process: Union[Any, None]) -> None:
        """
        set the computational process

        Parameters
        ----------
        new_computation_process: ComputationalProcess

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, computation_process=new_computation_process)
        self._update_json_attrs_if_valid(new_attrs)

    @property
    @beartype
    def material(self) -> List[Any]:
        """
        List of [materials](../material) for this node

        Examples
        --------
        >>> import cript
        >>> my_file = cript.File(
        ...    name="my file node name",
        ...    source="https://criptapp.org",
        ...    type="calibration",
        ...    extension=".csv",
        ...    data_dictionary="my file's data dictionary"
        ... )
        >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
        >>> my_material = cript.Material(name="my material name", bigsmiles = "123456")
        >>> my_data.material = [my_material]

        Returns
        -------
        List[Material]
            list of material
        """
        return self._json_attrs.material.copy()

    @material.setter
    @beartype
    def material(self, new_material_list: List[Any]) -> None:
        """
        set the list of materials for this data node

        Parameters
        ----------
        new_material_list: List[Material]

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, material=new_material_list)
        self._update_json_attrs_if_valid(new_attrs)

    @property
    @beartype
    def process(self) -> List[Any]:
        """
        list of [Process nodes](./process.md) for this data node

        Examples
        --------
        >>> import cript
        >>> my_file = cript.File(
        ...    name="my file node name",
        ...    source="https://criptapp.org",
        ...    type="calibration",
        ...    extension=".csv",
        ...    data_dictionary="my file's data dictionary"
        ... )
        >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
        >>> my_process = cript.Process(name="my process name", type="affinity_pure")
        >>> my_data.process = [my_process]

        Notes
        -----
        Please note that while the process attribute of the data node is currently set to `Any`
        the software still expects a Process node in the data's process attribute
        > It is currently set to `Any` to avoid the circular import error

        Returns
        -------
        List[Process]
            list of process for the data node
        """
        return self._json_attrs.process.copy()

    @process.setter
    @beartype
    def process(self, new_process_list: List[Any]) -> None:
        """
        set the list of process for this data node

        Parameters
        ----------
        new_process_list: List[Process]
            new list of Process

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, process=new_process_list)
        self._update_json_attrs_if_valid(new_attrs)

    @property
    @beartype
    def citation(self) -> List[Any]:
        """
        List of [citation](../../subobjects/citation) within the data node

        Examples
        --------
        >>> import cript
        >>> import cript
        >>> my_file = cript.File(
        ...    name="my file node name",
        ...    source="https://criptapp.org",
        ...    type="calibration",
        ...    extension=".csv",
        ...    data_dictionary="my file's data dictionary"
        ... )
        >>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
        >>> my_reference = cript.Reference(type="journal_article", title="'Living' Polymers")
        >>> my_citation = cript.Citation(type="derived_from", reference=my_reference)
        >>> my_data.citation = [my_citation]

        Returns
        -------
        List[Citation]
            list of citations for this data node
        """
        return self._json_attrs.citation.copy()

    @citation.setter
    @beartype
    def citation(self, new_citation_list: List[Any]) -> None:
        """
        set the list of citation

        Parameters
        ----------
        new_citation_list: List[Citation]
            new list of citation to replace the current one

        Returns
        -------
        None
        """
        new_attrs = replace(self._json_attrs, citation=new_citation_list)
        self._update_json_attrs_if_valid(new_attrs)

citation: List[Any] property writable

List of citation within the data node

Examples:

>>> import cript
>>> import cript
>>> my_file = cript.File(
...    name="my file node name",
...    source="https://criptapp.org",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
>>> my_reference = cript.Reference(type="journal_article", title="'Living' Polymers")
>>> my_citation = cript.Citation(type="derived_from", reference=my_reference)
>>> my_data.citation = [my_citation]

Returns:

Type Description
List[Citation]

list of citations for this data node

computation: List[Any] property writable

list of computation nodes for this material node

Examples:

>>> import cript
>>> my_file = cript.File(
...    name="my file node name",
...    source="https://criptapp.org",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
>>> my_computation = cript.Computation(name="my computation name", type="analysis")
>>> my_data.computation = [my_computation]

Returns:

Type Description
None

list of computation nodes

computation_process: Union[Any, None] property writable

The computation_process for this data node

Examples:

>>> import cript
>>> my_file = cript.File(
...     name="my file node name",
...     source="https://criptapp.org",
...     type="calibration",
...     extension=".csv",
...     data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(
...     name="my data name",
...     type="afm_amp",
...     file=[my_file]
... )
>>> my_file_for_second_data_node = cript.File(
...     name="my second file node name",
...     source="https://criptapp.org",
...     type="calibration",
...     extension=".csv",
...     data_dictionary="my file's data dictionary"
... )
>>> my_second_data_node = cript.Data(
...     name="my data name",
...     type="afm_amp",
...     file=[my_file_for_second_data_node]
... )
>>> my_material = cript.Material(
...     name="my material name",
...     bigsmiles = "123456"
... )
>>> my_quantity = cript.Quantity(
...     key="mass", value=11.2, unit="kg", uncertainty=0.2, uncertainty_type="stdev"
... )
>>> my_ingredient = cript.Ingredient(
...     material=my_material,
...     quantity=[my_quantity],
...     keyword=["catalyst"],
... )
>>> my_computational_process = cript.ComputationProcess(
...     name="my computational process node name",
...     type="cross_linking",
...     input_data=[my_second_data_node],
...     ingredient=[my_ingredient],
... )

Returns:

Type Description
ComputationalProcess

computational process node for this data node

file: List[Any] property writable

get the list of files for this data node

Examples:

>>> import cript
>>> my_file = cript.File(
...    name="my file node name",
...    source="https://criptapp.org",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
>>> my_new_file = cript.File(
...    name="my new file node name",
...    source="path/to/local/file",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data.file += [my_new_file]

Returns:

Type Description
List[File]

list of files for this data node

material: List[Any] property writable

List of materials for this node

Examples:

>>> import cript
>>> my_file = cript.File(
...    name="my file node name",
...    source="https://criptapp.org",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
>>> my_material = cript.Material(name="my material name", bigsmiles = "123456")
>>> my_data.material = [my_material]

Returns:

Type Description
List[Material]

list of material

process: List[Any] property writable

list of Process nodes for this data node

Examples:

>>> import cript
>>> my_file = cript.File(
...    name="my file node name",
...    source="https://criptapp.org",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
>>> my_process = cript.Process(name="my process name", type="affinity_pure")
>>> my_data.process = [my_process]
Notes

Please note that while the process attribute of the data node is currently set to Any the software still expects a Process node in the data's process attribute

It is currently set to Any to avoid the circular import error

Returns:

Type Description
List[Process]

list of process for the data node

sample_preparation: Union[Any, None] property writable

The sample preparation for this data node

Examples:

>>> import cript
>>> my_new_files = cript.File(
...     name="my file node name",
...     source="https://pubs.acs.org/doi/10.1021/acscentsci.3c00011",
...     type="computation_config",
...     extension=".pdf",
...     data_dictionary="my data dictionary",
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_new_files])
>>> my_sample_preparation = cript.Process(name="my sample preparation name", type="affinity_pure")
>>> my_data.sample_preparation = my_sample_preparation

Returns:

Name Type Description
sample_preparation Process

sample preparation for this data node

type: str property writable

The data type must come from CRIPT data type vocabulary

Examples:

>>> import cript
>>> my_file = cript.File(
...    name="my file node name",
...    source="https://criptapp.org",
...    type="calibration",
...    extension=".csv",
...    data_dictionary="my file's data dictionary"
... )
>>> my_data = cript.Data(name="my data name", type="afm_amp", file=[my_file])
>>> my_data.type = "nmr_h1"

Returns:

Type Description
data type: str

data type for the data node must come from CRIPT controlled vocabulary

JsonAttributes dataclass

Bases: JsonAttributes

all Data attributes

Source code in src/cript/nodes/primary_nodes/data.py
@dataclass(frozen=True)
class JsonAttributes(PrimaryBaseNode.JsonAttributes):
    """
    all Data attributes
    """

    type: str = ""
    # TODO add proper typing in future, using Any for now to avoid circular import error
    file: List[Union[Any, UIDProxy]] = field(default_factory=list)
    sample_preparation: Union[Any, UIDProxy] = field(default_factory=list)
    computation: List[Union[Any, UIDProxy]] = field(default_factory=list)
    computation_process: Union[Any, UIDProxy] = field(default_factory=list)
    material: List[Union[Any, UIDProxy]] = field(default_factory=list)
    process: List[Union[Any, UIDProxy]] = field(default_factory=list)
    citation: List[Union[Any, UIDProxy]] = field(default_factory=list)

__init__(name, type, file, sample_preparation=None, computation=None, computation_process=None, material=None, process=None, citation=None, notes='', **kwargs)

Examples:

>>> import cript
>>> my_file = cript.File(
...     name="my file node name",
...     source="https://pubs.acs.org/doi/suppl/10.1021/acscentsci.3c00011/suppl_file/oc3c00011_si_001.pdf",
...      type="calibration",
...      extension=".pdf",
... )
>>> my_data = cript.Data(
...     name="my data node name",
...     type="afm_amp",
...     file=[my_file],
... )

Parameters:

Name Type Description Default
name str

data node name

required
type str

data type must come from CRIPT controlled vocabulary

required
file List[Union[Any, UIDProxy]]

list of CRIPT file nodes within the data node

required
sample_preparation Union[Any, UIDProxy]

sample preparation

None
computation Optional[List[Union[Any, UIDProxy]]]

data was produced from this computation method

None
computation_process Optional[Union[Any, UIDProxy]]

data was produced from this computation process

None
material Optional[List[Union[Any, UIDProxy]]]

materials with attributes associated with the data node

None
process Optional[List[Union[Any, UIDProxy]]]

processes with attributes associated with the data node

None
citation Optional[List[Union[Any, UIDProxy]]]

reference to a book, paper, or scholarly work

None
notes str

miscellaneous information, or custom data structure

''
kwargs

used for deserializing JSON into Python SDK nodes

{}

Returns:

Type Description
None
Source code in src/cript/nodes/primary_nodes/data.py
@beartype
def __init__(
    self,
    name: str,
    type: str,
    file: List[Union[Any, UIDProxy]],
    sample_preparation: Union[Any, UIDProxy] = None,
    computation: Optional[List[Union[Any, UIDProxy]]] = None,
    computation_process: Optional[Union[Any, UIDProxy]] = None,
    material: Optional[List[Union[Any, UIDProxy]]] = None,
    process: Optional[List[Union[Any, UIDProxy]]] = None,
    citation: Optional[List[Union[Any, UIDProxy]]] = None,
    notes: str = "",
    **kwargs
) -> None:
    """
    Examples
    --------
    >>> import cript
    >>> my_file = cript.File(
    ...     name="my file node name",
    ...     source="https://pubs.acs.org/doi/suppl/10.1021/acscentsci.3c00011/suppl_file/oc3c00011_si_001.pdf",
    ...      type="calibration",
    ...      extension=".pdf",
    ... )
    >>> my_data = cript.Data(
    ...     name="my data node name",
    ...     type="afm_amp",
    ...     file=[my_file],
    ... )

    Parameters
    ----------
    name: str
        data node name
    type: str
        [data type](https://app.criptapp.org/vocab/data_type) must come from CRIPT controlled vocabulary
    file: List[File], default None
        list of CRIPT file nodes within the data node
    sample_preparation: Process, default None
        sample preparation
    computation: Optional[Computation], default None
        data was produced from this computation method
    computation_process: Optional[ComputationalProcess], default None
        data was produced from this computation process
    material: Optional[List[Material]], default None
        materials with attributes associated with the data node
    process: Optional[List[Process]], default None
        processes with attributes associated with the data node
    citation: Optional[List[Citation]], default None
        reference to a book, paper, or scholarly work
    notes: str, default ""
        miscellaneous information, or custom data structure
    kwargs
        used for deserializing JSON into Python SDK nodes

    Returns
    -------
    None
    """
    super().__init__(name=name, notes=notes, **kwargs)

    if file is None:
        file = []

    if sample_preparation is None:
        sample_preparation = []

    if computation is None:
        computation = []

    if computation_process is None:
        computation_process = []

    if material is None:
        material = []

    if process is None:
        process = []

    if citation is None:
        citation = []

    new_json_attrs = replace(
        self._json_attrs,
        type=type,
        file=file,
        sample_preparation=sample_preparation,
        computation=computation,
        computation_process=computation_process,
        material=material,
        process=process,
        citation=citation,
    )
    self._update_json_attrs_if_valid(new_json_attrs)