Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3232528
Added Status enum
alancleary Jun 12, 2025
7cdd794
Updated how VCF ingestion uses the manifest array
alancleary Jun 13, 2025
ae3d84b
Removed resume TODO comment
alancleary Jun 16, 2025
1cdbb78
Code formatting
alancleary Jun 16, 2025
04b1832
Updated VCF ingest log messages to be more structured
alancleary Jun 20, 2025
3977139
Merge branch 'main' into alancleary/vcf-12/ingestion-failure-handling
alancleary Jun 23, 2025
5d4884a
Added __str__() special method to VCF Status enum
alancleary Jun 23, 2025
50f41bd
Merge branch 'main' into alancleary/vcf-12/ingestion-failure-handling
alancleary Jul 1, 2025
320d028
Added wait parameter to ingest_vcf
alancleary Jul 3, 2025
00d1f88
Added ingest_vcf to vcf module export
alancleary Jul 3, 2025
9b52073
Added base class for testing VCF ingestion
alancleary Jul 3, 2025
377bb0c
Added class for testing VCF ingestion via search URI
alancleary Jul 3, 2025
5950f58
Added class for testing VCF ingestion via a sample list
alancleary Jul 14, 2025
a1869d4
Added class for testing VCF ingestion via a metadata array
alancleary Jul 14, 2025
50f5faf
Moved common VCF ingestion tests into a separate class from the base …
alancleary Jul 14, 2025
eff4d97
Minor code formatting revisions in VCF ingestion common tests
alancleary Jul 14, 2025
7831b58
Added class for testing resuming failed VCF ingestions
alancleary Jul 14, 2025
6ad2aa1
Disabled all VCF ingestion tests
alancleary Jul 14, 2025
9a7f936
Moved tiledbvcf import into the single test case that uses it
alancleary Jul 14, 2025
c8492d7
Merge branch 'main' into alancleary/vcf-12/ingestion-failure-handling
alancleary Oct 28, 2025
23c46e3
Merge branch 'alancleary/vcf-12/ingestion-failure-handling' into alan…
alancleary Oct 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/tiledb/cloud/vcf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from .ingestion import create_dataset_udf as create_dataset
from .ingestion import ingest
from .ingestion import ingest_annotations
from .ingestion import ingest_vcf
from .ingestion import register_dataset_udf as register_dataset
from .query import build_read_dag
from .query import read
Expand All @@ -21,6 +22,7 @@
"create_dataset",
"ingest",
"ingest_annotations",
"ingest_vcf",
"register_dataset",
"build_read_dag",
"read",
Expand Down
Loading
Loading