Experiment
Usage
- Searches by name if the node doesn't exist it creates it otherwise updates it
- Idempotent operation
from cript import *
exp1 = Experiment(name="exp1")
col1=Collection(name="col1", experiment=exp1)
proj = Project(
name="Change Project Name",
collection=[col1]
)
print(proj)
Fields
| Attribute | Type | Required |
|---|---|---|
| name | string | t |
| process | List[Process] | o |
| computation | List[Computation] | o |
| computation_process | List[ComputationProcess] | o |
| data | List[Data] | o |
| citation | List[Citation] | o |
| funding | str | o |
| notes | str | o |