You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say we need to perform 2 different tests against same sample and have third analysis service which result calculated from those 2 tests.
Currently everything works fine if all test in the same sample (AR). But if you partitioning sample (create sub samples) calculation stops working because analysis in sub sample can't find dependent services from the parent sample.
We've fixed that by adding following code to abstractroutineanalisys.py:
This code just checks if current sample is partition and if so check parent object for siblings.
@ramonski this works for me, but I'm not sure it's best solution for this. If it's ok I will create PR for this or if rework required hint will be appreciated :)
The text was updated successfully, but these errors were encountered:
Let's say we need to perform 2 different tests against same sample and have third analysis service which result calculated from those 2 tests.
Currently everything works fine if all test in the same sample (AR). But if you partitioning sample (create sub samples) calculation stops working because analysis in sub sample can't find dependent services from the parent sample.
We've fixed that by adding following code to
abstractroutineanalisys.py
:This code just checks if current sample is partition and if so check parent object for siblings.
@ramonski this works for me, but I'm not sure it's best solution for this. If it's ok I will create PR for this or if rework required hint will be appreciated :)
The text was updated successfully, but these errors were encountered: