Package

org.bdgenomics.adam

rdd

Permalink

package rdd

Visibility
  1. Public
  2. All

Type Members

  1. class ADAMContext extends Serializable with Logging

    Permalink

    The ADAMContext provides functions on top of a SparkContext for loading genomic data.

  2. trait ADAMSaveAnyArgs extends SaveArgs

    Permalink

    Argument configuration for saving any output format.

  3. abstract class AvroGenomicRDD[T, U <: AvroGenomicRDD[T, U]] extends ADAMRDDFunctions[T] with GenomicRDD[T, U]

    Permalink

    An abstract class that extends GenomicRDD and where the underlying data is Avro IndexedRecords.

    An abstract class that extends GenomicRDD and where the underlying data is Avro IndexedRecords. This abstract class provides methods for saving to Parquet, and provides hooks for writing the metadata.

  4. abstract class AvroReadGroupGenomicRDD[T, U <: AvroReadGroupGenomicRDD[T, U]] extends AvroGenomicRDD[T, U]

    Permalink

    An abstract class describing a GenomicRDD where:

    An abstract class describing a GenomicRDD where:

    * The data are Avro IndexedRecords. * The data are associated to read groups (i.e., they are reads or fragments).

  5. case class FullOuterShuffleRegionJoin[T, U](sd: SequenceDictionary, partitionSize: Long, sc: SparkContext)(implicit evidence$9: ClassTag[T], evidence$10: ClassTag[U]) extends ShuffleRegionJoin[T, U, Option[T], Option[U]] with Product with Serializable

    Permalink

    Extends the ShuffleRegionJoin trait to implement a full outer join.

  6. case class GenomeBins(binSize: Long, seqLengths: Map[String, Long]) extends Serializable with Product

    Permalink

    Partition a genome into a set of bins.

    Partition a genome into a set of bins.

    Note that this class will not tolerate invalid input, so filter in advance if you use it.

    binSize

    The size of each bin in nucleotides

    seqLengths

    A map containing the length of each contig

  7. case class GenomicPositionPartitioner(numParts: Int, seqLengths: Map[String, Long]) extends Partitioner with Logging with Product with Serializable

    Permalink

    GenomicPositionPartitioner partitions ReferencePosition objects into separate, spatially-coherent regions of the genome.

    GenomicPositionPartitioner partitions ReferencePosition objects into separate, spatially-coherent regions of the genome.

    This can be used to organize genomic data for computation that is spatially distributed (e.g. GATK and Queue's "scatter-and-gather" for locus-parallelizable walkers).

    numParts

    The number of equally-sized regions into which the total genomic space is partitioned; the total number of partitions is numParts + 1, with the "+1" resulting from one extra partition that is used to capture null or UNMAPPED values of the ReferencePosition type.

    seqLengths

    a map relating sequence-name to length and indicating the set and length of all extant sequences in the genome.

  8. trait GenomicRDD[T, U <: GenomicRDD[T, U]] extends AnyRef

    Permalink

    A trait that wraps an RDD of genomic data with helpful metadata.

    A trait that wraps an RDD of genomic data with helpful metadata.

    T

    The type of the data in the wrapped RDD.

    U

    The type of this GenomicRDD.

  9. case class GenomicRegionPartitioner(partitionSize: Long, seqLengths: Map[String, Long], start: Boolean = true) extends Partitioner with Logging with Product with Serializable

    Permalink

    A partitioner for ReferenceRegion-keyed data.

    A partitioner for ReferenceRegion-keyed data.

    partitionSize

    The number of bases per partition.

    seqLengths

    A map between contig names and contig lengths.

    start

    If true, use the start position (instead of the end position) to decide which partition a key belongs to.

  10. trait InFormatter[T, U <: GenomicRDD[T, U], V <: InFormatter[T, U, V]] extends Serializable

    Permalink

    Formats data going into a pipe to an invoked process.

    Formats data going into a pipe to an invoked process.

    T

    The type of records being formatted.

  11. trait InFormatterCompanion[T, U <: GenomicRDD[T, U], V <: InFormatter[T, U, V]] extends AnyRef

    Permalink

    A trait for singleton objects that build an InFormatter from a GenomicRDD.

    A trait for singleton objects that build an InFormatter from a GenomicRDD.

    Often, when creating an outputstream, we need to add metadata to the output that is not attached to individual records. An example of this is writing a header with contig/read group/format info, as is done with SAM/BAM/VCF.

    T

    The type of the records this InFormatter writes out.

    U

    The type of the GenomicRDD this companion object understands.

    V

    The type of InFormatter this companion object creates.

  12. case class InnerShuffleRegionJoin[T, U](sd: SequenceDictionary, partitionSize: Long, sc: SparkContext)(implicit evidence$3: ClassTag[T], evidence$4: ClassTag[U]) extends ShuffleRegionJoin[T, U, T, U] with Product with Serializable

    Permalink

    Extends the ShuffleRegionJoin trait to implement an inner join.

  13. case class InnerShuffleRegionJoinAndGroupByLeft[T, U](sd: SequenceDictionary, partitionSize: Long, sc: SparkContext)(implicit evidence$11: ClassTag[T], evidence$12: ClassTag[U]) extends ShuffleRegionJoin[T, U, T, Iterable[U]] with Product with Serializable

    Permalink

    Extends the ShuffleRegionJoin trait to implement an inner join followed by grouping by the left value.

  14. case class InnerTreeRegionJoin[T, U]()(implicit evidence$1: ClassTag[T], evidence$2: ClassTag[U]) extends RegionJoin[T, U, T, U] with TreeRegionJoin[T, U] with Product with Serializable

    Permalink

    Implements an inner region join where the left side of the join is broadcast.

  15. case class InnerTreeRegionJoinAndGroupByRight[T, U]()(implicit evidence$5: ClassTag[T], evidence$6: ClassTag[U]) extends RegionJoin[T, U, Iterable[T], U] with TreeRegionJoin[T, U] with Product with Serializable

    Permalink

    Performs an inner region join, followed logically by grouping by the right value.

    Performs an inner region join, followed logically by grouping by the right value. This is implemented without any shuffling; the join naturally returns values on the left grouped by the right value.

  16. case class LeftOuterShuffleRegionJoin[T, U](sd: SequenceDictionary, partitionSize: Long, sc: SparkContext)(implicit evidence$5: ClassTag[T], evidence$6: ClassTag[U]) extends ShuffleRegionJoin[T, U, T, Option[U]] with Product with Serializable

    Permalink

    Extends the ShuffleRegionJoin trait to implement a left outer join.

  17. abstract class MultisampleAvroGenomicRDD[T, U <: MultisampleAvroGenomicRDD[T, U]] extends AvroGenomicRDD[T, U] with MultisampleGenomicRDD[T, U]

    Permalink

    An abstract class that extends the MultisampleGenomicRDD trait, where the data are Avro IndexedRecords.

  18. trait MultisampleGenomicRDD[T, U <: MultisampleGenomicRDD[T, U]] extends GenomicRDD[T, U]

    Permalink

    A trait describing a GenomicRDD with data from multiple samples.

  19. trait OutFormatter[T] extends Serializable

    Permalink

    Deserializes data coming out of a pipe from an invoked process.

    Deserializes data coming out of a pipe from an invoked process.

    T

    The type of records being formatted.

  20. case class ReferencePartitioner(sd: SequenceDictionary) extends Partitioner with Product with Serializable

    Permalink

    Repartitions objects that are keyed by a ReferencePosition or ReferenceRegion into a single partition per contig.

  21. abstract class RegionJoin[T, U, RT, RU] extends Serializable

    Permalink

    A trait describing a join in the genomic coordinate space between two RDDs where the values are keyed by a ReferenceRegion.

    A trait describing a join in the genomic coordinate space between two RDDs where the values are keyed by a ReferenceRegion.

    T

    The type of the left RDD.

    U

    The type of the right RDD.

    RT

    The type of data yielded by the left RDD at the output of the join. This may not match T if the join is an outer join, etc.

    RU

    The type of data yielded by the right RDD at the output of the join.

  22. case class RightOuterShuffleRegionJoin[T, U](sd: SequenceDictionary, partitionSize: Long, sc: SparkContext)(implicit evidence$7: ClassTag[T], evidence$8: ClassTag[U]) extends ShuffleRegionJoin[T, U, Option[T], U] with Product with Serializable

    Permalink

    Extends the ShuffleRegionJoin trait to implement a right outer join.

  23. case class RightOuterShuffleRegionJoinAndGroupByLeft[T, U](sd: SequenceDictionary, partitionSize: Long, sc: SparkContext)(implicit evidence$13: ClassTag[T], evidence$14: ClassTag[U]) extends ShuffleRegionJoin[T, U, Option[T], Iterable[U]] with Product with Serializable

    Permalink

    Extends the ShuffleRegionJoin trait to implement a right outer join followed by grouping by all non-null left values.

  24. case class RightOuterTreeRegionJoin[T, U]()(implicit evidence$3: ClassTag[T], evidence$4: ClassTag[U]) extends RegionJoin[T, U, Option[T], U] with TreeRegionJoin[T, U] with Product with Serializable

    Permalink

    Implements a right outer region join where the left side of the join is broadcast.

  25. case class RightOuterTreeRegionJoinAndGroupByRight[T, U]()(implicit evidence$7: ClassTag[T], evidence$8: ClassTag[U]) extends RegionJoin[T, U, Iterable[T], U] with TreeRegionJoin[T, U] with Product with Serializable

    Permalink

    Performs a right outer region join, followed logically by grouping by the right value.

    Performs a right outer region join, followed logically by grouping by the right value. This is implemented without any shuffling; the join naturally returns values on the left grouped by the right value. In this implementation, empty collections on the left side of the join are kept.

  26. sealed abstract class ShuffleRegionJoin[T, U, RT, RU] extends RegionJoin[T, U, RT, RU]

    Permalink

    A trait describing join implementations that are based on a sort-merge join.

    A trait describing join implementations that are based on a sort-merge join.

    T

    The type of the left RDD.

    U

    The type of the right RDD.

    RT

    The type of data yielded by the left RDD at the output of the join. This may not match T if the join is an outer join, etc.

    RU

    The type of data yielded by the right RDD at the output of the join.

  27. trait TreeRegionJoin[T, U] extends AnyRef

    Permalink

    Implements a shuffle free (broadcast) region join.

    Implements a shuffle free (broadcast) region join.

    The broadcast values are stored in a sorted array. It was going to be an ensemble of interval trees, but, that didn't work out.

  28. trait Unaligned extends AnyRef

    Permalink

    A trait for genomic data that is not aligned to a reference (e.g., raw reads).

Value Members

  1. object ADAMContext extends Serializable

    Permalink

    This singleton provides an implicit conversion from a SparkContext to the ADAMContext, as well as implicit functions for the Pipe API.

  2. object FileMerger extends Logging

    Permalink

    Helper object to merge sharded files together.

  3. object GenomicPositionPartitioner extends Serializable

    Permalink

    Helper for creating genomic position partitioners.

  4. object GenomicRegionPartitioner extends Serializable

    Permalink

    Helper object for creating GenomicRegionPartitioners.

  5. package contig

    Permalink
  6. package feature

    Permalink
  7. package fragment

    Permalink
  8. package read

    Permalink
  9. package variant

    Permalink

Ungrouped