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
Hi,
When running gemmapy from script+console using python3 the script does not close once running its course.
For example the following does run and gives me the result I expect, the 'done' get printed but I have to manually close the script in the console after. I tried adding a sys.exit() and exit() at the end but it didn't change anything.
import gemmapy
api_instance = gemmapy.GemmaPy()
api_response_h = api_instance.search_datasets(['NR5A1'], taxon="human")
for d in api_response_h.data:
print(d.accession)
print('done')
The text was updated successfully, but these errors were encountered:
I'm suspecting that there is a thread in the pool that is still running. I was mistaken, a daemon thread is actually not keeping the VM alive, but a regular thread like those created by the ThreadPoolExecutor do.
To debug this, we can inspect the callables of alive threads to see where they originated from.
Hi,
When running gemmapy from script+console using python3 the script does not close once running its course.
For example the following does run and gives me the result I expect, the 'done' get printed but I have to manually close the script in the console after. I tried adding a sys.exit() and exit() at the end but it didn't change anything.
The text was updated successfully, but these errors were encountered: