Hi all,
I know that this topic has been raised already several times but I am still facing the issue in the title.
I am interested in reading the files from the gnomAD project.
Hail version:
pip show hail
Name: hail
Version: 0.2.130
Summary: Scalable library for exploring and analyzing genomic data.
Home-page: https://hail.is
Author: Hail Team
Author-email: hail@broadinstitute.org
License:
Location: /home/aih/antonio.nappi/miniconda3/envs/pytorch113/lib/python3.10/site-packages
Requires: aiodns, aiohttp, avro, azure-identity, azure-mgmt-storage, azure-storage-blob, bokeh, boto3, botocore, decorator, Deprecated, dill, frozenlist, google-auth, google-auth-oauthlib, humanize, janus, jproperties, nest-asyncio, numpy, orjson, pandas, parsimonious, plotly, pyspark, python-json-logger, pyyaml, requests, rich, scipy, sortedcontainers, tabulate, typer, uvloop
command that I am executing:
import hail as hl
mt = hl.read_matrix_table(
'gs://gcp-public-data--gnomad/release/4.1/ht/exomes/gnomad.exomes.v4.1.sites.ht'
)
mt = mt.head(100_000)
sites = mt.collect()
I get the following error
Hail version: 0.2.130-bea04d9c79b5
Error summary: UnsupportedFileSystemException: No FileSystem for scheme "gs"
I have installed hail into a singularity container, maybe this is the problem?