Packages

object GroupedSegments

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GroupedSegments
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def fromReads(input: Dataset[NTSeq], method: CountMethod, normalize: Boolean, spl: Broadcast[AnyMinSplitter])(implicit spark: SparkSession): GroupedSegments

    Construct GroupedSegments from a set of reads/sequences

    Construct GroupedSegments from a set of reads/sequences

    input

    The raw sequence data

    method

    Counting method/pipeline type

    spl

    Splitter for breaking the sequences into super-mers

  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashSegments(input: NTSeq, splitter: AnyMinSplitter): Iterator[HashSegment]

    Construct HashSegments from a single read

    Construct HashSegments from a single read

    input

    The raw sequence

    splitter

    Splitter for breaking the sequences into super-mers

  13. def hashSegments(input: Dataset[NTSeq], spl: Broadcast[AnyMinSplitter])(implicit spark: SparkSession): Dataset[HashSegment]

    Construct HashSegments from a set of reads/sequences

    Construct HashSegments from a set of reads/sequences

    input

    The raw sequence data

    spl

    Splitter for breaking the sequences into super-mers

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def segmentsByHash(segments: DataFrame)(implicit spark: SparkSession): DataFrame

    Group segments by hash/minimizer, non-precounted This straightforward method is more efficient when supermers are not highly repeated in the data (low redundancy), or when the data is moderately sized.

    Group segments by hash/minimizer, non-precounted This straightforward method is more efficient when supermers are not highly repeated in the data (low redundancy), or when the data is moderately sized. The outputs are compatible with the method above.

    segments

    Supermers to group

  19. def segmentsByHashPregroup[S <: MinSplitter[MinimizerPriorities]](segments: DataFrame, addRC: Boolean, spl: Broadcast[S])(implicit spark: SparkSession): DataFrame

    Group segments by hash/minimizer, pre-grouping and counting identical supermers at an early stage, before assigning to buckets.

    Group segments by hash/minimizer, pre-grouping and counting identical supermers at an early stage, before assigning to buckets. This helps with high redundancy datasets and can greatly reduce the data volume that must be processed by later stages. However, it leads to one extra shuffle, so it may not be the best choice for moderately sized datasets. Reverse complements are optionally added after pregrouping (when we need to normalize k-mer orientation)

    segments

    Supermers to group

    addRC

    Whether to add reverse complements

    spl

    Splitter broadcast

  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped