diff --git a/src/genomic_features/ensembl/ensembldb.py b/src/genomic_features/ensembl/ensembldb.py index 93bc8ae..df04047 100644 --- a/src/genomic_features/ensembl/ensembldb.py +++ b/src/genomic_features/ensembl/ensembldb.py @@ -19,9 +19,7 @@ PKG_CACHE_DIR = "genomic-features" -BIOC_ANNOTATION_HUB_URL = ( - "https://bioconductorhubs.blob.core.windows.net/annotationhub" -) +BIOC_ANNOTATION_HUB_URL = "https://bioconductorhubs.blob.core.windows.net/annotationhub" ANNOTATION_HUB_URL = ( "https://annotationhub.bioconductor.org/metadata/annotationhub.sqlite3" ) @@ -53,7 +51,7 @@ def annotation( """ try: sqlite_file_path = retrieve_annotation( - f'{BIOC_ANNOTATION_HUB_URL}/AHEnsDbs/v{version}/EnsDb.{species}.v{version}.sqlite' + f"{BIOC_ANNOTATION_HUB_URL}/AHEnsDbs/v{version}/EnsDb.{species}.v{version}.sqlite" ) if backend == "sqlite":