org.hammerlab.guacamole.assembly

DeBruijnGraph

class DeBruijnGraph extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DeBruijnGraph
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DeBruijnGraph(kmerSize: Int, kmerCounts: Map[Seq[Byte], Int])

Type Members

  1. type Kmer = Seq[Byte]

  2. type Path = List[Kmer]

  3. type Sequence = Seq[Byte]

  4. type SubKmer = Seq[Byte]

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def children(node: Kmer): List[Kmer]

    Find all children of a given node

    Find all children of a given node

    node

    Kmer to find parents of

    returns

    List of Kmers where their prefix matches this node's suffix

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def depthFirstSearch(source: Kmer, sink: Kmer, minPathLength: Int = 1, maxPathLength: Int = Int.MaxValue, maxPaths: Int = 10, avoidLoops: Boolean = true, debugPrint: Boolean = false): List[Path]

    Find a path from source to sink in the graph

    Find a path from source to sink in the graph

    source

    Kmer node to begin search

    sink

    Kmer to search for

    minPathLength

    Minimum number of kmers to traverse before finding the sink

    maxPathLength

    Maximum number of kmers to traverse before finding the sink

    maxPaths

    Maximum number of paths to find from source to sink

    avoidLoops

    If avoiding loops, skip nodes that have already been visited

    returns

    Set

  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. val kmerCounts: Map[Seq[Byte], Int]

  17. val kmerSize: Int

  18. val mergeIndex: Map[Kmer, (Sequence, Int)]

  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. def parents(node: Kmer): List[Kmer]

    Find all parents of a given node

    Find all parents of a given node

    node

    Kmer to find parents of

    returns

    List of Kmers where their suffix matches this nodes prefix

  23. val prefixTable: Map[SubKmer, List[Kmer]]

  24. def sinks: Iterable[Kmer]

    Find all nodes that have out-degree = 0

  25. def sources: Iterable[Kmer]

    Find all nodes that have in-degree = 0

  26. val suffixTable: Map[SubKmer, List[Kmer]]

  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped