We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26176e commit 4cd055fCopy full SHA for 4cd055f
1 file changed
malariagen_data/anoph/genome_sequence.py
@@ -29,7 +29,6 @@ def __init__(
29
virtual_contigs = dict()
30
self._virtual_contigs = virtual_contigs
31
32
-
33
@property
34
def contigs(self) -> Tuple[str, ...]:
35
"""Contigs in the reference genome."""
@@ -62,7 +61,7 @@ def _genome_ref_name(self) -> str:
62
61
63
def open_genome(self) -> zarr.hierarchy.Group:
64
"""Open the reference genome zarr."""
65
- if not hasattr(self, '_cache_genome') or self._cache_genome is None:
+ if not hasattr(self, "_cache_genome") or self._cache_genome is None:
66
path = f"{self._base_path}/{self._genome_zarr_path}"
67
store = _init_zarr_store(fs=self._fs, path=path)
68
self._cache_genome = zarr.open_consolidated(store=store)
0 commit comments