Class TSequenceQuality
Unit
bsFhir_stu3
Declaration
type TSequenceQuality = class(TBackboneElement)
Description
Raw data describing a biological sequence.
Hierarchy
Overview
Methods
Properties
Description
Methods
|
constructor Create; override; |
|
Properties
|
property type_ : string read Gettype_ write Settype_; |
INDEL / SNP / Undefined variant.
|
|
property type_Element : TqualityType read Gettype_Element write Settype_Element; |
|
|
property standardSequence : TCodeableConcept read GetstandardSequence write SetstandardSequence; |
Gold standard sequence used for comparing against.
|
|
property start : integer read Getstart write Setstart; |
Start position of the sequence. If the coordinate system is either 0-based or 1-based, then start position is inclusive.
|
|
property startElement : Tinteger read GetstartElement write SetstartElement; |
|
|
property end_ : integer read Getend_ write Setend_; |
End position of the sequence.If the coordinate system is 0-based then end is is exclusive and does not include the last position. If the coordinate system is 1-base, then end is inclusive and includes the last position.
|
|
property end_Element : Tinteger read Getend_Element write Setend_Element; |
|
|
property method : TCodeableConcept read Getmethod write Setmethod; |
Which method is used to get sequence quality.
|
|
property truthTP : Double read GettruthTP write SettruthTP; |
True positives, from the perspective of the truth data, i.e. the number of sites in the Truth Call Set for which there are paths through the Query Call Set that are consistent with all of the alleles at this site, and for which there is an accurate genotype call for the event.
|
|
property truthTPElement : Tdecimal read GettruthTPElement write SettruthTPElement; |
|
|
property queryTP : Double read GetqueryTP write SetqueryTP; |
True positives, from the perspective of the query data, i.e. the number of sites in the Query Call Set for which there are paths through the Truth Call Set that are consistent with all of the alleles at this site, and for which there is an accurate genotype call for the event.
|
|
property queryTPElement : Tdecimal read GetqueryTPElement write SetqueryTPElement; |
|
|
property truthFN : Double read GettruthFN write SettruthFN; |
False negatives, i.e. the number of sites in the Truth Call Set for which there is no path through the Query Call Set that is consistent with all of the alleles at this site, or sites for which there is an inaccurate genotype call for the event. Sites with correct variant but incorrect genotype are counted here.
|
|
property truthFNElement : Tdecimal read GettruthFNElement write SettruthFNElement; |
|
|
property queryFP : Double read GetqueryFP write SetqueryFP; |
False positives, i.e. the number of sites in the Query Call Set for which there is no path through the Truth Call Set that is consistent with this site. Sites with correct variant but incorrect genotype are counted here.
|
|
property queryFPElement : Tdecimal read GetqueryFPElement write SetqueryFPElement; |
|
|
property gtFP : Double read GetgtFP write SetgtFP; |
The number of false positives where the non-REF alleles in the Truth and Query Call Sets match (i.e. cases where the truth is 1/1 and the query is 0/1 or similar).
|
|
property gtFPElement : Tdecimal read GetgtFPElement write SetgtFPElement; |
|
|
property precision : Double read Getprecision write Setprecision; |
QUERY.TP / (QUERY.TP + QUERY.FP).
|
|
property precisionElement : Tdecimal read GetprecisionElement write SetprecisionElement; |
|
|
property recall : Double read Getrecall write Setrecall; |
TRUTH.TP / (TRUTH.TP + TRUTH.FN).
|
|
property recallElement : Tdecimal read GetrecallElement write SetrecallElement; |
|
|
property fScore : Double read GetfScore write SetfScore; |
Harmonic mean of Recall and Precision, computed as: 2 * precision * recall / (precision + recall).
|
|
property fScoreElement : Tdecimal read GetfScoreElement write SetfScoreElement; |
|
Generated by PasDoc 0.15.0.
|