I’ve always hated how I need to create a new liquid class for something as trivial and modifying the aspiration offset or something similar. Can you define a variable in the script and pass it to the liquid class?
Most of my liquid classes are generally the same in terms of pipetting parameters but they vary based on aspiration and dispense positions which I feel like should be able to be controlled by the script
You can absolutely send variables to the micro script. It has been discussed in this forum but if you’re not R&D, this seems like massive potential for a CAPA that would immediately force you to lock it down and create different liquid classes. Implementation for this is easy but you for sure want to check in with QA/regulatory teams if you’re part of GMP/FDA/CLIA labs.
1 Like
You can exchange data between a FluentControl script and a liquid class microscript by using labware or well attributes. Use SetAttribute() function in the script to set an attribute value to a labware/well attribute. Later, in a liquid class microscript you can read out that labware/well attribute with the GetAttribute() function.
At the liquid class there is usually a pre-defined variable labwareName and indexWell that holds the value of the current labware and well number currently being used when the microscript is executed
To read labware attributes in a microscript:
GetAttribue(labwareName,yourAttributeName)
To read well attributes in a microscript:
GetAttribute(labwareName,“Well[”+indexWell+“]”.yourAttributeName)
or see also, post #15 in this topic, that contains some screenshots
Fluent Control Wishlist - Tecan - Lab Automation Forums
1 Like