projectglow / glow

An open-source toolkit for large-scale genomic analysis
https://projectglow.io
Apache License 2.0
262 stars 106 forks source link

Glow.hail - No module found #666

Closed davipug closed 1 week ago

davipug commented 1 month ago

In November 2023, I used the following code to install and import Glow to use with Hail in a Colab Enterprise Notebook and everything worked fine to read a Hail matrix table and convert it to a Glow dataframe. However, now when running this code I receive a ModuleNotFoundError: No module named 'glow.hail'

Any suggestions on how to resolve the issue?

Thanks.

Install and import Glow:

!pip install glow.py import glow from glow.hail import functions

Error message received:

ModuleNotFoundError Traceback (most recent call last) in <cell line: 3>() 1 #Import Glow and Glow.Hail Functions 2 import glow ----> 3 from glow.Hail import functions

ModuleNotFoundError: No module named 'glow.Hail'

kermany commented 1 week ago

We removed all Hail dependencies in the latest release: https://github.com/projectglow/glow/releases

davipug commented 1 week ago

Thanks for the response, missed that in the release notes.