Agent skill · Data & Analytics

tiledbvcf

Efficient storage and retrieval of genomic variant data using TileDB. Scalable VCF/BCF ingestion, incremental sample addition, compressed storage, parallel queries, and export capabilities for population genomics.

K-Dense-AIgithub.com/K-Dense-AIGitHub ↗
claude-codeMIT
Install
npx skills add K-Dense-AI/scientific-agent-skills --skill tiledbvcf --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 14 KB
Bundled scripts: none
Version: 1.1
Path: skills/tiledbvcf/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 32,619
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# TileDB-VCF ## Overview TileDB-VCF is a high-performance C++ library with Python and CLI interfaces for efficient storage and retrieval of genomic variant-call data. Built on TileDB's sparse array technology, it enables scalable ingestion of VCF/BCF files, incremental sample addition without expensive merging operations, and efficient parallel queries of variant data stored locally or in the cloud. ## When to Use This Skill This skill should be used when: - Learning TileDB-VCF concepts and workflows - Prototyping genomics analyses and pipelines - Working with small-to-medium datasets (< 1000 samples) - Need incremental addition of new samples to existing datasets - Require efficient querying of specific genomic regions across many samples - Working with cloud-stored variant data (S3, Azure, GCS) - Need to export subsets of large VCF datasets - Building variant databases for cohort studies - Educational projects and method development - Performance is critical for variant data operations ## Quick Start ### Installation **Preferred Method: Conda/Mamba** ```bash # Enter the following two lines if you are on a M1 Mac CONDA_SUBDIR=osx-64 conda config --env --set subdir osx-64 # Create

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Quick Start
  4. Installation
  5. Basic Examples
  6. Core Capabilities
  7. 1. Dataset Creation and Ingestion
  8. 2. Efficient Querying and Filtering
  9. 3. Data Export and Interoperability
  10. 4. Population Genomics Workflows
  11. Key Concepts
  12. Array Schema and Data Model
  13. Coordinate Systems and Regions
  14. Memory Management
Commands it runs
Enter the following two lines if you are on a M1 Mac
conda config --env --set subdir osx-64
Create the conda environment
conda create -n tiledb-vcf "python<3.10"
conda activate tiledb-vcf
Mamba is a faster and more reliable alternative to conda
conda install -c conda-forge mamba
Install TileDB-Py and TileDB-VCF, align with other useful libraries
mamba install -y -c conda-forge -c bioconda -c tiledb tiledb-py tiledbvcf-py pandas pyarrow numpy
docker pull tiledb/tiledbvcf-py     # Python interface
More from scientific-agent-skills
All skills →
About this skill
What does the tiledbvcf skill do?

Efficient storage and retrieval of genomic variant data using TileDB. Scalable VCF/BCF ingestion, incremental sample addition, compressed storage, parallel queries, and export capabilities for population genomics.

How do I install it?

Run `npx skills add K-Dense-AI/scientific-agent-skills --skill tiledbvcf --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From K-Dense-AI/scientific-agent-skills, a repository with 32,619 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going