[docs]classPhenotypeStorage:"""Class that manages phenotype data storage directories."""def__init__(self,storage_config:dict[str,Any]):self.config=storage_configself.storage_id=self.config["id"]self.base_dir=Path(self.config["base_dir"])
[docs]defbuild_phenotype_study(self,study_config:dict,browser_cache_path:Path|None,)->PhenotypeStudy:"""Create a phenotype study object from a configuration."""study_id=study_config["id"]study_storage_config=study_config.get("phenotype_storage")ifstudy_storage_configisnotNone:study_storage_id=study_storage_config["id"]ifstudy_storage_id!=self.storage_id:raiseValueError(f"Attempted to create phenotype study {study_id}"f"in storage {self.storage_id}; "f"study config requests "f"different storage {study_storage_id}",)dbfile:Pathifstudy_storage_configisNoneor"db"notinstudy_storage_config:dbfile=self.base_dir/f"{study_id}/{study_id}.db"else:filename=study_config["phenotype_storage"]["db"]dbfile=self.base_dir/filenameifnotdbfile.exists():raiseValueError(f"Cannot find pheno study dbfile {dbfile} for {study_id} "f"in phenotype storage {self.storage_id}",)returnPhenotypeStudy(study_id,str(dbfile),study_config,cache_path=browser_cache_path,)
[docs]classPhenotypeStorageRegistry:"""Class that manages phenotype storages."""def__init__(self)->None:self._phenotype_storages:dict[str,PhenotypeStorage]={}self._default_phenotype_storage:PhenotypeStorage|None=Nonedef__contains__(self,key:str)->bool:returnkeyinself._phenotype_storages
[docs]defregister_storage_config(self,storage_config:dict[str,Any])->PhenotypeStorage:"""Create a phenotype storage using storage config and registers it."""returnself.register_phenotype_storage(PhenotypeStorage.from_config(storage_config),)
[docs]defregister_phenotype_storage(self,storage:PhenotypeStorage)->PhenotypeStorage:"""Register a phenotype storage instance."""storage_id=storage.storage_idself._phenotype_storages[storage_id]=storagereturnstorage
[docs]defregister_default_storage(self,phenotype_storage:PhenotypeStorage)->None:"""Register a phenotype storage and make it the default storage."""self.register_phenotype_storage(phenotype_storage)self._default_phenotype_storage=phenotype_storage
[docs]defget_default_phenotype_storage(self)->PhenotypeStorage:"""Return the default phenotype storage if one is defined. Otherwise, return None. """ifself._default_phenotype_storageisNone:raiseValueError("default phenotype storage not set")returnself._default_phenotype_storage
[docs]defget_phenotype_storage(self,storage_id:str)->PhenotypeStorage:"""Return phenotype storage with specified storage_id. If the method can not find storage with the specified ID, it will raise ValueError exception. """ifstorage_idnotinself._phenotype_storages:raiseValueError(f"unknown storage id: <{storage_id}>")returnself._phenotype_storages[storage_id]
[docs]defget_all_phenotype_storage_ids(self)->list[str]:"""Return list of all registered phenotype storage IDs."""returnlist(self._phenotype_storages.keys())
[docs]defget_all_phenotype_storages(self)->list[PhenotypeStorage]:"""Return list of registered phenotype storages."""returnlist(self._phenotype_storages.values())
[docs]defregister_storages_configs(self,phenotype_storages_config:dict[str,Any])->None:"""Create and register all phenotype storages defined in config. When defining a GPF instance, we specify a `phenotype_storage` section in the configuration. If you pass this whole configuration section to this method, it will create and register all phenotype storages defined in that configuration section. """forstorage_configinphenotype_storages_config["storages"]:self.register_storage_config(storage_config)default_storage_id=phenotype_storages_config.get("default")ifdefault_storage_idisnotNone:storage=self.get_phenotype_storage(default_storage_id)self.register_default_storage(storage)
[docs]defshutdown(self)->None:forstorage_id,storageinself._phenotype_storages.items():logger.info("shutting down phenotype storage %s",storage_id)storage.shutdown()