File tree Expand file tree Collapse file tree 8 files changed +13
-13
lines changed
Expand file tree Collapse file tree 8 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1- * @ GenomicMedLab/vlm-in-a-box -maintainers
1+ * @ GenomicMedLab/anyvlm -maintainers
Original file line number Diff line number Diff line change 88SHELL: =/bin/bash -e -o pipefail
99SELF: =$(firstword $(MAKEFILE_LIST ) )
1010
11- PKG =vlm
11+ PKG =anyvlm
1212PKGD =$(subst .,/,${PKG})
1313PYV: =3.11
1414VEDIR =venv/${PYV}
Original file line number Diff line number Diff line change 1- # VLM in a Box
1+ # AnyVLM
Original file line number Diff line number Diff line change 33from importlib .metadata import PackageNotFoundError , version
44
55try :
6- __version__ = version ("vlm " )
6+ __version__ = version ("anyvlm " )
77except PackageNotFoundError :
88 __version__ = "unknown"
99finally :
Original file line number Diff line number Diff line change 1- """Provide abstraction for a VLM -to-AnyVar connection."""
1+ """Provide abstraction for a AnyVLM -to-AnyVar connection."""
22
33import abc
44
Original file line number Diff line number Diff line change 1- """CLI for interacting with VLM instance"""
1+ """CLI for interacting with AnyVLM instance"""
22
33import click
44
88@click .version_option (anyvlm .__version__ )
99@click .group ()
1010def _cli () -> None :
11- """Manage VLM data."""
11+ """Manage AnyVLM data."""
1212
1313
1414@_cli .command ()
1515def ingest_vcf () -> None :
16- """Deposit variants and allele frequencies from VCF into VLM instance"""
16+ """Deposit variants and allele frequencies from VCF into AnyVLM instance"""
1717 raise NotImplementedError
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ async def lifespan(app: FastAPI) -> AsyncGenerator:
4141
4242
4343app = FastAPI (
44- title = "vlm " ,
44+ title = "AnyVLM " ,
4545 description = SERVICE_DESCRIPTION ,
4646 version = __version__ ,
4747 license = {
Original file line number Diff line number Diff line change @@ -29,18 +29,18 @@ class ServiceType(BaseModel):
2929 """Define service_info response for type field"""
3030
3131 group : Literal ["org.biocommons" ] = "org.biocommons"
32- artifact : Literal ["VLM API" ] = "VLM API"
32+ artifact : Literal ["AnyVLM API" ] = "AnyVLM API"
3333 version : str = __version__
3434
3535
36- SERVICE_DESCRIPTION = "A VLM-In-A-Box instance"
36+ SERVICE_DESCRIPTION = "An AnyVLM instance"
3737
3838
3939class ServiceInfo (BaseModel ):
4040 """Define response structure for GA4GH /service_info endpoint."""
4141
42- id : Literal ["org.biocommons.vlm " ] = "org.biocommons.vlm "
43- name : Literal ["vlm " ] = "vlm "
42+ id : Literal ["org.biocommons.anyvlm " ] = "org.biocommons.anyvlm "
43+ name : Literal ["anyvlm " ] = "anyvlm "
4444 type : ServiceType
4545 description : str = SERVICE_DESCRIPTION
4646 organization : ServiceOrganization
You can’t perform that action at this time.
0 commit comments