taborlab / FlowCal

Python Flow Cytometry Calibration Library
MIT License
49 stars 23 forks source link

Fix unpacking of density gate outputs. #346

Closed JS3xton closed 3 years ago

JS3xton commented 3 years ago

Fix apparent merge oversight in merging https://github.com/taborlab/FlowCal/pull/335.

examples/analyze_mef.py fails to run on current develop (8e92580aefc74b2c4078e93e49ead844334fde3f) because some density gate outputs are unpacked incorrectly.

In https://github.com/taborlab/FlowCal/pull/337, I made the unpacking of density gate outputs more robust (aca96d8b53b0970f0da23464f7894e5998cd2394). In the parallel https://github.com/taborlab/FlowCal/pull/335, I duplicated old density gate function calls in examples/analyze_mef.py. When https://github.com/taborlab/FlowCal/pull/335 was merged, those duplicated function calls were overlooked. This PR updates those.

examples/analyze_mef.py runs correctly after this PR.