Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ii/icat4bio/hte-documentation-uib
  • Illimar.Rekand/hte-documentation-uib
2 results
Show changes
Commits on Source (2)
Electronic_Labnotebook/2025-02-04-AS-PythonError-Heated6TipBlock.png

191 KiB

......@@ -8,7 +8,11 @@
<summary> Table of Contents (click to expand) </summary>
- [Entries 2025](#entries-2025)
- [2025-02-04](#2025-02-04)
- [Entry 1: Python Error while running experiment in AS10](#entry-1--python-error-while-running-experiment-in-as10)
- [2025-01-22 Meeting with David (EditExps and more):](#2025-01-22-meeting-with-david-editexps-and-more)
- [2025-01-15:](#2025-01-15)
- [Entry 1: EditParameterMap fix and HPLC injection parameters](#entry-1-editparametermap-fix-and-hplc-injection-parameters)
- [2025-01-14:](#2025-01-14)
- [Entry 1: HPLC Dilution, EditParameterMap():](#entry-1-hplc-dilution-editparametermap)
- [2025-01-07:](#2025-01-07)
......@@ -59,12 +63,48 @@
## Entries 2025
### 2025-02-04
#### Entry 1: Python Error while running experiment in AS10
Tested a run where experiment was started from the Unchained_labs package within the EditExps framework. Encountered the following error
![Specify Substrate Info](https://git.app.uib.no/ii/icat4bio/hte-documentation-uib/-/raw/main/Electronic_Labnotebook/2025-02-04-AS-PythonError-Heated6TipBlock.png?ref_type=heads)
### 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-15:
#### Entry 1: EditParameterMap fix and HPLC injection parameters
Received an email from Unchained Labs to fix the previously mentioned issue with this code snippet:
```
def ConvertToListofObjectValues(value_list: list) -> System.Collections.Generic.List[Object]:
count = len(value_list)
dotnet_list = List[Object]()
#Add each item from the Python list to the .NET List
for item in value_list:
dotnet_list.Add(item)
return dotnet_list
```
Added this now to the codebase. However, encountered following issues:
* the values of each cell need to be updated with a string for 3 individual parameter maps, which :
1) directs to the HPLC method,
2) specifies the number of replicates and
3) specifies the injection volume.
Each of these maps are applied to cells relevant for the HPLC injection. My current idea is to write one function which addresses all of these maps.
*
### 2025-01-14:
#### Entry 1: HPLC Dilution, EditParameterMap():
......