Programming in openBIS¶
Introduction¶
This section contains advice and information about programming applications connecting or using openBIS. It is mostly a collection of reference material and code snippets that could prove useful in your development work.
Internal gitlab group¶
We maintain a gitlab group with various tools for openBIS. Please check it out, you might find a project covering your needs or at least inspiration for your own project. If you want to contribute with your project, please feel free to add your project there.
Test instances¶
If you need a test instance to develop software for openBIS, we recommend to use Docker. See the guide here on how to get started.
If you have an empty test instance and would like to set it up programmatically, check out our instance-io project on gitlab.
Dynamic properties¶
What are dynamic properties¶
OpenBIS offers the dynamic property function, these are object (or collection) properties that are computed from other properties using a jython or a java function.
Computation model¶
Dynamic properties are computed whenever other properties of an object are updated. The computation happens asynchronously, so if there is a high load on the openBIS instance it might take a while until the new value is calculated. There are some other pitfalls regarding the computation of properties, as mentioned by Juan Fuentes, the head developer of openBIS:
Dynamic properties are stored on the database as values so they don't need to get re-evaluated every time. All dynamic properties of an object are 'scheduled' to be re-evaluated after any property of the object gets updated. So if you update 1000 samples using a batch, all these get 'scheduled' and eventually will show correct values, but this is far from immediate. If you update a single sample when the system is IDLE it may look instant because it gets updated the next second, but this can take minutes or hours depending how BUSY the system is. Another thing to take in count is that updating the properties of a children object DOES NOT schedule the update of the parent automatically.
If you want properties of parents to be updated at every calculation, you can check this repository.
A more robust alternative is to ask the instance owner (ETH SIS) to setup a maintenance task on your instance called DynamicPropertyEvaluationMaintenanceTask
. The task will run at regular intervals and update the values of all dynamic properties.
Special cases¶
Here we list some specific example of how dynamic properties were used at Empa to solve problems in the labs.
Spreadsheet Widget¶
If you need to handle properties associated with the spreadsheet ELN widget, check our documentation page.
Clickable email link¶
If you want to have an email address appearing as a clickable mailto:
url, check our documentation page.