Skip to content

Commit 18ba273

Browse files
committed
experiment.py - remove object_properties from Run
1 parent acb9ab5 commit 18ba273

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

docs/experiment.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ A single data import. Extends `ExpObject`.
6666
| `experiments` | `List[dict]` | Experiments (run groups) the run belongs to. |
6767
| `file_path_root` | `str` | Server side root path for the run's files. |
6868
| `protocol` | `dict` | The run's protocol. |
69-
| `object_properties`| `List[dict]` | Additional object level properties. |
7069
| `plate_metadata` | `dict` | Well group property values for plate based assays. See [Plate based assays](#plate-based-assays). |
7170
| `workflow_task` | `int` | Row id of a workflow (Sample Manager / LIMS) task to associate the run with. |
7271

labkey/experiment.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ def __init__(self, **kwargs):
8080
self.data_file = kwargs.pop("data_file", None)
8181
self.material_inputs = kwargs.pop("material_inputs", kwargs.pop("materialInputs", []))
8282
self.material_outputs = kwargs.pop("material_outputs", kwargs.pop("materialOutputs", []))
83-
self.object_properties = kwargs.pop("object_properties", kwargs.pop("objectProperties", []))
8483
self.plate_metadata = kwargs.pop("plate_metadata", None)
8584
self.workflow_task = kwargs.pop("workflow_task", None)
8685

0 commit comments

Comments
 (0)