Skip to content

Commit b2ad729

Browse files
committed
fill in ruff stuff
1 parent 6d93d1f commit b2ad729

File tree

6 files changed

+20
-0
lines changed

6 files changed

+20
-0
lines changed

src/vlm/anyvar/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Provide client to interact with an AnyVar instance."""

src/vlm/functions/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Provide actions to be performed by the orchestration layer, interacting with services to assemble data response."""

src/vlm/functions/ingest_vcf.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""Get a VCF, register its contained variants, and add cohort frequency data"""
2+
3+
from pathlib import Path
4+
5+
6+
def ingest_vcf(vcf_path: Path) -> None:
7+
"""Extract variant and frequency information from a single gVCF
8+
9+
For now, we assume they're available under consistently-named INFO fields. In the
10+
future, we could enable custom field names, incrementing on top of existing counts,
11+
etc.
12+
13+
:param vcf_path: location of input file
14+
"""
15+
raise NotImplementedError

src/vlm/restapi/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Provide modules for REST API service."""

src/vlm/schemas/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Provide models/validation for data exchange."""

src/vlm/schemas/vlm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Schemas relating to VLM API."""

0 commit comments

Comments
 (0)