case class SampleBarcodeMetric(barcode_name: String = "", library_name: String = "", barcode: String = "", templates: Count = 0, pf_templates: Count = 0, perfect_matches: Count = 0, pf_perfect_matches: Count = 0, one_mismatch_matches: Count = 0, pf_one_mismatch_matches: Count = 0, fraction_matches: Proportion = 0d, ratio_this_barcode_to_best_barcode: Proportion = 0d, pf_fraction_matches: Proportion = 0d, pf_ratio_this_barcode_to_best_barcode: Proportion = 0d, pf_normalized_matches: Proportion = 0d) extends Metric with Product with Serializable

Metrics for matching templates to sample barcodes primarily used in com.fulcrumgenomics.fastq.DemuxFastqs.

The number of templates will match the number of reads for an Illumina single-end sequencing run, while the number of templates will be half the number of reads for an Illumina paired-end sequencing run (i.e. R1 & R2 observe the same template).

barcode_name

the name for the sample barcode, typically the sample name from the SampleSheet.

library_name

the name of the library, typically the library identifier from the SampleSheet.

barcode

the sample barcode bases. Dual index barcodes will have two sample barcode sequences delimited by a dash.

templates

the total number of templates matching the given barcode.

pf_templates

the total number of pass-filter templates matching the given barcode.

perfect_matches

the number of templates that match perfectly the given barcode.

pf_perfect_matches

the number of pass-filter templates that match perfectly the given barcode.

one_mismatch_matches

the number of pass-filter templates that match the given barcode with exactly one mismatch.

pf_one_mismatch_matches

the number of pass-filter templates that match the given barcode with exactly one mismatch.

fraction_matches

the fraction of all templates that match the given barcode.

ratio_this_barcode_to_best_barcode

the rate of all templates matching this barcode to all template reads matching the most prevalent barcode. For the most prevalent barcode this will be 1, for all others it will be less than 1 (except for the possible exception of when there are more unmatched templates than for any other barcode, in which case the value may be arbitrarily large). One over the lowest number in this column gives you the fold-difference in representation between barcodes.

pf_fraction_matches

the fraction of all pass-filter templates that match the given barcode.

pf_ratio_this_barcode_to_best_barcode

the rate of all pass-filter templates matching this barcode to all templates matching the most prevalent barcode. For the most prevalent barcode this will be 1, for all others it will be less than 1 (except for the possible exception of when there are more unmatched templates than for any other barcode, in which case the value may be arbitrarily large). One over the lowest number in this column gives you the fold-difference in representation between barcodes.

pf_normalized_matches

The "normalized" matches to each barcode. This is calculated as the number of pass-filter templates matching this barcode over the mean of all pass-filter templates matching any barcode (excluding unmatched). If all barcodes are represented equally this will be 1.

Linear Supertypes
Serializable, Serializable, Metric, Iterable[(String, String)], IterableLike[(String, String), Iterable[(String, String)]], GenIterable[(String, String)], GenIterableLike[(String, String), Iterable[(String, String)]], Traversable[(String, String)], GenTraversable[(String, String)], GenericTraversableTemplate[(String, String), Iterable], TraversableLike[(String, String), Iterable[(String, String)]], GenTraversableLike[(String, String), Iterable[(String, String)]], Parallelizable[(String, String), ParIterable[(String, String)]], TraversableOnce[(String, String)], GenTraversableOnce[(String, String)], FilterMonadic[(String, String), Iterable[(String, String)]], HasNewBuilder[(String, String), Iterable[(String, String)] @scala.annotation.unchecked.uncheckedVariance], Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SampleBarcodeMetric
  2. Serializable
  3. Serializable
  4. Metric
  5. Iterable
  6. IterableLike
  7. GenIterable
  8. GenIterableLike
  9. Traversable
  10. GenTraversable
  11. GenericTraversableTemplate
  12. TraversableLike
  13. GenTraversableLike
  14. Parallelizable
  15. TraversableOnce
  16. GenTraversableOnce
  17. FilterMonadic
  18. HasNewBuilder
  19. Product
  20. Equals
  21. AnyRef
  22. Any
Implicitly
  1. by MonadOps
  2. by CollectionsHaveToParArray
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  7. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SampleBarcodeMetric(barcode_name: String = "", library_name: String = "", barcode: String = "", templates: Count = 0, pf_templates: Count = 0, perfect_matches: Count = 0, pf_perfect_matches: Count = 0, one_mismatch_matches: Count = 0, pf_one_mismatch_matches: Count = 0, fraction_matches: Proportion = 0d, ratio_this_barcode_to_best_barcode: Proportion = 0d, pf_fraction_matches: Proportion = 0d, pf_ratio_this_barcode_to_best_barcode: Proportion = 0d, pf_normalized_matches: Proportion = 0d)

    barcode_name

    the name for the sample barcode, typically the sample name from the SampleSheet.

    library_name

    the name of the library, typically the library identifier from the SampleSheet.

    barcode

    the sample barcode bases. Dual index barcodes will have two sample barcode sequences delimited by a dash.

    templates

    the total number of templates matching the given barcode.

    pf_templates

    the total number of pass-filter templates matching the given barcode.

    perfect_matches

    the number of templates that match perfectly the given barcode.

    pf_perfect_matches

    the number of pass-filter templates that match perfectly the given barcode.

    one_mismatch_matches

    the number of pass-filter templates that match the given barcode with exactly one mismatch.

    pf_one_mismatch_matches

    the number of pass-filter templates that match the given barcode with exactly one mismatch.

    fraction_matches

    the fraction of all templates that match the given barcode.

    ratio_this_barcode_to_best_barcode

    the rate of all templates matching this barcode to all template reads matching the most prevalent barcode. For the most prevalent barcode this will be 1, for all others it will be less than 1 (except for the possible exception of when there are more unmatched templates than for any other barcode, in which case the value may be arbitrarily large). One over the lowest number in this column gives you the fold-difference in representation between barcodes.

    pf_fraction_matches

    the fraction of all pass-filter templates that match the given barcode.

    pf_ratio_this_barcode_to_best_barcode

    the rate of all pass-filter templates matching this barcode to all templates matching the most prevalent barcode. For the most prevalent barcode this will be 1, for all others it will be less than 1 (except for the possible exception of when there are more unmatched templates than for any other barcode, in which case the value may be arbitrarily large). One over the lowest number in this column gives you the fold-difference in representation between barcodes.

    pf_normalized_matches

    The "normalized" matches to each barcode. This is calculated as the number of pass-filter templates matching this barcode over the mean of all pass-filter templates matching any barcode (excluding unmatched). If all barcodes are represented equally this will be 1.

Type Members

  1. type Self = Iterable[(String, String)]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to any2stringadd[SampleBarcodeMetric] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: (String, String), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: (String, String), That](that: Traversable[B])(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike
  6. def ++:[B >: (String, String), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike
  7. def ->[B](y: B): (SampleBarcodeMetric, B)
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to ArrowAssoc[SampleBarcodeMetric] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. def /:[B](z: B)(op: (B, (String, String)) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  9. def :\[B](z: B)(op: ((String, String), B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  12. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  13. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  14. def aggregate[B](z: ⇒ B)(seqop: (B, (String, String)) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. def apply(name: String): String

    Gets the value of the field by name.

    Gets the value of the field by name.

    Definition Classes
    Metric
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. var barcode: String
  18. var barcode_name: String
  19. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  20. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. def collect[B, That](pf: PartialFunction[(String, String), B])(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  22. def collectFirst[B](pf: PartialFunction[(String, String), B]): Option[B]
    Definition Classes
    TraversableOnce
  23. def companion: GenericCompanion[Iterable]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  24. def copyToArray[B >: (String, String)](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  25. def copyToArray[B >: (String, String)](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def copyToArray[B >: (String, String)](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def copyToBuffer[B >: (String, String)](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  28. def count(p: ((String, String)) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def drop(n: Int): Iterable[(String, String)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  30. def dropRight(n: Int): Iterable[(String, String)]
    Definition Classes
    IterableLike
  31. def dropWhile(p: ((String, String)) ⇒ Boolean): Iterable[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  32. def ensuring(cond: (SampleBarcodeMetric) ⇒ Boolean, msg: ⇒ Any): SampleBarcodeMetric
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to Ensuring[SampleBarcodeMetric] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: (SampleBarcodeMetric) ⇒ Boolean): SampleBarcodeMetric
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to Ensuring[SampleBarcodeMetric] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean, msg: ⇒ Any): SampleBarcodeMetric
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to Ensuring[SampleBarcodeMetric] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: Boolean): SampleBarcodeMetric
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to Ensuring[SampleBarcodeMetric] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. def exists(p: ((String, String)) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  38. def filter(p: ((String, String)) ⇒ Boolean): Iterable[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterNot(p: ((String, String)) ⇒ Boolean): Iterable[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  41. def find(p: ((String, String)) ⇒ Boolean): Option[(String, String)]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def flatMap[B, That](f: ((String, String)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: ((String, String)) ⇒ GenTraversableOnce[B]): Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  44. def fold[A1 >: (String, String)](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, (String, String)) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: ((String, String), B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  47. def forall(p: ((String, String)) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def foreach[U](f: ((String, String)) ⇒ U): Unit
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  49. def formatValue(value: Any): String

    Override this method to customize how values are formatted.

    Override this method to customize how values are formatted.

    Attributes
    protected
    Definition Classes
    Metric
  50. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to StringFormat[SampleBarcodeMetric] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  51. var fraction_matches: Proportion
  52. def genericBuilder[B]: Builder[B, Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  53. def get(name: String): Option[String]

    Gets the value of the field by name, returns None if it does not exist.

    Gets the value of the field by name, returns None if it does not exist.

    Definition Classes
    Metric
  54. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  55. def groupBy[K](f: ((String, String)) ⇒ K): Map[K, Iterable[(String, String)]]
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def grouped(size: Int): Iterator[Iterable[(String, String)]]
    Definition Classes
    IterableLike
  57. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  58. def head: (String, String)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  59. def headOption: Option[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  60. def increment(numMismatches: Int, isPf: Boolean = true): Unit

    Increments the counts for the metric.

  61. def init: Iterable[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  62. def inits: Iterator[Iterable[(String, String)]]
    Definition Classes
    TraversableLike
  63. def isEmpty: Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  64. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  65. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  66. def iterator: Iterator[(String, String)]

    Gets an iterator over the fields of this metric in the order they were defined.

    Gets an iterator over the fields of this metric in the order they were defined. Returns tuples of names and values

    Definition Classes
    Metric → IterableLike → GenIterableLike
  67. def last: (String, String)
    Definition Classes
    TraversableLike → GenTraversableLike
  68. def lastOption: Option[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  69. var library_name: String
  70. def map[B, That](f: ((String, String)) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  71. def max[B >: (String, String)](implicit cmp: Ordering[B]): (String, String)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def maxBy[B](f: ((String, String)) ⇒ B)(implicit cmp: Ordering[B]): (String, String)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def min[B >: (String, String)](implicit cmp: Ordering[B]): (String, String)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def minBy[B](f: ((String, String)) ⇒ B)(implicit cmp: Ordering[B]): (String, String)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def names: Seq[String]

    Get the names of the arguments in the order they were defined.

    Get the names of the arguments in the order they were defined.

    Definition Classes
    Metric
  79. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  80. def newBuilder: Builder[(String, String), Iterable[(String, String)]]
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  81. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. final def notify(): Unit
    Definition Classes
    AnyRef
  83. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  84. var one_mismatch_matches: Count
  85. def par: ParIterable[(String, String)]
    Definition Classes
    Parallelizable
  86. def parCombiner: Combiner[(String, String), ParIterable[(String, String)]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  87. def partition(p: ((String, String)) ⇒ Boolean): (Iterable[(String, String)], Iterable[(String, String)])
    Definition Classes
    TraversableLike → GenTraversableLike
  88. var perfect_matches: Count
  89. var pf_fraction_matches: Proportion
  90. var pf_normalized_matches: Proportion
  91. var pf_one_mismatch_matches: Count
  92. var pf_perfect_matches: Count
  93. var pf_ratio_this_barcode_to_best_barcode: Proportion
  94. var pf_templates: Count
  95. def product[B >: (String, String)](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. var ratio_this_barcode_to_best_barcode: Proportion
  97. def reduce[A1 >: (String, String)](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def reduceLeft[B >: (String, String)](op: (B, (String, String)) ⇒ B): B
    Definition Classes
    TraversableOnce
  99. def reduceLeftOption[B >: (String, String)](op: (B, (String, String)) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def reduceOption[A1 >: (String, String)](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def reduceRight[B >: (String, String)](op: ((String, String), B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  102. def reduceRightOption[B >: (String, String)](op: ((String, String), B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. def repr: Iterable[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def reversed: List[(String, String)]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  105. def sameElements[B >: (String, String)](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  106. def scan[B >: (String, String), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def scanLeft[B, That](z: B)(op: (B, (String, String)) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  108. def scanRight[B, That](z: B)(op: ((String, String), B) ⇒ B)(implicit bf: CanBuildFrom[Iterable[(String, String)], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  109. def seq: Iterable[(String, String)]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  110. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  112. def slice(from: Int, until: Int): Iterable[(String, String)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  113. def sliding(size: Int, step: Int): Iterator[Iterable[(String, String)]]
    Definition Classes
    IterableLike
  114. def sliding(size: Int): Iterator[Iterable[(String, String)]]
    Definition Classes
    IterableLike
  115. def span(p: ((String, String)) ⇒ Boolean): (Iterable[(String, String)], Iterable[(String, String)])
    Definition Classes
    TraversableLike → GenTraversableLike
  116. def splitAt(n: Int): (Iterable[(String, String)], Iterable[(String, String)])
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  118. def sum[B >: (String, String)](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  120. def tail: Iterable[(String, String)]
    Definition Classes
    TraversableLike → GenTraversableLike
  121. def tails: Iterator[Iterable[(String, String)]]
    Definition Classes
    TraversableLike
  122. def take(n: Int): Iterable[(String, String)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  123. def takeRight(n: Int): Iterable[(String, String)]
    Definition Classes
    IterableLike
  124. def takeWhile(p: ((String, String)) ⇒ Boolean): Iterable[(String, String)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  125. var templates: Count
  126. def thisCollection: Iterable[(String, String)]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  127. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, String), Col[(String, String)]]): Col[(String, String)]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  128. def toArray[B >: (String, String)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toBuffer[B >: (String, String)]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def toCollection(repr: Iterable[(String, String)]): Iterable[(String, String)]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  131. def toIndexedSeq: IndexedSeq[(String, String)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def toIterable: Iterable[(String, String)]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  133. def toIterator: Iterator[(String, String)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  134. def toList: List[(String, String)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def toMap[T, U](implicit ev: <:<[(String, String), (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to CollectionsHaveToParArray[SampleBarcodeMetric, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (SampleBarcodeMetric) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  137. def toSeq: Seq[(String, String)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def toSet[B >: (String, String)]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  139. def toStream: Stream[(String, String)]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  140. def toString(): String
    Definition Classes
    Metric → TraversableLike → AnyRef → Any
  141. def toTraversable: Traversable[(String, String)]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  142. def toVector: Vector[(String, String)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. def transpose[B](implicit asTraversable: ((String, String)) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  144. def unzip[A1, A2](implicit asPair: ((String, String)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  145. def unzip3[A1, A2, A3](implicit asTriple: ((String, String)) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  146. def values: Seq[String]

    Get the values of the arguments in the order they were defined.

    Get the values of the arguments in the order they were defined.

    Definition Classes
    Metric
  147. def view(from: Int, until: Int): IterableView[(String, String), Iterable[(String, String)]]
    Definition Classes
    IterableLike → TraversableLike
  148. def view: IterableView[(String, String), Iterable[(String, String)]]
    Definition Classes
    IterableLike → TraversableLike
  149. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  150. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  151. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  152. def withFilter(p: ((String, String)) ⇒ Boolean): FilterMonadic[(String, String), Iterable[(String, String)]]
    Definition Classes
    TraversableLike → FilterMonadic
  153. def zip[A1 >: (String, String), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Iterable[(String, String)], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  154. def zipAll[B, A1 >: (String, String), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Iterable[(String, String)], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  155. def zipWithIndex[A1 >: (String, String), That](implicit bf: CanBuildFrom[Iterable[(String, String)], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  156. def [B](y: B): (SampleBarcodeMetric, B)
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to ArrowAssoc[SampleBarcodeMetric] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def filter(p: ((String, String)) ⇒ Boolean): TraversableOnce[(String, String)]
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to MonadOps[(String, String)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sampleBarcodeMetric: MonadOps[(String, String)]).filter(p)
    Definition Classes
    MonadOps
  2. def flatMap[B](f: ((String, String)) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to MonadOps[(String, String)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sampleBarcodeMetric: MonadOps[(String, String)]).flatMap(f)
    Definition Classes
    MonadOps
  3. def map[B](f: ((String, String)) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to MonadOps[(String, String)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sampleBarcodeMetric: MonadOps[(String, String)]).map(f)
    Definition Classes
    MonadOps
  4. def withFilter(p: ((String, String)) ⇒ Boolean): Iterator[(String, String)]
    Implicit
    This member is added by an implicit conversion from SampleBarcodeMetric to MonadOps[(String, String)] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sampleBarcodeMetric: MonadOps[(String, String)]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def formatValues(value: Any): String

    Attributes
    protected
    Definition Classes
    Metric
    Annotations
    @deprecated
    Deprecated

    (Since version 0.5.0) Use formatValue instead.

Inherited from Serializable

Inherited from Serializable

Inherited from Metric

Inherited from Iterable[(String, String)]

Inherited from IterableLike[(String, String), Iterable[(String, String)]]

Inherited from GenIterable[(String, String)]

Inherited from GenIterableLike[(String, String), Iterable[(String, String)]]

Inherited from Traversable[(String, String)]

Inherited from GenTraversable[(String, String)]

Inherited from GenericTraversableTemplate[(String, String), Iterable]

Inherited from TraversableLike[(String, String), Iterable[(String, String)]]

Inherited from GenTraversableLike[(String, String), Iterable[(String, String)]]

Inherited from Parallelizable[(String, String), ParIterable[(String, String)]]

Inherited from TraversableOnce[(String, String)]

Inherited from GenTraversableOnce[(String, String)]

Inherited from FilterMonadic[(String, String), Iterable[(String, String)]]

Inherited from HasNewBuilder[(String, String), Iterable[(String, String)] @scala.annotation.unchecked.uncheckedVariance]

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion MonadOps from SampleBarcodeMetric to MonadOps[(String, String)]

Inherited by implicit conversion CollectionsHaveToParArray from SampleBarcodeMetric to CollectionsHaveToParArray[SampleBarcodeMetric, T]

Inherited by implicit conversion any2stringadd from SampleBarcodeMetric to any2stringadd[SampleBarcodeMetric]

Inherited by implicit conversion StringFormat from SampleBarcodeMetric to StringFormat[SampleBarcodeMetric]

Inherited by implicit conversion Ensuring from SampleBarcodeMetric to Ensuring[SampleBarcodeMetric]

Inherited by implicit conversion ArrowAssoc from SampleBarcodeMetric to ArrowAssoc[SampleBarcodeMetric]

Inherited by implicit conversion alternateImplicit from SampleBarcodeMetric to ForceImplicitAmbiguity

Ungrouped