# vcftools を Homebrew, apt, dnf, MacPorts, Nix でインストール

vcftools のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:vcftools
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install vcftools
```

  証拠: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install vcftools
```

  証拠: MacPorts ports tree: science/vcftools/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- Debian apt (92%):

```sh
sudo apt install vcftools
```

  証拠: Debian stable package indexes: vcftools from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install vcftools
```

  証拠: Fedora Rawhide package metadata: vcftools from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#vcftools
```

  証拠: nixpkgs package indexes: pkgs/by-name/vc/vcftools/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

## パッケージ情報

- **パッケージキー:** brew:vcftools
- **パッケージマネージャ:** Homebrew
- **バージョン:** 0.1.17
- **ソース概要:** Tools for working with VCF files
- **ホームページ:** <https://vcftools.github.io/>
- **リポジトリ:** <https://github.com/vcftools/vcftools>
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- fill-aa (エイリアス)
- fill-an-ac (エイリアス)
- fill-fs (エイリアス)
- fill-ref-md5 (エイリアス)
- vcf-annotate (エイリアス)
- vcf-compare (エイリアス)
- vcf-concat (エイリアス)
- vcf-consensus (エイリアス)
- vcf-contrast (エイリアス)
- vcf-convert (エイリアス)
- vcf-fix-newlines (エイリアス)
- vcf-fix-ploidy (エイリアス)
- vcf-indel-stats (エイリアス)
- vcf-isec (エイリアス)
- vcf-merge (エイリアス)
- vcf-phased-join (エイリアス)
- vcf-query (エイリアス)
- vcf-shuffle-cols (エイリアス)
- vcf-sort (エイリアス)
- vcf-stats (エイリアス)
- vcf-subset (エイリアス)
- vcf-to-tab (エイリアス)
- vcf-tstv (エイリアス)
- vcf-validator (エイリアス)
- vcftools (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 0.1.17
## プロジェクトの歴史と使われ方

VCFtools is the classic command-line suite and Perl API for working with Variant Call Format files. Its history is inseparable from the standardization of VCF itself: the 2011 Bioinformatics paper introduced the format and the toolkit together in the context of the 1000 Genomes Project.

### プロジェクトの歴史

Danecek and collaborators published "The variant call format and VCFtools" in Bioinformatics in 2011. The paper describes VCF as a format for SNPs, insertions, deletions, structural variants, rich annotations, compression, and indexed retrieval, and states that it was developed for the 1000 Genomes Project.

The original VCFtools site describes the project as a package for VCF files such as those generated by the 1000 Genomes Project. It consists of a Perl module for manipulating VCF files and a binary executable for general analysis routines.

### 採用の歴史

The 2011 paper records early adoption beyond 1000 Genomes, including UK10K, dbSNP, and the NHLBI Exome Project. That early institutional adoption made VCFtools one of the first practical command-line entry points for a format that later became routine in sequencing workflows.

The SourceForge-era project moved to GitHub in July 2015, according to the old project homepage. GitHub releases show an initial GitHub release in August 2015, later v0.1.14, v0.1.15, v0.1.16, and a v0.1.17 release in May 2025, showing long-tail maintenance of a mature tool.

### 使われ方

VCFtools is used to filter variants, compare VCF files, summarize variant sets, convert formats, validate files, merge records, and create intersections or subsets. Its command set includes both the main `vcftools` binary and legacy Perl utilities such as `vcf-annotate`, `vcf-merge`, `vcf-query`, and `vcf-validator`.

In practice, it is often used for cohort-level filtering and summary statistics: missingness thresholds, allele-frequency filters, site and genotype quality filters, sample subsets, recoding, and quick sanity checks before or after more specialized tools.

### パッケージ好きにとっての重要性

VCFtools is package-nerd significant because it is one of the canonical packages that made VCF a usable Unix file format, not just a paper specification. It gave users validators, filters, mergers, converters, and a Perl API at the moment large sequencing projects needed reproducible file handling.

Even when newer tools such as bcftools, vcflib, cyvcf2, and specialized annotators are preferred for particular tasks, VCFtools remains a recognizable baseline package in bioinformatics environments and container images.

### タイムライン

- 2011-06-07: The VCFtools paper appears online ahead of print.
- 2011-08-01: The VCFtools paper is published in Bioinformatics volume 27, issue 15.
- 2015-07: The VCFtools project moves from SourceForge to GitHub.
- 2015-08-03: v0.1.13 is published as the initial GitHub release.
- 2025-05-15: v0.1.17 is published on GitHub.

### Related projects

- The 1000 Genomes Project is the original project context for VCF and VCFtools.
- HTSlib and bcftools are closely related tools for modern VCF/BCF processing.
- vcflib, VcfPythonUtils, and vcfCTools are listed by VCFtools as useful related VCF projects.
- GATK is listed by VCFtools as another source and manipulator of VCF files.

### ソース

- <https://api.github.com/repos/vcftools/vcftools/releases>
- <https://pubmed.ncbi.nlm.nih.gov/21653522/>
- <https://vcftools.github.io/>
- <https://vcftools.github.io/links.html>
- <https://vcftools.sourceforge.net/>


## セキュリティノート

narrow executable package without higher-risk signals.

- **Geiger リスク:** グリーン / 低
- narrow executable package without higher-risk signals

## 他のパッケージマネージャ記録

- Debian apt - vcftools - 0.1.16-3+b1: normalized package name match | Debian stable package indexes: vcftools from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Collection of tools to work with VCF files | https://vcftools.github.io/
- Nix - vcftools: normalized package name match | nixpkgs package indexes: pkgs/by-name/vc/vcftools/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - vcftools - 0.1.16-3: normalized package name match | Ubuntu 24.04 LTS package indexes: vcftools from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Collection of tools to work with VCF files | https://vcftools.github.io/
- dnf - vcftools - 0.1.17-3.fc45: normalized package name match | Fedora Rawhide package metadata: vcftools from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | VCF file manipulation tools | https://vcftools.github.io/
- MacPorts - vcftools: normalized package name match | MacPorts ports tree: science/vcftools/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1


## Combined YAML source

View the package source record on GitHub. [combined/vcftools.yml](https://github.com/mxcl/pkgdb/blob/main/combined/vcftools.yml)


## ソース

- pkg.so package database
- Geiger risk classifier
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
