MolecularSequenceRoc constructor

const MolecularSequenceRoc({
  1. @JsonKey(name: 'id') FhirId? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. List<FhirInteger>? score,
  5. @JsonKey(name: '_score') List<Element?>? scoreElement,
  6. List<FhirInteger>? numTP,
  7. @JsonKey(name: '_numTP') List<Element?>? numTPElement,
  8. List<FhirInteger>? numFP,
  9. @JsonKey(name: '_numFP') List<Element?>? numFPElement,
  10. List<FhirInteger>? numFN,
  11. @JsonKey(name: '_numFN') List<Element?>? numFNElement,
  12. List<FhirDecimal>? precision,
  13. @JsonKey(name: '_precision') List<Element?>? precisionElement,
  14. List<FhirDecimal>? sensitivity,
  15. @JsonKey(name: '_sensitivity') List<Element?>? sensitivityElement,
  16. List<FhirDecimal>? fMeasure,
  17. @JsonKey(name: '_fMeasure') List<Element?>? fMeasureElement,
})

MolecularSequenceRoc Raw data describing a biological sequence.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

extension_ May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

modifierExtension May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions. Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).

score Invidual data point representing the GQ (genotype quality) score threshold.

scoreElement Extensions for score

numTP The number of true positives if the GQ score threshold was set to "score" field value.

numTPElement Extensions for numTP

numFP The number of false positives if the GQ score threshold was set to "score" field value.

numFPElement Extensions for numFP

numFN The number of false negatives if the GQ score threshold was set to "score" field value.

numFNElement Extensions for numFN

precision Calculated precision if the GQ score threshold was set to "score" field value.

precisionElement Extensions for precision

sensitivity Calculated sensitivity if the GQ score threshold was set to "score" field value.

sensitivityElement Extensions for sensitivity

fMeasure Calculated fScore if the GQ score threshold was set to "score" field value.

fMeasureElement Extensions for fMeasure

Implementation

const factory MolecularSequenceRoc({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  @JsonKey(name: 'id') FhirId? fhirId,

  /// [extension_] May be used to represent additional information that is not
  /// part of the basic definition of the element. To make the use of extensions
  /// safe and manageable, there is a strict set of governance  applied to the
  /// definition and use of extensions. Though any implementer can define an
  /// extension, there is a set of requirements that SHALL be met as part of the
  ///  definition of the extension.
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [modifierExtension] May be used to represent additional information that
  /// is not part of the basic definition of the element and that modifies the
  /// understanding of the element in which it is contained and/or the
  /// understanding of the containing element's descendants. Usually modifier
  /// elements provide negation or qualification. To make the use of extensions
  /// safe and manageable, there is a strict set of governance applied to the
  /// definition and use of extensions. Though any implementer can define an
  /// extension, there is a set of requirements that SHALL be met as part of the
  /// definition of the extension. Applications processing a resource are
  ///  required to check for modifier extensions.
  /// Modifier extensions SHALL NOT change the meaning of any elements on
  /// Resource or DomainResource (including cannot change the meaning of
  ///  modifierExtension itself).
  List<FhirExtension>? modifierExtension,

  /// [score] Invidual data point representing the GQ (genotype quality) score
  ///  threshold.
  List<FhirInteger>? score,

  /// [scoreElement] Extensions for score
  @JsonKey(name: '_score') List<Element?>? scoreElement,

  /// [numTP] The number of true positives if the GQ score threshold was set to
  ///  "score" field value.
  List<FhirInteger>? numTP,

  /// [numTPElement] Extensions for numTP
  @JsonKey(name: '_numTP') List<Element?>? numTPElement,

  /// [numFP] The number of false positives if the GQ score threshold was set
  ///  to "score" field value.
  List<FhirInteger>? numFP,

  /// [numFPElement] Extensions for numFP
  @JsonKey(name: '_numFP') List<Element?>? numFPElement,

  /// [numFN] The number of false negatives if the GQ score threshold was set
  ///  to "score" field value.
  List<FhirInteger>? numFN,

  /// [numFNElement] Extensions for numFN
  @JsonKey(name: '_numFN') List<Element?>? numFNElement,

  /// [precision] Calculated precision if the GQ score threshold was set to
  ///  "score" field value.
  List<FhirDecimal>? precision,

  /// [precisionElement] Extensions for precision
  @JsonKey(name: '_precision') List<Element?>? precisionElement,

  /// [sensitivity] Calculated sensitivity if the GQ score threshold was set to
  ///  "score" field value.
  List<FhirDecimal>? sensitivity,

  /// [sensitivityElement] Extensions for sensitivity
  @JsonKey(name: '_sensitivity') List<Element?>? sensitivityElement,

  /// [fMeasure] Calculated fScore if the GQ score threshold was set to "score"
  ///  field value.
  List<FhirDecimal>? fMeasure,

  /// [fMeasureElement] Extensions for fMeasure
  @JsonKey(name: '_fMeasure') List<Element?>? fMeasureElement,
}) = _MolecularSequenceRoc;