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
When running my DARTFISH pipeline for multiple FOVs within an experiment, I noticed that multiple processes would continue to spawn with each additional FOV that was processed. I believe I tracked down the culprit to _create_spot_attributes within combine_adjacent_features.py, lines 325-335, a multiprocessing pool is called but doesn't seem to have a termination. Moving it within a with statement appeared to solve the issue for me.
Was the pool left running by design and necessary for other functions?
The text was updated successfully, but these errors were encountered:
When running my DARTFISH pipeline for multiple FOVs within an experiment, I noticed that multiple processes would continue to spawn with each additional FOV that was processed. I believe I tracked down the culprit to _create_spot_attributes within combine_adjacent_features.py, lines 325-335, a multiprocessing pool is called but doesn't seem to have a termination. Moving it within a with statement appeared to solve the issue for me.
Was the pool left running by design and necessary for other functions?
The text was updated successfully, but these errors were encountered: