Official Posts

PhaseByTransmission

Computes the most likely genotype combination and phases trios and parent/child pairs

Category Variant Discovery Tools

Traversal LocusWalker

PartitionBy LOCUS


Overview

PhaseByTransmission is a GATK tool that 1) computes the most likely genotype combination and phases trios and parent/child pairs given their genotype likelihoods and a mutation prior and 2) phases all sites were parent/child transmission can be inferred unambiguously. It reports the genotype combination (and hence phasing) probability. Ambiguous sites are:

  • Sites where all individuals are heterozygous
  • Sites where there is a Mendelian violation
Missing genotypes are handled as follows:
  • In parent/child pairs: If an individual genotype is missing at one site, the other one is phased if it is homozygous. No phasing probability is emitted.
  • In trios: If the child is missing, parents are treated as separate individuals and phased if homozygous. No phasing probability is emitted.
  • In trios: If one of the parents is missing, it is handled like a parent/child pair. Phasing is done unless both the parent and child are heterozygous and a phasing probability is emitted.
  • In trios: If two individuals are missing, the remaining individual is phased if it is homozygous. No phasing probability is emitted.

Input

  • A VCF variant set containing trio(s) and/or parent/child pair(s).
  • A PED pedigree file containing the description of the individuals relationships.

Options

  • MendelianViolationsFile: An optional argument for reporting. If a file is specified, all sites that remain in mendelian violation after being assigned the most likely genotype combination will be reported there. Information reported: chromosome, position, filter, allele count in VCF, family, transmission probability, and each individual genotype, depth, allelic depth and likelihoods.
  • DeNovoPrior: Mutation prio; default is 1e-8

Output

An VCF with genotypes recalibrated as most likely under the familial constraint and phased by descent where non ambiguous..

Examples

 java -Xmx2g -jar GenomeAnalysisTK.jar \
   -R ref.fasta \
   -T PhaseByTransmission \
   -V input.vcf \
   -ped input.ped \
   -o output.vcf
 

Additional Information

Read filters

These Read Filters are automatically applied to the data by the Engine before processing by PhaseByTransmission.


Command-line Arguments

Inherited arguments

The arguments described in the entries below can be supplied to this tool to modify its behavior. For example, the -L argument directs the GATK engine restricts processing to specific genomic intervals (this is an Engine capability and is therefore available to all GATK walkers).

PhaseByTransmission specific arguments

This table summarizes the command-line arguments that are specific to this tool. For details, see the list further down below the table.

Name Type Default value Summary
Required
--variant RodBinding[VariantContext] NA Input VCF file
Optional
--DeNovoPrior double 1.0E-8 Prior for de novo mutations. Default: 1e-8
--FatherAlleleFirst boolean false Ouputs the father allele as the first allele in phased child genotype. i.e. father|mother rather than mother|father.
--MendelianViolationsFile PrintStream NA File to output the mendelian violation details.
--out VariantContextWriter stdout An output file created by the walker. Will overwrite contents if file exists

Argument details

Arguments in this list are specific to this tool. Keep in mind that other arguments are available that are shared with other tools (e.g. command-line GATK arguments); see Inherited arguments above.

--DeNovoPrior / -prior ( double with default value 1.0E-8 )

Prior for de novo mutations. Default: 1e-8.

--FatherAlleleFirst / -fatherAlleleFirst ( boolean with default value false )

Ouputs the father allele as the first allele in phased child genotype. i.e. father|mother rather than mother|father..

--MendelianViolationsFile / -mvf ( PrintStream )

File to output the mendelian violation details..

--out / -o ( VariantContextWriter with default value stdout )

An output file created by the walker. Will overwrite contents if file exists.

--variant / -V ( required RodBinding[VariantContext] )

Input VCF file. Variants from this VCF file are used by this tool as input. The file must at least contain the standard VCF header lines, but can be empty (i.e., no variants are contained in the file). --variant binds reference ordered data. This argument supports ROD files of the following types: BCF2, VCF, VCF3


See also Guide Index | Technical Documentation Index | Support Forum

GATK version 2.5-2-gdb4546e built at 2013/05/01 09:32:36.