Skip to content

Commit 3cab990

Browse files
update several 'vlm' instances that I missed
1 parent 48049a6 commit 3cab990

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @GenomicMedLab/vlm-in-a-box-maintainers
1+
* @GenomicMedLab/anyvlm-maintainers

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
SHELL:=/bin/bash -e -o pipefail
99
SELF:=$(firstword $(MAKEFILE_LIST))
1010

11-
PKG=vlm
11+
PKG=anyvlm
1212
PKGD=$(subst .,/,${PKG})
1313
PYV:=3.11
1414
VEDIR=venv/${PYV}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# VLM in a Box
1+
# AnyVLM

src/anyvlm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from importlib.metadata import PackageNotFoundError, version
44

55
try:
6-
__version__ = version("vlm")
6+
__version__ = version("anyvlm")
77
except PackageNotFoundError:
88
__version__ = "unknown"
99
finally:

src/anyvlm/anyvar/base_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Provide abstraction for a VLM-to-AnyVar connection."""
1+
"""Provide abstraction for a AnyVLM-to-AnyVar connection."""
22

33
import abc
44

src/anyvlm/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""CLI for interacting with VLM instance"""
1+
"""CLI for interacting with AnyVLM instance"""
22

33
import click
44

@@ -8,10 +8,10 @@
88
@click.version_option(anyvlm.__version__)
99
@click.group()
1010
def _cli() -> None:
11-
"""Manage VLM data."""
11+
"""Manage AnyVLM data."""
1212

1313

1414
@_cli.command()
1515
def 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

src/anyvlm/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def lifespan(app: FastAPI) -> AsyncGenerator:
4141

4242

4343
app = FastAPI(
44-
title="vlm",
44+
title="AnyVLM",
4545
description=SERVICE_DESCRIPTION,
4646
version=__version__,
4747
license={

src/anyvlm/schemas/common.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

3939
class 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

0 commit comments

Comments
 (0)