Package picard.fingerprint
Class FingerprintMetrics
- java.lang.Object
-
- htsjdk.samtools.metrics.MetricBase
-
- picard.fingerprint.FingerprintMetrics
-
public class FingerprintMetrics extends htsjdk.samtools.metrics.MetricBaseClass for holding metrics on a single fingerprint. Note: this is distinct fromFingerprintingDetailMetricsandFingerprintingSummaryMetricsin that it is calculated on a single fingerprint, and attempts to describe how likely that fingerprint is to have arisen from an actual sample as opposed to having artifacts such as contamination, or strong bias towards homozygous genotypes. Several tests use "expected" genotype distribution based on the allele frequency stored in the haplotype-database file that is used, and assuming Hardy-Weinberg equilibrium. Please see the FingerprintMetrics definitions http://broadinstitute.github.io/picard/picard-metric-definitions.html#FingerprintMetrics " + for a complete description of the metrics produced by this tool.
-
-
Field Summary
Fields Modifier and Type Field Description doubleCHI_SQUARED_PVALUEThe Chi-squared pvalue of the observed counts vector relative to the expected counts, (3x2 table)doubleCROSS_ENTROPY_LODThe categorical cross entropy of the counts of genotypes relative to expected (big is bad)longDEFINITE_GENOTYPESNumber of haplotypes that had enough evidence to make a definite genotype call (genotype LOD > ThresholddoubleDISCRIMINATORY_POWERThe difference in fingerprinting LOD between LOD_SELF_CHECK and the LOD score found when fingerprinting it against a random permutation of the probablity vectors (PLs) in each of the haplotypes.doubleEXPECTED_HETExpected number of heterozygous callsdoubleEXPECTED_HOM_ALLELE1Expected number of major allele homozygous callsdoubleEXPECTED_HOM_ALLELE2Expected number of major allele homozygous callslongHAPLOTYPESNumber of haplotypes examinedlongHAPLOTYPES_WITH_EVIDENCENumber of haplotypes that had evidence in the source filedoubleHET_CHI_SQUARED_PVALUEThe Chi-squared pvalue for the number of HETs and HOMs relative to the expected counts (2x2 table)doubleHET_CROSS_ENTROPY_LODThe categorical cross entropy of the counts of HETs and HOMs relative to the expected counts (big is bad)doubleHOM_CHI_SQUARED_PVALUEThe Chi-squared pvalue forNUM_HOM_ALLELE1andNUM_HOM_ALLELE2relative to the expected counts (2x2 table)doubleHOM_CROSS_ENTROPY_LODThe categorical cross entropy ofNUM_HOM_ALLELE1andNUM_HOM_ALLELE2relative to the expected counts (big is bad)StringINFOAdditional information about the fingerprintdoubleLOD_SELF_CHECKThe fingerprinting LOD score this sample gets when compared to itself (big is good)doubleLOG10_CHI_SQUARED_PVALUEThe log10 of the Chi-squared pvaluedoubleLOG10_HET_CHI_SQUARED_PVALUEThe log10 of the Chi-squared pvalue for the number of HETs and HOMsdoubleLOG10_HOM_CHI_SQUARED_PVALUEThe log10 of the Chi-squared pvalue forNUM_HOM_ALLELE1andNUM_HOM_ALLELE2longNUM_HETNumber of heterozygous callslongNUM_HOM_ALLELE1Number of major allele homozygous callslongNUM_HOM_ALLELE2Number of minor allele homozygous callslongNUM_HOM_ANYNumber of homozygous calls of either allele (might not be the sum ofNUM_HOM_ALLELE1andNUM_HOM_ALLELE1due to roundingStringSAMPLE_ALIASThe Sample alias taken from RG header or #CHROME lineStringSOURCEThe originating file (if available) for this fingerprint
-
Constructor Summary
Constructors Constructor Description FingerprintMetrics()
-
-
-
Field Detail
-
SAMPLE_ALIAS
public String SAMPLE_ALIAS
The Sample alias taken from RG header or #CHROME line
-
SOURCE
public String SOURCE
The originating file (if available) for this fingerprint
-
INFO
public String INFO
Additional information about the fingerprint
-
HAPLOTYPES
public long HAPLOTYPES
Number of haplotypes examined
-
HAPLOTYPES_WITH_EVIDENCE
public long HAPLOTYPES_WITH_EVIDENCE
Number of haplotypes that had evidence in the source file
-
DEFINITE_GENOTYPES
public long DEFINITE_GENOTYPES
Number of haplotypes that had enough evidence to make a definite genotype call (genotype LOD > Threshold
-
NUM_HOM_ALLELE1
public long NUM_HOM_ALLELE1
Number of major allele homozygous calls
-
NUM_HOM_ALLELE2
public long NUM_HOM_ALLELE2
Number of minor allele homozygous calls
-
NUM_HOM_ANY
public long NUM_HOM_ANY
Number of homozygous calls of either allele (might not be the sum ofNUM_HOM_ALLELE1andNUM_HOM_ALLELE1due to rounding
-
NUM_HET
public long NUM_HET
Number of heterozygous calls
-
EXPECTED_HOM_ALLELE1
public double EXPECTED_HOM_ALLELE1
Expected number of major allele homozygous calls
-
EXPECTED_HOM_ALLELE2
public double EXPECTED_HOM_ALLELE2
Expected number of major allele homozygous calls
-
EXPECTED_HET
public double EXPECTED_HET
Expected number of heterozygous calls
-
CHI_SQUARED_PVALUE
public double CHI_SQUARED_PVALUE
The Chi-squared pvalue of the observed counts vector relative to the expected counts, (3x2 table)
-
LOG10_CHI_SQUARED_PVALUE
public double LOG10_CHI_SQUARED_PVALUE
The log10 of the Chi-squared pvalue
-
CROSS_ENTROPY_LOD
public double CROSS_ENTROPY_LOD
The categorical cross entropy of the counts of genotypes relative to expected (big is bad)
-
HET_CHI_SQUARED_PVALUE
public double HET_CHI_SQUARED_PVALUE
The Chi-squared pvalue for the number of HETs and HOMs relative to the expected counts (2x2 table)
-
LOG10_HET_CHI_SQUARED_PVALUE
public double LOG10_HET_CHI_SQUARED_PVALUE
The log10 of the Chi-squared pvalue for the number of HETs and HOMs
-
HET_CROSS_ENTROPY_LOD
public double HET_CROSS_ENTROPY_LOD
The categorical cross entropy of the counts of HETs and HOMs relative to the expected counts (big is bad)
-
HOM_CHI_SQUARED_PVALUE
public double HOM_CHI_SQUARED_PVALUE
The Chi-squared pvalue forNUM_HOM_ALLELE1andNUM_HOM_ALLELE2relative to the expected counts (2x2 table)
-
LOG10_HOM_CHI_SQUARED_PVALUE
public double LOG10_HOM_CHI_SQUARED_PVALUE
The log10 of the Chi-squared pvalue forNUM_HOM_ALLELE1andNUM_HOM_ALLELE2
-
HOM_CROSS_ENTROPY_LOD
public double HOM_CROSS_ENTROPY_LOD
The categorical cross entropy ofNUM_HOM_ALLELE1andNUM_HOM_ALLELE2relative to the expected counts (big is bad)
-
LOD_SELF_CHECK
public double LOD_SELF_CHECK
The fingerprinting LOD score this sample gets when compared to itself (big is good)
-
DISCRIMINATORY_POWER
public double DISCRIMINATORY_POWER
The difference in fingerprinting LOD between LOD_SELF_CHECK and the LOD score found when fingerprinting it against a random permutation of the probablity vectors (PLs) in each of the haplotypes. (big is good.)
-
-