David Poznik
23andMe
October, 2016
yHaplo identifies the Y-chromosome haplogroup of each male in a sample of one to millions. It does not rely on any particular genotyping modality or platform, and it is robust to missing data, genotype errors, mutation recurrence, and other complications. Although full sequences yield the most granular haplogroup classifications, genotyping arrays can yield reliable calls, provided a reasonable number of phylogenetically informative variants has been assayed.
Briefly, haplogroup calling involves two steps. The program first builds an internal representation of the Y-chromosome phylogeny by reading its primary structure from (Newick-formatted) text and importing phylogenetically informative SNPs from the ISOGG database, affiliating each SNP with the appropriate node and growing the tree as necessary. It then traverses the tree for each individual, identifying for each the path of derived alleles leading to a haplogroup designation.
yHaplo is available for non-commercial use pursuant to the terms of the non-exclusive
license agreement, LICENSE.txt
. To learn more about the algorithm, please see our
bioRxiv pre-print:
Poznik GD. 2016. Identifying Y-chromosome haplogroups in arbitrarily large samples
of sequenced or genotyped men. bioRxiv doi: 10.1101/088716
To learn more about the software, please see the manual, yHaplo.manual.<DATE>.pdf
.
And, for an overiew of command-line options, issue the following command: python -m yhaplo.callHaplogroups -h
Please note the following caveats before running yHaplo:
- yHaplo does not check for sex status; it assumes all samples are male.
- yHaplo expects SNP coordinates consistent with the hg19/GRCh37 reference assembly.
- yHaplo expects data at a reasonable number of ISOGG SNPs. This assumption is violated by:
- variants-only sequence data
- very low-coverage sequencing
- genotyping arrays with few Y-chromosome probes
If, for a given sample, yHaplo observes no derived alleles at ISOGG SNPs on the upper
branches of the Y-chromosome phylogeny, it will call the sample haplogroup "A,"
since all human Y-chromosome lineages are technically sublineages of A.
Before concluding that your sample belongs to paragroup A (which
includes haplogroups A00, A0, A1a, and A1b1), run with the -as
option, and check the
auxiliary output for ancestral alleles at haplogroup-BT SNPs. If you do not see any,
your data set probably violates one or more of the assumptions listed above.
In particular, "variants-only" VCF files restrict to SNPs at which alternative alleles
were observed, but ref/alt status is unimportant to yHaplo. What is important is
ancestral/derived status. The reference sequence contains many derived alleles,
and yHaplo will not be happy if you discard these valuable data. So please emit all
confident sites when calling variants. To limit compute time and file size, you could
safely restrict to positions in output/isogg.snps.unique.DATE.txt
, as these are the
only SNPs yHaplo considers. To generate this file, just run python -m yhaplo.callHaplogroups
with no arguments.
yHaplo is now compatible with both Python 2 and Python 3. Enabling Python 3 compatibility necessitated two changes that affect users:
- The Python package
six
is now a dependency. - The driver script must now be loaded as a module rather than as a top-level script.
Externally:python -m yhaplo.callHaplogroups
Internally:python -m ttam.yhaplo.callHaplogroups
input/
y.tree.primary.DATE.nwk
: primary structure of the Y-chromosome treeisogg.DATE.txt
: phylogenetically informative SNPs scraped directly from the ISOGG website. yHaplo resolves errors and formatting inconsistencies and emits cleaned versions (output/isogg.snps.cleaned.DATE.txt
andoutput/isogg.snps.unique.DATE.txt
; seeyHaplo.manual.<DATE>.pdf
for details).isogg.correct.*.txt
: corrections to ISOGG dataisogg.omit.*.txt
: SNPs to drop due to inconsistencies observed in test dataisogg.multiallelic.txt
: physical coordinates of multiallelic sites to be excludedrepresentative.SNPs.*.txt
: SNPs deemed representative of corresponding haplogroups
.genos.txt
: sample-major genotypes- row 1: physical coordinates
- column 1: individual IDs
- cell (i, j): genotype for individual i at position j, encoded as a single character from the set { A, C, G, T, . }, with "." representing an unobserved value
.resid.txt
: file with 23andMe research IDs in the first column.vcf
,.vcf.gz
: snp-major VCF file. Note that it is most efficient to restrict input VCF files to the Y chromosome..vcf4
: snp-major pseudo-VCF. differences include:- no "#" in header row
- fewer header columns
- GT values recorded as { A, C, G, T, . } rather than { 0, 1, . }
All output file formats are described in detail in yHaplo.manual.<DATE>.pdf
.
The two primary output files are:
log.projectName.txt
: log file containing details of the runhaplogroups.projectName.txt
: haplogroup calls. The 4 columns are:- ID
- Haplogroup short form, with the name of a SNP observed in the derived state
- Haplogroup short form, with the name of a representative SNP
- Haplogroup long form, using Y-Chromosome Consortium nomenclature
yHaplo also produces a number of SNP tables, tree files, and auxiliary output files.
Please see yHaplo.manual.<DATE>.pdf
and python -m yhaplo.callHaplogroups -h
for details.
callHaplogroups.py
Tree
: knows root, depth, haplogroup-to-node mappings, etc.; parses a Newick file to build primary tree; parses ISOGG table to add SNPs to nodes and grow tree; finds the derived path leading from the root to an individualNode
: element of the tree. knows parent, children, snps, etc. represents the branch that leads to itSNP
: knows position, ancestral and derived alleles, node, etc.PlatformSNP
: knows position and ablock indexSample
: knows genotypes and haplogroup of an individualCustomer
: (subclass of Sample) has 23andMe metadata and genotypes from ablocksPath
: path through a tree; stores the next node to visit, a list of SNPs observed in the derived state, the most derived SNP observed, and the number of ancestral alleles encounteredPage
: 23andMe content page labelsConfig
: container for parameters, command-line options, and filenames
utils.py
: shared utility functions
convert2genos.py
: converts data to.genos.txt
formatplotTree.py
: plots a newick tree