Here are the errors:
`---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[4], line 4
1 import sys, os
2 sys.path.append(os.path.abspath(".."))
----> 4 from ukb_exomes import *
5 from ukbb_common import *
File../ukb_exomes/init.py:1
----> 1 from ukb_exomes.resources import *
2 from ukb_exomes.utils import *
File../ukb_exomes/resources/init.py:2
1 from .generic import *
----> 2 from .genotypes import *
3 from .phenotypes import *
4 from .results import *
File ../ukb_exomes/resources/genotypes.py:1
----> 1 import ukbb_qc.resources as ukb
2 import ukbb_qc.utils.utils as ukb_utils
3 from gnomad.utils.sparse_mt import *
ModuleNotFoundError: No module named 'ukbb_qc.resources'`
I want to load the 'gs://ukbb-exome-public/500k/results/results.mt' data. Is there any way to fix this? Thank you!
Here are the errors:
`---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[4], line 4
1 import sys, os
2 sys.path.append(os.path.abspath(".."))
----> 4 from ukb_exomes import *
5 from ukbb_common import *
File../ukb_exomes/init.py:1
----> 1 from ukb_exomes.resources import *
2 from ukb_exomes.utils import *
File../ukb_exomes/resources/init.py:2
1 from .generic import *
----> 2 from .genotypes import *
3 from .phenotypes import *
4 from .results import *
File ../ukb_exomes/resources/genotypes.py:1
----> 1 import ukbb_qc.resources as ukb
2 import ukbb_qc.utils.utils as ukb_utils
3 from gnomad.utils.sparse_mt import *
ModuleNotFoundError: No module named 'ukbb_qc.resources'`
I want to load the 'gs://ukbb-exome-public/500k/results/results.mt' data. Is there any way to fix this? Thank you!