Skip to content
Snippets Groups Projects
Commit 877c155d authored by Illimar.Rekand's avatar Illimar.Rekand :japanese_ogre:
Browse files

update notebook after meeting w David

parent 443c40c0
No related branches found
No related tags found
No related merge requests found
...@@ -8,10 +8,15 @@ ...@@ -8,10 +8,15 @@
<summary> Table of Contents (click to expand) </summary> <summary> Table of Contents (click to expand) </summary>
- [Entries 2025](#entries-2025) - [Entries 2025](#entries-2025)
- [2025-02-01](#2025-02-01) - [2025-01-22 Meeting with David (EditExps and more):](#2025-01-22-meeting-with-david-editexps-and-more)
- [2025-01-14:](#2025-01-14)
- [Entry 1: HPLC Dilution, EditParameterMap():](#entry-1-hplc-dilution-editparametermap)
- [2025-01-07:](#2025-01-07)
- [Entry 1: HPLC Dilution assay \& EditExps RunExp feature](#entry-1-hplc-dilution-assay--editexps-runexp-feature)
- [2025-01-02](#2025-01-02)
- [Entry 1: HPLC dilution assay](#entry-1-hplc-dilution-assay) - [Entry 1: HPLC dilution assay](#entry-1-hplc-dilution-assay)
- [Entries 2024](#entries-2024) - [Entries 2024](#entries-2024)
- [2024-31-12](#2024-31-12) - [2024-12-31](#2024-12-31)
- [Entry 1: Dictionary](#entry-1-dictionary) - [Entry 1: Dictionary](#entry-1-dictionary)
- [2024-12-12](#2024-12-12) - [2024-12-12](#2024-12-12)
- [Entry 1: Infrastructure/architecture](#entry-1-infrastructurearchitecture) - [Entry 1: Infrastructure/architecture](#entry-1-infrastructurearchitecture)
...@@ -54,7 +59,40 @@ ...@@ -54,7 +59,40 @@
## Entries 2025 ## Entries 2025
### 2025-02-01 ### 2025-01-22 Meeting with David (EditExps and more):
* from pathlib import path, os.path, suffix(file), <-- (xml)
* See if all relevant information can be retrieved through designID, try and hide LS10 specifics as much as possible from Layer1, use EditExps to retrieve this inform
* minimizing the architecture dependecies/redundancies. for example: if sys.arch =="64": import foo_64 as foo, else: import foo_32 as foo
### 2025-01-14:
#### Entry 1: HPLC Dilution, EditParameterMap():
* Tried to update existing map, but EditParameterMap gives an error:
```
PythonException: System.Collections.Generic.List`1[System.Double] value cannot be converted to System.Collections.Generic.List`1[System.Object]
```
Seems like this stems from taht the function utils.AmountForDiscrete() does not output the right format for this function, while it does work for other functions, such as EditSourceMap(). Sent an email to Bjorn, hoping to clarify this.
### 2025-01-07:
#### Entry 1: HPLC Dilution assay & EditExps RunExp feature
* EditExps can now both update liquid dispensing maps **and** start running an experiment:
```mermaid
flowchart TD;
Layer1-->|FunctionName </br> which function from ls10 to execute |EE{EditExps}
EE-->|FunctionName: e.g. 'EditArrayMapDiscrete'|EM[Edit dispense maps in experiment in LS10]
EE-->|FunctionName: e.g. 'EditParameterMap'|EP[Edit parameters for experiments in LS10]
EE-->|FunctionName: e.g. 'RunExperiment'|RE[Run Experiment in AS10]
```
This means now that only one script is necessary to be used for editing liquid maps **and** running experiments, with added flexibility.
* EditExps also includes now a feature which autogenerates a promptfile from a chemical manager file.
### 2025-01-02
#### Entry 1: HPLC dilution assay #### Entry 1: HPLC dilution assay
...@@ -64,7 +102,7 @@ Further adaptations made to EditExps so that it can also run experiment - idea i ...@@ -64,7 +102,7 @@ Further adaptations made to EditExps so that it can also run experiment - idea i
## Entries 2024 ## Entries 2024
### 2024-31-12 ### 2024-12-31
#### Entry 1: Dictionary #### Entry 1: Dictionary
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment