pub enum Key {
Show 24 variants
ReadDepths,
ForwardStrandReadDepths,
ReverseStrandReadDepths,
ReadDepth,
ExpectedAlternateAlleleCounts,
Filter,
GenotypeLikelihoods,
GenotypePosteriorProbabilities,
ConditionalGenotypeQuality,
Genotype,
HaplotypeQuality,
MappingQuality,
RoundedGenotypeLikelihoods,
RoundedGenotypePosteriorProbabilities,
PhasingQuality,
PhaseSet,
GenotypeCopyNumber,
GenotypeCopyNumberQuality,
GenotypeCopyNumberLikelihoods,
GenotypeCopyNumberPosteriorProbabilities,
NovelVariantQualityScore,
HaplotypeId,
AncestralHaplotypeId,
Other(String),
}
Expand description
A VCF header format key.
Variants
ReadDepths
Read depth for each allele (AD
).
ForwardStrandReadDepths
Read depth for each allele on the forward strand (ADF
).
ReverseStrandReadDepths
Read depth for each allele on the reverse strand (ADR
).
ReadDepth
Read depth (DP
).
ExpectedAlternateAlleleCounts
Expected alternate allele counts (EC
).
Filter
Filter indicating if this genotype was “called” (FT
).
GenotypeLikelihoods
Genotype likelihoods (GL
).
GenotypePosteriorProbabilities
Genotype posterior probabilities (GP
).
ConditionalGenotypeQuality
Conditional genotype quality (GQ
).
Genotype
Genotype (GT
).
HaplotypeQuality
Haplotype quality (HQ
).
MappingQuality
RMS mapping quality (MQ
).
RoundedGenotypeLikelihoods
Phred-scaled genotype likelihoods rounded to the closest integer (PL
).
RoundedGenotypePosteriorProbabilities
Phred-scaled genotype posterior probabilities rounded to the closest integer (PP
).
PhasingQuality
Phasing quality (PQ
).
PhaseSet
Phase set (PS
).
GenotypeCopyNumber
Copy number genotype for imprecise events (CN
).
GenotypeCopyNumberQuality
Copy number genotype quality for imprecise events (CNQ
).
GenotypeCopyNumberLikelihoods
Copy number genotype likelihood for imprecise events (CNL
).
GenotypeCopyNumberPosteriorProbabilities
Copy number posterior probabilities (CNP
).
NovelVariantQualityScore
Phred style probability score that the variant is novel (NQ
).
HaplotypeId
Unique haplotype identifier (HAP
).
AncestralHaplotypeId
Unique identifier of ancestral haplotype (AHAP
).
Other(String)
Any other non-reserved key.
Trait Implementations
impl Eq for Key
impl StructuralEq for Key
impl StructuralPartialEq for Key
Auto Trait Implementations
impl RefUnwindSafe for Key
impl Send for Key
impl Sync for Key
impl Unpin for Key
impl UnwindSafe for Key
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more