Packages

class FgBioDef extends CommonsDef

Place to put common function, type and implicit definitions that can be imported into other classes easily.

Linear Supertypes
CommonsDef, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FgBioDef
  2. CommonsDef
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FgBioDef()

Type Members

  1. implicit class BetterBufferedIteratorJavaWrapper [A] extends AnyRef

    Implicit class that provides a method to wrap a Java iterator into a BetterBufferedIterator.

  2. implicit class BetterBufferedIteratorScalaWrapper [A] extends AnyRef

    Implicit class that provides a method to wrap an iterator into a BetterBufferedIterator.

  3. type DirPath = Path
    Definition Classes
    CommonsDef
  4. trait DualIterator [A] extends Iterator[A] with Iterator[A]

    A trait that combine's scala's Iterator with Java's Iterator.

  5. type FilePath = Path
    Definition Classes
    CommonsDef
  6. type FilenamePrefix = String
    Definition Classes
    CommonsDef
  7. implicit class IteratorToJavaCollectionsAdapter [A] extends AnyRef

    Implicit class that provides methods for creating Java collections from an Iterator.

  8. implicit class ParSupport [A, B <: ParIterableLike[_, _, _]] extends AnyRef

    Implicit that provides additional methods to any collection that is Parallelizable.

    Implicit that provides additional methods to any collection that is Parallelizable. Introduces parWith() methods that create parallel versions of the collection with various configuration options.

    A

    the type of the elements in the collection

    B

    the type of the parallel representation of the collection

  9. type PathPrefix = Path
    Definition Classes
    CommonsDef
  10. type PathToBam = Path
    Definition Classes
    CommonsDef
  11. type PathToFasta = Path
    Definition Classes
    CommonsDef
  12. type PathToFastq = Path
    Definition Classes
    CommonsDef
  13. type PathToIntervals = Path
    Definition Classes
    CommonsDef
  14. type PathToVcf = Path
    Definition Classes
    CommonsDef
  15. implicit class SafelyClosable extends AnyRef
    Definition Classes
    CommonsDef

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 FgBioDef to any2stringadd[FgBioDef] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (FgBioDef, B)
    Implicit
    This member is added by an implicit conversion from FgBioDef to ArrowAssoc[FgBioDef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def ensuring(cond: (FgBioDef) ⇒ Boolean, msg: ⇒ Any): FgBioDef
    Implicit
    This member is added by an implicit conversion from FgBioDef to Ensuring[FgBioDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (FgBioDef) ⇒ Boolean): FgBioDef
    Implicit
    This member is added by an implicit conversion from FgBioDef to Ensuring[FgBioDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): FgBioDef
    Implicit
    This member is added by an implicit conversion from FgBioDef to Ensuring[FgBioDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): FgBioDef
    Implicit
    This member is added by an implicit conversion from FgBioDef to Ensuring[FgBioDef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def forloop[T](from: T)(check: (T) ⇒ Boolean)(next: (T) ⇒ T)(f: (T) ⇒ Unit): Unit

    A more generic for loop, that gives performance similar, but slightly worse than, FgBioDef#forloop(Int,Int,Int).

    A more generic for loop, that gives performance similar, but slightly worse than, FgBioDef#forloop(Int,Int,Int). Equivalent to:

    for (i=from; check(i); i=next(i)) f(i)

    T

    the type of the index

    from

    an initial value

    check

    a function that checks to see if a value should be evaluated (not cause termination)

    next

    a function that takes a value and produced the next value

    f

    a function called on all values

    Annotations
    @inline()
  16. def forloop(from: Int, until: Int, by: Int = 1)(f: (Int) ⇒ Unit): Unit

    An implementation of a for loop that has performance similar to writing a custom while loop for primitive types, which suffer great performance loss when iterating via foreach(), and especially with zipWithIndex.foreach().

    An implementation of a for loop that has performance similar to writing a custom while loop for primitive types, which suffer great performance loss when iterating via foreach(), and especially with zipWithIndex.foreach().

    Equivalent to: for(int i=from; i<until; i+=by) f(i)

    from

    an initial integer values

    until

    a value one higher than the last value that should be accepted

    by

    a step value to increment by each iteration

    f

    a function that takes the index and is called each iteration

    Annotations
    @inline()
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from FgBioDef to StringFormat[FgBioDef] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. implicit def javaIterableToIterator[A](iterable: Iterable[A]): Iterator[A]

    Implicit that converts a Java Iterable into a scala Iterator.

  22. implicit def javaIteratorAsScalaIterator[A](iterator: Iterator[A]): DualIterator[A]

    Implicit that wraps a Java iterator as a Scala iterator.

  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  26. implicit def scalaIteratorAsJavaIterator[A](iterator: Iterator[A]): DualIterator[A]

    Implicit that wraps a Scala iterator as a Java iterator.

  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def tryWith[A, B](resource: A, logger: Option[Logger])(cleanup: (A) ⇒ Unit)(doWork: (A) ⇒ B): Try[B]
    Definition Classes
    CommonsDef
  30. def tryWithCloseable[A <: Closeable](resource: A, logger: Option[Logger])(doWork: (A) ⇒ Unit): Try[Unit]
    Definition Classes
    CommonsDef
  31. def unreachable(message: ⇒ String): Nothing
    Definition Classes
    CommonsDef
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def yieldAndThen[A](it: ⇒ A)(block: ⇒ Unit): A
    Definition Classes
    CommonsDef
  36. def [B](y: B): (FgBioDef, B)
    Implicit
    This member is added by an implicit conversion from FgBioDef to ArrowAssoc[FgBioDef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from CommonsDef

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped