From a72a8a2fb897358927d8b6d2a4dc8afd4fde6c7b Mon Sep 17 00:00:00 2001 From: Johan Nystrom Date: Mon, 13 Feb 2023 10:21:50 +0900 Subject: [PATCH 1/2] Set version to 3.0.1 --- CHANGES | 6 ++++++ README.md | 2 +- build.sbt | 2 +- discount-aws.sh | 4 ++-- discount-gcloud.sh | 2 +- discount-shell.sh | 2 +- discount.sh | 2 +- notebooks/Discount k-mer counter.zpln | 2 +- 8 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index addf92bd..dd54c332 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +3.0.1 + + Bugfix for self-union or self-intersection of indexes (caused +a cartesian product). + Additional convenience methods for Index, e.g. unionLeft, unionRight, etc. + 3.0.0 Support for indexes (k-mer databases) written as parquet files. diff --git a/README.md b/README.md index 50d9d979..df10cbdb 100644 --- a/README.md +++ b/README.md @@ -280,7 +280,7 @@ For both notebook and REPL use, it is recommended to consult the API docs You can add Discount as a dependency using the following syntax (SBT): ` - libraryDependencies += "com.jnpersson" %% "discount" % "3.0.0" + libraryDependencies += "com.jnpersson" %% "discount" % "3.0.1" ` Please note that Discount is still under heavy development and the API may change slightly even between minor versions. diff --git a/build.sbt b/build.sbt index a69178b1..e2e4c2cf 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "Discount" -version := "3.0.0" +version := "3.0.1" scalaVersion := "2.12.16" diff --git a/discount-aws.sh b/discount-aws.sh index aa085da5..b3ff3a14 100755 --- a/discount-aws.sh +++ b/discount-aws.sh @@ -12,7 +12,7 @@ BUCKET=s3://my-bucket/discount DISCOUNT_HOME="$(dirname -- "$(readlink "${BASH_SOURCE}")")" -aws s3 cp "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.0.jar" $BUCKET/ +aws s3 cp "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.1.jar" $BUCKET/ #aws s3 sync "$DISCOUNT_HOME/resources/PASHA" $BUCKET/PASHA/ @@ -23,7 +23,7 @@ aws s3 cp "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.0.jar" $BUCKET #To set SPLIT or other variables, uncomment below. COMMAND=( \ # --conf $SPLIT \ - --class com.jnpersson.discount.spark.Discount $BUCKET/Discount-assembly-3.0.0.jar $*) + --class com.jnpersson.discount.spark.Discount $BUCKET/Discount-assembly-3.0.1.jar $*) #Turn off paging for output export AWS_PAGER="" diff --git a/discount-gcloud.sh b/discount-gcloud.sh index cd130734..87a9977b 100755 --- a/discount-gcloud.sh +++ b/discount-gcloud.sh @@ -33,6 +33,6 @@ PROPERTIES=$MAXRES DISCOUNT_HOME="$(dirname -- "$(readlink "${BASH_SOURCE}")")" exec gcloud --verbosity=info dataproc jobs submit spark --region $REGION --cluster $CLUSTER \ - --class com.jnpersson.discount.spark.Discount --jars "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.0.jar" \ + --class com.jnpersson.discount.spark.Discount --jars "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.1.jar" \ --properties $PROPERTIES -- "$@" diff --git a/discount-shell.sh b/discount-shell.sh index 90851cd9..047aac9a 100755 --- a/discount-shell.sh +++ b/discount-shell.sh @@ -25,4 +25,4 @@ exec $SPARK/bin/spark-shell \ --master $MASTER \ --conf $MEMORY \ --conf $LOCAL_DIR \ - --jars "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.0.jar" + --jars "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.1.jar" diff --git a/discount.sh b/discount.sh index 119bee59..0629fec7 100755 --- a/discount.sh +++ b/discount.sh @@ -32,4 +32,4 @@ exec $SPARK/bin/spark-submit \ --conf $MEMORY \ --conf $LOCAL_DIR \ --master $MASTER \ - --class com.jnpersson.discount.spark.Discount "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.0.jar" $* + --class com.jnpersson.discount.spark.Discount "$DISCOUNT_HOME/target/scala-2.12/Discount-assembly-3.0.1.jar" $* diff --git a/notebooks/Discount k-mer counter.zpln b/notebooks/Discount k-mer counter.zpln index 28738c64..99093071 100644 --- a/notebooks/Discount k-mer counter.zpln +++ b/notebooks/Discount k-mer counter.zpln @@ -47,7 +47,7 @@ }, { "title": "Spark settings", - "text": "%spark.conf\n\n#Path to Discount jar\nspark.jars /path/to/Discount/target/scala-2.12/Discount-assembly-3.0.0.jar\n\n#If running a local Spark installation (not in a cloud), increase this setting as much as possible\nspark.driver.memory 16g\n\n#For local Spark, set the path to a Spark 3.0+ installation (if not configured elsewhere)\nSPARK_HOME /path/to/spark-3.1.2-bin-hadoop3.2\n\n#For local spark, it is helpful to set a path to a SSD drive or other fast filesystem (for temporary files)\n#Note that this directory can get large. It will be cleared when you stop or restart the Spark interpreter in Zeppelin.\nspark.local.dir /fast/spark\n\n\n", + "text": "%spark.conf\n\n#Path to Discount jar\nspark.jars /path/to/Discount/target/scala-2.12/Discount-assembly-3.0.1.jar\n\n#If running a local Spark installation (not in a cloud), increase this setting as much as possible\nspark.driver.memory 16g\n\n#For local Spark, set the path to a Spark 3.0+ installation (if not configured elsewhere)\nSPARK_HOME /path/to/spark-3.1.2-bin-hadoop3.2\n\n#For local spark, it is helpful to set a path to a SSD drive or other fast filesystem (for temporary files)\n#Note that this directory can get large. It will be cleared when you stop or restart the Spark interpreter in Zeppelin.\nspark.local.dir /fast/spark\n\n\n", "user": "anonymous", "dateUpdated": "2023-01-13T15:15:55+0900", "progress": 0, From f93da3269bb27c2aafbee9d2a825d59b49d29134 Mon Sep 17 00:00:00 2001 From: Johan Nystrom Date: Mon, 13 Feb 2023 10:23:41 +0900 Subject: [PATCH 2/2] Update API docs for 3.0.1 --- .../discount/bucket/BucketStats$.html | 8 +- .../discount/bucket/BucketStats.html | 8 +- .../discount/bucket/CountReducer.html | 8 +- .../bucket/CountersSubtractReducer.html | 12 +- .../jnpersson/discount/bucket/KmerBucket.html | 8 +- .../discount/bucket/KmerSubtractReducer.html | 11 +- .../discount/bucket/LeftReducer.html | 8 +- .../jnpersson/discount/bucket/MaxReducer.html | 8 +- .../jnpersson/discount/bucket/MinReducer.html | 8 +- .../jnpersson/discount/bucket/Reducer$.html | 8 +- .../jnpersson/discount/bucket/Reducer.html | 8 +- .../discount/bucket/ReducibleBucket$.html | 8 +- .../discount/bucket/ReducibleBucket.html | 8 +- .../discount/bucket/RightReducer.html | 8 +- .../jnpersson/discount/bucket/SumReducer.html | 8 +- docs/com/jnpersson/discount/bucket/index.html | 23 ++- docs/com/jnpersson/discount/spark/Index.html | 179 +++++++++++++++++- docs/index.js | 2 +- 18 files changed, 257 insertions(+), 74 deletions(-) diff --git a/docs/com/jnpersson/discount/bucket/BucketStats$.html b/docs/com/jnpersson/discount/bucket/BucketStats$.html index 961079f2..fd27886c 100644 --- a/docs/com/jnpersson/discount/bucket/BucketStats$.html +++ b/docs/com/jnpersson/discount/bucket/BucketStats$.html @@ -144,16 +144,16 @@

Packages

CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/BucketStats.html b/docs/com/jnpersson/discount/bucket/BucketStats.html index a9046c9e..03fbe7ec 100644 --- a/docs/com/jnpersson/discount/bucket/BucketStats.html +++ b/docs/com/jnpersson/discount/bucket/BucketStats.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/CountReducer.html b/docs/com/jnpersson/discount/bucket/CountReducer.html index 0093a1cd..f4916f95 100644 --- a/docs/com/jnpersson/discount/bucket/CountReducer.html +++ b/docs/com/jnpersson/discount/bucket/CountReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/CountersSubtractReducer.html b/docs/com/jnpersson/discount/bucket/CountersSubtractReducer.html index 6699da55..c167797a 100644 --- a/docs/com/jnpersson/discount/bucket/CountersSubtractReducer.html +++ b/docs/com/jnpersson/discount/bucket/CountersSubtractReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • @@ -210,7 +210,9 @@

    -
    +

    Implements the com.jnpersson.discount.spark.Rule.CountersSubtract reduction rule. +For each k-mer we calculate count_1 - count_2 and set the result to this value. +Only positive counts are preserved in the output.

    Linear Supertypes diff --git a/docs/com/jnpersson/discount/bucket/KmerBucket.html b/docs/com/jnpersson/discount/bucket/KmerBucket.html index 5b793695..2f8fc343 100644 --- a/docs/com/jnpersson/discount/bucket/KmerBucket.html +++ b/docs/com/jnpersson/discount/bucket/KmerBucket.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/KmerSubtractReducer.html b/docs/com/jnpersson/discount/bucket/KmerSubtractReducer.html index bc9507e6..d16f8254 100644 --- a/docs/com/jnpersson/discount/bucket/KmerSubtractReducer.html +++ b/docs/com/jnpersson/discount/bucket/KmerSubtractReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • @@ -210,7 +210,8 @@

    -
    +

    Implements the com.jnpersson.discount.spark.Rule.KmersSubtract reduction rule. +k-mers are kept if they existed in bucket A, but not in bucket B.

    Linear Supertypes diff --git a/docs/com/jnpersson/discount/bucket/LeftReducer.html b/docs/com/jnpersson/discount/bucket/LeftReducer.html index 6dc8702d..0afade01 100644 --- a/docs/com/jnpersson/discount/bucket/LeftReducer.html +++ b/docs/com/jnpersson/discount/bucket/LeftReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/MaxReducer.html b/docs/com/jnpersson/discount/bucket/MaxReducer.html index 7e7c5c1a..a89f890c 100644 --- a/docs/com/jnpersson/discount/bucket/MaxReducer.html +++ b/docs/com/jnpersson/discount/bucket/MaxReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/MinReducer.html b/docs/com/jnpersson/discount/bucket/MinReducer.html index a12d4e35..3aed337f 100644 --- a/docs/com/jnpersson/discount/bucket/MinReducer.html +++ b/docs/com/jnpersson/discount/bucket/MinReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/Reducer$.html b/docs/com/jnpersson/discount/bucket/Reducer$.html index 1021a5c9..7b3d0399 100644 --- a/docs/com/jnpersson/discount/bucket/Reducer$.html +++ b/docs/com/jnpersson/discount/bucket/Reducer$.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/Reducer.html b/docs/com/jnpersson/discount/bucket/Reducer.html index 9d3fb50f..1ecc051f 100644 --- a/docs/com/jnpersson/discount/bucket/Reducer.html +++ b/docs/com/jnpersson/discount/bucket/Reducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/ReducibleBucket$.html b/docs/com/jnpersson/discount/bucket/ReducibleBucket$.html index e5610577..5bcd692f 100644 --- a/docs/com/jnpersson/discount/bucket/ReducibleBucket$.html +++ b/docs/com/jnpersson/discount/bucket/ReducibleBucket$.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/ReducibleBucket.html b/docs/com/jnpersson/discount/bucket/ReducibleBucket.html index 22d14e71..f8b0576e 100644 --- a/docs/com/jnpersson/discount/bucket/ReducibleBucket.html +++ b/docs/com/jnpersson/discount/bucket/ReducibleBucket.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/RightReducer.html b/docs/com/jnpersson/discount/bucket/RightReducer.html index b742daca..5c4a0cae 100644 --- a/docs/com/jnpersson/discount/bucket/RightReducer.html +++ b/docs/com/jnpersson/discount/bucket/RightReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/SumReducer.html b/docs/com/jnpersson/discount/bucket/SumReducer.html index 60487996..fb8ff873 100644 --- a/docs/com/jnpersson/discount/bucket/SumReducer.html +++ b/docs/com/jnpersson/discount/bucket/SumReducer.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • diff --git a/docs/com/jnpersson/discount/bucket/index.html b/docs/com/jnpersson/discount/bucket/index.html index 1f5000ac..af136cc9 100644 --- a/docs/com/jnpersson/discount/bucket/index.html +++ b/docs/com/jnpersson/discount/bucket/index.html @@ -144,16 +144,16 @@

    Packages

    CountReducer
  • - - CountersSubtractReducer + + CountersSubtractReducer
  • KmerBucket
  • - - KmerSubtractReducer + + KmerSubtractReducer
  • @@ -364,7 +364,7 @@

    Type Members

    A reducer that handles k-mer count values stored in the longsForK(k) + 1 tag position.

    -
  • +
  • @@ -376,10 +376,12 @@

    Type Members

    case class
    - CountersSubtractReducer(k: Int, forwardOnly: Boolean, intersect: Boolean) extends CountReducer with Product with Serializable + CountersSubtractReducer(k: Int, forwardOnly: Boolean, intersect: Boolean) extends CountReducer with Product with Serializable -

    Implements the com.jnpersson.discount.spark.Rule.CountersSubtract reduction rule

    +

    Implements the com.jnpersson.discount.spark.Rule.CountersSubtract reduction rule.

    Implements the com.jnpersson.discount.spark.Rule.CountersSubtract reduction rule. +For each k-mer we calculate count_1 - count_2 and set the result to this value. +Only positive counts are preserved in the output.

  • @@ -397,7 +399,7 @@

    Type Members

    A bucket that maintains some number of super-mers and associated tags (e.g.

    A bucket that maintains some number of super-mers and associated tags (e.g. counts) of each k-mer.

    -
  • +
  • @@ -409,10 +411,11 @@

    Type Members

    case class
    - KmerSubtractReducer(k: Int, forwardOnly: Boolean) extends CountReducer with Product with Serializable + KmerSubtractReducer(k: Int, forwardOnly: Boolean) extends CountReducer with Product with Serializable -

    Implements the com.jnpersson.discount.spark.Rule.KmersSubtract reduction rule

    +

    Implements the com.jnpersson.discount.spark.Rule.KmersSubtract reduction rule.

    Implements the com.jnpersson.discount.spark.Rule.KmersSubtract reduction rule. +k-mers are kept if they existed in bucket A, but not in bucket B.

  • diff --git a/docs/com/jnpersson/discount/spark/Index.html b/docs/com/jnpersson/discount/spark/Index.html index 69a6ba7b..326cb642 100644 --- a/docs/com/jnpersson/discount/spark/Index.html +++ b/docs/com/jnpersson/discount/spark/Index.html @@ -404,6 +404,22 @@

    Value Members

    Definition Classes
    AnyRef → Any
    +
  • + + + + + + + + + def + + + add(other: Index): Index + + +

    Convenience method for union using Rule.Sum

  • @@ -716,6 +732,22 @@

    Value Members

    Intersect this index with another one, combining the k-mers using the given reducer type.

    Intersect this index with another one, combining the k-mers using the given reducer type. A k-mer is kept after an intersection operation if it is present in both of the input indexes, and passes any other rules that the reducer implements.

    +
  • + + + + + + + + + def + + + intersectLeft(other: Index): Index + + +

    Convenience method for intersection using Rule.Left

  • @@ -732,6 +764,54 @@

    Value Members

    Intersect this index with a series of indexes using the given reducer type.

    +
  • + + + + + + + + + def + + + intersectMax(other: Index): Index + + +

    Convenience method for intersection using Rule.Max

    +
  • + + + + + + + + + def + + + intersectMin(other: Index): Index + + +

    Convenience method for intersection using Rule.Min

    +
  • + + + + + + + + + def + + + intersectRight(other: Index): Index + + +

    Convenience method for intersection using Rule.Right

  • @@ -974,8 +1054,41 @@

    Value Members

    Subtract another index from this one, using e.g.

    Subtract another index from this one, using e.g. Rule.KmersSubtract or -Rule.CountersSubtract. Subtraction is implemented as a union, but the reducer makes it non-commutative. +Rule.CountersSubtract. Subtraction is implemented as a union, but this is not a commutative operation +due to how the rules are implemented.

    +
  • + + + + + + + + + def + + + subtractCounts(other: Index): Index + + +

    Convenience method for subtraction using Rule.CountersSubtract

    +
  • + + + + + + + + + def + + + subtractKmers(other: Index): Index + + +

    Convenience method for subtraction using Rule.KmersSubtract

  • @@ -1044,6 +1157,22 @@

    Value Members

    Union this index with another one, combining the k-mers using the given reducer type.

    Union this index with another one, combining the k-mers using the given reducer type. A k-mer is kept after a union operation if it is present in either of the input indexes, and passes any other rules that the reducer implements.

    +
  • + + + + + + + + + def + + + unionLeft(other: Index): Index + + +

    Convenience method for union using Rule.Left

  • @@ -1060,6 +1189,54 @@

    Value Members

    Union this index with a series of indexes using the given reducer type.

    +
  • + + + + + + + + + def + + + unionMax(other: Index): Index + + +

    Convenience method for union using Rule.Max

    +
  • + + + + + + + + + def + + + unionMin(other: Index): Index + + +

    Convenience method for union using Rule.Min

    +
  • + + + + + + + + + def + + + unionRight(other: Index): Index + + +

    Convenience method for union using Rule.Right

  • diff --git a/docs/index.js b/docs/index.js index 52a5c2c9..d2071231 100644 --- a/docs/index.js +++ b/docs/index.js @@ -1 +1 @@ -Index.PACKAGES = {"com.jnpersson" : [], "com.jnpersson.discount.bucket" : [{"name" : "com.jnpersson.discount.bucket.BucketStats", "shortDescription" : "Statistics for a single bin\/bucket.", "object" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html", "members_object" : [{"label" : "collectFromCounts", "tail" : "(id: String, counts: Array[Array[Int]]): BucketStats", "member" : "com.jnpersson.discount.bucket.BucketStats.collectFromCounts", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#collectFromCounts(id:String,counts:Array[Array[Int]]):com.jnpersson.discount.bucket.BucketStats", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "equalCounts", "tail" : "(other: BucketStats): Boolean", "member" : "com.jnpersson.discount.bucket.BucketStats.equalCounts", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#equalCounts(other:com.jnpersson.discount.bucket.BucketStats):Boolean", "kind" : "def"}, {"label" : "merge", "tail" : "(other: BucketStats): BucketStats", "member" : "com.jnpersson.discount.bucket.BucketStats.merge", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#merge(other:com.jnpersson.discount.bucket.BucketStats):com.jnpersson.discount.bucket.BucketStats", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.BucketStats#", "error" : "unsupported entity"}, {"label" : "maxAbundance", "tail" : ": Abundance", "member" : "com.jnpersson.discount.bucket.BucketStats.maxAbundance", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#maxAbundance:com.jnpersson.discount.Abundance", "kind" : "val"}, {"label" : "uniqueKmers", "tail" : ": Long", "member" : "com.jnpersson.discount.bucket.BucketStats.uniqueKmers", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#uniqueKmers:Long", "kind" : "val"}, {"label" : "distinctKmers", "tail" : ": Long", "member" : "com.jnpersson.discount.bucket.BucketStats.distinctKmers", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#distinctKmers:Long", "kind" : "val"}, {"label" : "totalAbundance", "tail" : ": Abundance", "member" : "com.jnpersson.discount.bucket.BucketStats.totalAbundance", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#totalAbundance:com.jnpersson.discount.Abundance", "kind" : "val"}, {"label" : "superKmers", "tail" : ": Long", "member" : "com.jnpersson.discount.bucket.BucketStats.superKmers", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#superKmers:Long", "kind" : "val"}, {"label" : "id", "tail" : ": String", "member" : "com.jnpersson.discount.bucket.BucketStats.id", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#id:String", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/BucketStats.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.CountersSubtractReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.CountersSubtract reduction rule", "members_case class" : [{"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Tag): Boolean", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:com.jnpersson.discount.bucket.Tag):Boolean", "kind" : "def"}, {"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.CountersSubtractReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#k:Int", "kind" : "val"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.CountReducer", "members_trait" : [{"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "abstract def"}, {"label" : "intersect", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#intersect:Boolean", "kind" : "abstract def"}, {"label" : "forwardOnly", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#forwardOnly:Boolean", "kind" : "abstract def"}, {"label" : "k", "tail" : "(): Int", "member" : "com.jnpersson.discount.bucket.Reducer.k", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#k:Int", "kind" : "abstract def"}], "shortDescription" : "A reducer that handles k-mer count values stored in the longsForK(k) + 1 tag position.", "trait" : "com\/jnpersson\/discount\/bucket\/CountReducer.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.bucket.KmerBucket", "shortDescription" : "A bucket that maintains some number of super-mers and associated tags (e.g.", "members_class" : [{"label" : "writeToSortedTable", "tail" : "(k: Int, forwardOnly: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToSortedTable", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#writeToSortedTable(k:Int,forwardOnly:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "writeToTable", "tail" : "(k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToTable", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#writeToTable(k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.KmerBucket#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.bucket.KmerSubtractReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.KmersSubtract reduction rule", "members_case class" : [{"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Tag): Boolean", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:com.jnpersson.discount.bucket.Tag):Boolean", "kind" : "def"}, {"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "intersect", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#intersect:Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.KmerSubtractReducer#", "error" : "unsupported entity"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#k:Int", "kind" : "val"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.LeftReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Left reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.LeftReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.LeftReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.LeftReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.LeftReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.LeftReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.MaxReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Max reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.MaxReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.MaxReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MaxReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MaxReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.MaxReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.MinReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Min reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.MinReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.MinReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MinReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MinReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.MinReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/MinReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.Reducer", "members_trait" : [{"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.Reducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "abstract def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.Reducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#tagOffset:Int", "kind" : "abstract val"}, {"label" : "forwardOnly", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#forwardOnly:Boolean", "kind" : "abstract def"}, {"label" : "k", "tail" : "(): Int", "member" : "com.jnpersson.discount.bucket.Reducer.k", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#k:Int", "kind" : "abstract def"}], "shortDescription" : "A method for combining identical k-mers (which may have associated extra data)", "object" : "com\/jnpersson\/discount\/bucket\/Reducer$.html", "members_object" : [{"label" : "configure", "tail" : "(k: Int, forwardOnly: Boolean, intersect: Boolean, reduction: Rule): Reducer", "member" : "com.jnpersson.discount.bucket.Reducer.configure", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#configure(k:Int,forwardOnly:Boolean,intersect:Boolean,reduction:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.Reducer", "kind" : "def"}, {"label" : "union", "tail" : "(k: Int, forwardOnly: Boolean, reduction: Rule): Reducer", "member" : "com.jnpersson.discount.bucket.Reducer.union", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#union(k:Int,forwardOnly:Boolean,reduction:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.Reducer", "kind" : "def"}, {"label" : "parseRule", "tail" : "(rule: String): Rule", "member" : "com.jnpersson.discount.bucket.Reducer.parseRule", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#parseRule(rule:String):com.jnpersson.discount.spark.Rule", "kind" : "def"}, {"label" : "cappedLongToInt", "tail" : "(x: Long): Int", "member" : "com.jnpersson.discount.bucket.Reducer.cappedLongToInt", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#cappedLongToInt(x:Long):Int", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "trait" : "com\/jnpersson\/discount\/bucket\/Reducer.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.bucket.ReducibleBucket", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html", "members_object" : [{"label" : "unionCompact", "tail" : "(b1: Option[ReducibleBucket], b2: Option[ReducibleBucket], k: Int, rule: Rule): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.unionCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#unionCompact(b1:Option[com.jnpersson.discount.bucket.ReducibleBucket],b2:Option[com.jnpersson.discount.bucket.ReducibleBucket],k:Int,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "intersectCompact", "tail" : "(b1: ReducibleBucket, b2: ReducibleBucket, k: Int, rule: Rule): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.intersectCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#intersectCompact(b1:com.jnpersson.discount.bucket.ReducibleBucket,b2:com.jnpersson.discount.bucket.ReducibleBucket,k:Int,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "countingCompacted", "tail" : "(id: BucketId, supermers: Array[ZeroNTBitArray], abundances: Array[Abundance], k: Int, filterOrientation: Boolean): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.countingCompacted", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#countingCompacted(id:com.jnpersson.discount.hash.BucketId,supermers:Array[com.jnpersson.discount.util.ZeroNTBitArray],abundances:Array[com.jnpersson.discount.Abundance],k:Int,filterOrientation:Boolean):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "countingCompacted", "tail" : "(id: BucketId, supermers: Array[ZeroNTBitArray], k: Int): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.countingCompacted", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#countingCompacted(id:com.jnpersson.discount.hash.BucketId,supermers:Array[com.jnpersson.discount.util.ZeroNTBitArray],k:Int):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "reduceKmers", "tail" : "(reducer: Reducer): KmerTable", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.reduceKmers", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#reduceKmers(reducer:com.jnpersson.discount.bucket.Reducer):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "reduceCompact", "tail" : "(reducer: Reducer): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.reduceCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#reduceCompact(reducer:com.jnpersson.discount.bucket.Reducer):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "appendAndCompact", "tail" : "(other: ReducibleBucket, reducer: Reducer): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.appendAndCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#appendAndCompact(other:com.jnpersson.discount.bucket.ReducibleBucket,reducer:com.jnpersson.discount.bucket.Reducer):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.ReducibleBucket#", "error" : "unsupported entity"}, {"label" : "tags", "tail" : ": Array[Array[Int]]", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.tags", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#tags:Array[Array[Int]]", "kind" : "val"}, {"label" : "supermers", "tail" : ": Array[ZeroNTBitArray]", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.supermers", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#supermers:Array[com.jnpersson.discount.util.ZeroNTBitArray]", "kind" : "val"}, {"label" : "id", "tail" : ": BucketId", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.id", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#id:com.jnpersson.discount.hash.BucketId", "kind" : "val"}, {"label" : "writeToSortedTable", "tail" : "(k: Int, forwardOnly: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToSortedTable", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#writeToSortedTable(k:Int,forwardOnly:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "writeToTable", "tail" : "(k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToTable", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#writeToTable(k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.bucket.RightReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Right reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.RightReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.RightReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.RightReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.RightReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.RightReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/RightReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.SumReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Sum reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.SumReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.SumReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.SumReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.SumReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.SumReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/SumReducer.html", "kind" : "case class"}], "com.jnpersson.discount.fastdoop" : [{"name" : "com.jnpersson.discount.fastdoop.FAIRecord", "shortDescription" : "FAI (fasta index) record.", "members_case class" : [{"label" : "end", "tail" : ": Long", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.end", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#end:Long", "kind" : "val"}, {"member" : "com.jnpersson.discount.fastdoop.FAIRecord#", "error" : "unsupported entity"}, {"label" : "bytesPerLine", "tail" : ": Int", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.bytesPerLine", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#bytesPerLine:Int", "kind" : "val"}, {"label" : "bpsPerLine", "tail" : ": Int", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.bpsPerLine", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#bpsPerLine:Int", "kind" : "val"}, {"label" : "start", "tail" : ": Long", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.start", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#start:Long", "kind" : "val"}, {"label" : "length", "tail" : ": Long", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.length", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#length:Long", "kind" : "val"}, {"label" : "id", "tail" : ": String", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.id", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#id:String", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTAlongInputFileFormat", "shortDescription" : "A FileInputFormat for reading FASTA files containingsequences of arbitrary length.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, PartialSequence]", "member" : "com.jnpersson.discount.fastdoop.FASTAlongInputFileFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.PartialSequence]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTAlongInputFileFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTAshortInputFileFormat", "shortDescription" : "A FileInputFormat for reading FASTA files containingshort sequences.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, Record]", "member" : "com.jnpersson.discount.fastdoop.FASTAshortInputFileFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.Record]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTAshortInputFileFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTQInputFileFormat", "shortDescription" : "A FileInputFormat for reading FASTQ files.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, QRecord]", "member" : "com.jnpersson.discount.fastdoop.FASTQInputFileFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.QRecord]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTQInputFileFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader", "shortDescription" : "This class reads pairs from an InputSplit.", "members_class" : [{"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getProgress():Float", "kind" : "def"}, {"label" : "getCurrentValue", "tail" : "(): QRecord", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.QRecord", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#close():Unit", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.IndexedFastaFormat", "shortDescription" : "Hadoop input format for FASTA files with an accompanying .fai index file.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, PartialSequence]", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.PartialSequence]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.IndexedFastaFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.IndexedFastaReader", "shortDescription" : "FASTA file reader that uses a faidx (.fai) file to track sequence locations.", "members_class" : [{"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#close():Unit", "kind" : "def"}, {"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getProgress():Float", "kind" : "def"}, {"label" : "getCurrentValue", "tail" : "(): PartialSequence", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.PartialSequence", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader", "shortDescription" : "This class reads pairs from an InputSplit.", "members_class" : [{"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getProgress():Float", "kind" : "def"}, {"label" : "getCurrentValue", "tail" : "(): PartialSequence", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.PartialSequence", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#close():Unit", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.PartialSequence", "shortDescription" : "This class is used to store fragments of a long input FASTAsequence as an array of bytes.", "members_class" : [{"label" : "setComplete", "tail" : "(complete: Boolean): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setComplete", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setComplete(complete:Boolean):Unit", "kind" : "def"}, {"label" : "isComplete", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.isComplete", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#isComplete():Boolean", "kind" : "def"}, {"label" : "setSeqPosition", "tail" : "(seqPosition: Long): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setSeqPosition", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setSeqPosition(seqPosition:Long):Unit", "kind" : "def"}, {"label" : "getSeqPosition", "tail" : "(): Long", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getSeqPosition", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getSeqPosition():Long", "kind" : "def"}, {"label" : "setEndValue", "tail" : "(endValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setEndValue(endValue:Int):Unit", "kind" : "def"}, {"label" : "getEndValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getEndValue():Int", "kind" : "def"}, {"label" : "setStartValue", "tail" : "(startValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setStartValue(startValue:Int):Unit", "kind" : "def"}, {"label" : "getStartValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getStartValue():Int", "kind" : "def"}, {"label" : "setHeader", "tail" : "(header: String): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setHeader", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setHeader(header:String):Unit", "kind" : "def"}, {"label" : "getHeader", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getHeader", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getHeader():String", "kind" : "def"}, {"label" : "setBytesToProcess", "tail" : "(bytesToProcess: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setBytesToProcess", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setBytesToProcess(bytesToProcess:Int):Unit", "kind" : "def"}, {"label" : "getBytesToProcess", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getBytesToProcess", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getBytesToProcess():Int", "kind" : "def"}, {"label" : "setBuffer", "tail" : "(buffer: Array[Byte]): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setBuffer(buffer:Array[Byte]):Unit", "kind" : "def"}, {"label" : "getBuffer", "tail" : "(): Array[Byte]", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getBuffer():Array[Byte]", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#toString():String", "kind" : "def"}, {"label" : "toString2", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.toString2", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#toString2():String", "kind" : "def"}, {"label" : "getValue2", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getValue2", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getValue2():String", "kind" : "def"}, {"label" : "getValue", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getValue():String", "kind" : "def"}, {"label" : "getKey", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getKey", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getKey():String", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.PartialSequence#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.QRecord", "shortDescription" : "Utility class used to represent as a record a sequence existingin a FASTQ file.", "members_class" : [{"label" : "setEndQuality", "tail" : "(endQuality: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndQuality(endQuality:Int):Unit", "kind" : "def"}, {"label" : "getEndQuality", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndQuality():Int", "kind" : "def"}, {"label" : "setStartQuality", "tail" : "(startQuality: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartQuality(startQuality:Int):Unit", "kind" : "def"}, {"label" : "getStartQuality", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartQuality():Int", "kind" : "def"}, {"label" : "setEndKey2", "tail" : "(endKey2: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndKey2(endKey2:Int):Unit", "kind" : "def"}, {"label" : "getEndKey2", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndKey2():Int", "kind" : "def"}, {"label" : "setStartKey2", "tail" : "(startKey2: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartKey2(startKey2:Int):Unit", "kind" : "def"}, {"label" : "getStartKey2", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartKey2():Int", "kind" : "def"}, {"label" : "setEndValue", "tail" : "(endValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndValue(endValue:Int):Unit", "kind" : "def"}, {"label" : "setStartValue", "tail" : "(startValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartValue(startValue:Int):Unit", "kind" : "def"}, {"label" : "setEndKey", "tail" : "(endKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndKey(endKey:Int):Unit", "kind" : "def"}, {"label" : "getEndKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndKey():Int", "kind" : "def"}, {"label" : "setStartKey", "tail" : "(startKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartKey(startKey:Int):Unit", "kind" : "def"}, {"label" : "getStartKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartKey():Int", "kind" : "def"}, {"label" : "setBuffer", "tail" : "(buffer: Array[Byte]): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setBuffer(buffer:Array[Byte]):Unit", "kind" : "def"}, {"label" : "getEndValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndValue():Int", "kind" : "def"}, {"label" : "getStartValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartValue():Int", "kind" : "def"}, {"label" : "getBuffer", "tail" : "(): Array[Byte]", "member" : "com.jnpersson.discount.fastdoop.QRecord.getBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getBuffer():Array[Byte]", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#toString():String", "kind" : "def"}, {"label" : "getQuality", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getQuality():String", "kind" : "def"}, {"label" : "getKey2", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getKey2():String", "kind" : "def"}, {"label" : "getValue", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getValue():String", "kind" : "def"}, {"label" : "getKey", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getKey():String", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.QRecord#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.Record", "shortDescription" : "Utility class used to represent as a record a sequence existingin a FASTA file.", "members_class" : [{"label" : "setEndValue", "tail" : "(endValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setEndValue(endValue:Int):Unit", "kind" : "def"}, {"label" : "getEndValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getEndValue():Int", "kind" : "def"}, {"label" : "setStartValue", "tail" : "(startValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setStartValue(startValue:Int):Unit", "kind" : "def"}, {"label" : "getStartValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getStartValue():Int", "kind" : "def"}, {"label" : "setEndKey", "tail" : "(endKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setEndKey(endKey:Int):Unit", "kind" : "def"}, {"label" : "getEndKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getEndKey():Int", "kind" : "def"}, {"label" : "setStartKey", "tail" : "(startKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setStartKey(startKey:Int):Unit", "kind" : "def"}, {"label" : "getStartKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getStartKey():Int", "kind" : "def"}, {"label" : "setBuffer", "tail" : "(buffer: Array[Byte]): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setBuffer(buffer:Array[Byte]):Unit", "kind" : "def"}, {"label" : "getBuffer", "tail" : "(): Array[Byte]", "member" : "com.jnpersson.discount.fastdoop.Record.getBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getBuffer():Array[Byte]", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.Record.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#toString():String", "kind" : "def"}, {"label" : "getValue", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.Record.getValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getValue():String", "kind" : "def"}, {"label" : "getKey", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.Record.getKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getKey():String", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.Record#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/Record.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader", "shortDescription" : "This class reads pairs from an InputSplit.", "members_class" : [{"label" : "getCurrentValue", "tail" : "(): Record", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.Record", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#close():Unit", "kind" : "def"}, {"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getProgress():Float", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html", "kind" : "class"}], "com.jnpersson.discount.hash" : [{"name" : "com.jnpersson.discount.hash.BundledMinimizers", "shortDescription" : "Object to manage minimizer files that are stored directly on the classpath (e.g.", "object" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html", "members_object" : [{"label" : "getMinimizers", "tail" : "(k: Int, m: Int): Option[Array[String]]", "member" : "com.jnpersson.discount.hash.BundledMinimizers.getMinimizers", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#getMinimizers(k:Int,m:Int):Option[Array[String]]", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.InputFragment", "shortDescription" : "A sequence fragment with a controlled maximum size.", "members_case class" : [{"member" : "com.jnpersson.discount.hash.InputFragment#", "error" : "unsupported entity"}, {"label" : "nucleotides", "tail" : ": NTSeq", "member" : "com.jnpersson.discount.hash.InputFragment.nucleotides", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#nucleotides:com.jnpersson.discount.NTSeq", "kind" : "val"}, {"label" : "location", "tail" : ": SeqLocation", "member" : "com.jnpersson.discount.hash.InputFragment.location", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#location:com.jnpersson.discount.SeqLocation", "kind" : "val"}, {"label" : "header", "tail" : ": SeqTitle", "member" : "com.jnpersson.discount.hash.InputFragment.header", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#header:com.jnpersson.discount.SeqTitle", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/InputFragment.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.hash.MinimizerPriorities", "members_trait" : [{"label" : "numLargeBuckets", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.numLargeBuckets", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#numLargeBuckets:Long", "kind" : "def"}, {"label" : "humanReadable", "tail" : "(priority: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#humanReadable(priority:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "numMinimizers", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.numMinimizers", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#numMinimizers:Long", "kind" : "abstract def"}, {"label" : "width", "tail" : "(): Int", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.width", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#width:Int", "kind" : "abstract def"}, {"label" : "motifForPriority", "tail" : "(priority: BucketId): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.motifForPriority", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#motifForPriority(priority:com.jnpersson.discount.hash.BucketId):Long", "kind" : "abstract def"}, {"label" : "priorityLookup", "tail" : "(motif: Long): BucketId", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.priorityLookup", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#priorityLookup(motif:Long):com.jnpersson.discount.hash.BucketId", "kind" : "abstract def"}], "shortDescription" : "Defines a reversible mapping between encoded minimizers and their priorities.", "trait" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.hash.MinSplitter", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html", "members_object" : [{"label" : "INVALID", "tail" : ": Long", "member" : "com.jnpersson.discount.hash.MinSplitter.INVALID", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#INVALID:Long", "kind" : "val"}, {"label" : "largeThreshold", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.MinSplitter.largeThreshold", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#largeThreshold:Int", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "humanReadable", "tail" : "(id: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinSplitter.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#humanReadable(id:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "splitEncodeLocation", "tail" : "(read: InputFragment, sequenceIDs: Map[SeqTitle, SeqID]): Iterator[SplitSegment]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitEncodeLocation", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitEncodeLocation(read:com.jnpersson.discount.hash.InputFragment,sequenceIDs:Map[com.jnpersson.discount.SeqTitle,com.jnpersson.discount.SeqID]):Iterator[com.jnpersson.discount.hash.SplitSegment]", "kind" : "def"}, {"label" : "splitRead", "tail" : "(encoded: ZeroNTBitArray, matches: Array[Long]): Iterator[(Int, Long, ZeroNTBitArray, SeqLocation)]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitRead", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitRead(encoded:com.jnpersson.discount.util.ZeroNTBitArray,matches:Array[Long]):Iterator[(Int,Long,com.jnpersson.discount.util.ZeroNTBitArray,com.jnpersson.discount.SeqLocation)]", "kind" : "def"}, {"label" : "splitRead", "tail" : "(encoded: ZeroNTBitArray, reverseComplement: Boolean): Iterator[(Int, Long, ZeroNTBitArray, SeqLocation)]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitRead", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitRead(encoded:com.jnpersson.discount.util.ZeroNTBitArray,reverseComplement:Boolean):Iterator[(Int,Long,com.jnpersson.discount.util.ZeroNTBitArray,com.jnpersson.discount.SeqLocation)]", "kind" : "def"}, {"label" : "splitEncode", "tail" : "(read: NTSeq, addRC: Boolean): Iterator[(Int, Long, ZeroNTBitArray, SeqLocation)]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitEncode", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitEncode(read:com.jnpersson.discount.NTSeq,addRC:Boolean):Iterator[(Int,Long,com.jnpersson.discount.util.ZeroNTBitArray,com.jnpersson.discount.SeqLocation)]", "kind" : "def"}, {"label" : "scanner", "tail" : ": ShiftScanner", "member" : "com.jnpersson.discount.hash.MinSplitter.scanner", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#scanner:com.jnpersson.discount.hash.ShiftScanner", "kind" : "lazy val"}, {"member" : "com.jnpersson.discount.hash.MinSplitter#", "error" : "unsupported entity"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.MinSplitter.k", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#k:Int", "kind" : "val"}, {"label" : "priorities", "tail" : ": P", "member" : "com.jnpersson.discount.hash.MinSplitter.priorities", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#priorities:P", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/MinSplitter.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.MinTable", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/hash\/MinTable$.html", "members_object" : [{"label" : "filteredOrdering", "tail" : "(template: MinTable, validMers: Iterable[NTSeq]): MinTable", "member" : "com.jnpersson.discount.hash.MinTable.filteredOrdering", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#filteredOrdering(template:com.jnpersson.discount.hash.MinTable,validMers:Iterable[com.jnpersson.discount.NTSeq]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "using", "tail" : "(mers: Seq[NTSeq]): MinTable", "member" : "com.jnpersson.discount.hash.MinTable.using", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#using(mers:Seq[com.jnpersson.discount.NTSeq]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "ofLength", "tail" : "(length: Int, rna: Boolean): MinTable", "member" : "com.jnpersson.discount.hash.MinTable.ofLength", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#ofLength(length:Int,rna:Boolean):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "motifsOfLength", "tail" : "(length: Int, rna: Boolean): Iterator[NTSeq]", "member" : "com.jnpersson.discount.hash.MinTable.motifsOfLength", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#motifsOfLength(length:Int,rna:Boolean):Iterator[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "all1mersRNA", "tail" : ": List[String]", "member" : "com.jnpersson.discount.hash.MinTable.all1mersRNA", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#all1mersRNA:List[String]", "kind" : "val"}, {"label" : "all1mersDNA", "tail" : ": List[String]", "member" : "com.jnpersson.discount.hash.MinTable.all1mersDNA", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#all1mersDNA:List[String]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "priorityLookupArray", "tail" : ": Array[Int]", "member" : "com.jnpersson.discount.hash.MinTable.priorityLookupArray", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#priorityLookupArray:Array[Int]", "kind" : "val"}, {"label" : "motifForPriority", "tail" : "(priority: BucketId): Long", "member" : "com.jnpersson.discount.hash.MinTable.motifForPriority", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#motifForPriority(priority:com.jnpersson.discount.hash.BucketId):Long", "kind" : "def"}, {"label" : "priorityLookup", "tail" : "(motif: Long): BucketId", "member" : "com.jnpersson.discount.hash.MinTable.priorityLookup", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#priorityLookup(motif:Long):com.jnpersson.discount.hash.BucketId", "kind" : "def"}, {"label" : "encodedMotif", "tail" : "(motif: NTSeq): Int", "member" : "com.jnpersson.discount.hash.MinTable.encodedMotif", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#encodedMotif(motif:com.jnpersson.discount.NTSeq):Int", "kind" : "def"}, {"label" : "scanner", "tail" : ": ShiftScanner", "member" : "com.jnpersson.discount.hash.MinTable.scanner", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#scanner:com.jnpersson.discount.hash.ShiftScanner", "kind" : "lazy val"}, {"label" : "numLargeBuckets", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinTable.numLargeBuckets", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#numLargeBuckets:Long", "kind" : "def"}, {"label" : "humanReadable", "tail" : "(priority: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinTable.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#humanReadable(priority:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "numMinimizers", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinTable.numMinimizers", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#numMinimizers:Long", "kind" : "def"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.MinTable.width", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#width:Int", "kind" : "val"}, {"member" : "com.jnpersson.discount.hash.MinTable#", "error" : "unsupported entity"}, {"label" : "largeBuckets", "tail" : ": ArrayBuffer[NTSeq]", "member" : "com.jnpersson.discount.hash.MinTable.largeBuckets", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#largeBuckets:scala.collection.mutable.ArrayBuffer[com.jnpersson.discount.NTSeq]", "kind" : "val"}, {"label" : "byPriority", "tail" : ": ArrayBuffer[NTSeq]", "member" : "com.jnpersson.discount.hash.MinTable.byPriority", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#byPriority:scala.collection.mutable.ArrayBuffer[com.jnpersson.discount.NTSeq]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/MinTable.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.Orderings", "shortDescription" : "Routines for creating minimizer orderings.", "object" : "com\/jnpersson\/discount\/hash\/Orderings$.html", "members_object" : [{"label" : "randomOrdering", "tail" : "(template: MinTable): MinTable", "member" : "com.jnpersson.discount.hash.Orderings.randomOrdering", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#randomOrdering(template:com.jnpersson.discount.hash.MinTable):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "signatureHighPriority", "tail" : "(motif: String): Boolean", "member" : "com.jnpersson.discount.hash.Orderings.signatureHighPriority", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#signatureHighPriority(motif:String):Boolean", "kind" : "def"}, {"label" : "minimizerSignatureTable", "tail" : "(template: MinTable): MinTable", "member" : "com.jnpersson.discount.hash.Orderings.minimizerSignatureTable", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#minimizerSignatureTable(template:com.jnpersson.discount.hash.MinTable):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.PosRankWindow", "shortDescription" : "Tracks Motifs in a moving window, such that the top priority item can always be obtained efficiently.", "members_class" : [{"label" : "hasNext", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.hash.PosRankWindow.hasNext", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#hasNext:Boolean", "kind" : "def"}, {"label" : "next", "tail" : "(): Int", "member" : "com.jnpersson.discount.hash.PosRankWindow.next", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#next:Int", "kind" : "def"}, {"label" : "head", "tail" : "(): Int", "member" : "com.jnpersson.discount.hash.PosRankWindow.head", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#head:Int", "kind" : "def"}, {"label" : "advanceWindow", "tail" : "(): Unit", "member" : "com.jnpersson.discount.hash.PosRankWindow.advanceWindow", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#advanceWindow():Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.PosRankWindow#", "error" : "unsupported entity"}, {"label" : "motifRanks", "tail" : ": Array[Long]", "member" : "com.jnpersson.discount.hash.PosRankWindow.motifRanks", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#motifRanks:Array[Long]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.hash.RandomXOR", "shortDescription" : "Compute minimizer priority by XORing with a random mask", "members_case class" : [{"label" : "motifForPriority", "tail" : "(priority: BucketId): Long", "member" : "com.jnpersson.discount.hash.RandomXOR.motifForPriority", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#motifForPriority(priority:com.jnpersson.discount.hash.BucketId):Long", "kind" : "def"}, {"label" : "numMinimizers", "tail" : ": Long", "member" : "com.jnpersson.discount.hash.RandomXOR.numMinimizers", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#numMinimizers:Long", "kind" : "val"}, {"label" : "priorityLookup", "tail" : "(motif: Long): BucketId", "member" : "com.jnpersson.discount.hash.RandomXOR.priorityLookup", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#priorityLookup(motif:Long):com.jnpersson.discount.hash.BucketId", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.RandomXOR#", "error" : "unsupported entity"}, {"label" : "canonical", "tail" : ": Boolean", "member" : "com.jnpersson.discount.hash.RandomXOR.canonical", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#canonical:Boolean", "kind" : "val"}, {"label" : "xorMask", "tail" : ": Long", "member" : "com.jnpersson.discount.hash.RandomXOR.xorMask", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#xorMask:Long", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.RandomXOR.width", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#width:Int", "kind" : "val"}, {"label" : "numLargeBuckets", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.numLargeBuckets", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#numLargeBuckets:Long", "kind" : "def"}, {"label" : "humanReadable", "tail" : "(priority: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#humanReadable(priority:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/RandomXOR.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.hash.SampledFrequencies", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html", "members_object" : [{"label" : "fromReads", "tail" : "(scanner: ShiftScanner, inputs: Iterator[NTSeq]): SampledFrequencies", "member" : "com.jnpersson.discount.hash.SampledFrequencies.fromReads", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#fromReads(scanner:com.jnpersson.discount.hash.ShiftScanner,inputs:Iterator[com.jnpersson.discount.NTSeq]):com.jnpersson.discount.hash.SampledFrequencies", "kind" : "def"}, {"label" : "toTableByFrequency", "tail" : "(counts: Array[(NTSeq, Long)]): MinTable", "member" : "com.jnpersson.discount.hash.SampledFrequencies.toTableByFrequency", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#toTableByFrequency(counts:Array[(com.jnpersson.discount.NTSeq,Long)]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "toTable", "tail" : "(sampledFraction: Double): MinTable", "member" : "com.jnpersson.discount.hash.SampledFrequencies.toTable", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#toTable(sampledFraction:Double):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "print", "tail" : "(): Unit", "member" : "com.jnpersson.discount.hash.SampledFrequencies.print", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#print():Unit", "kind" : "def"}, {"label" : "motifsWithCounts", "tail" : ": Array[(NTSeq, Int)]", "member" : "com.jnpersson.discount.hash.SampledFrequencies.motifsWithCounts", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#motifsWithCounts:Array[(com.jnpersson.discount.NTSeq,Int)]", "kind" : "lazy val"}, {"label" : "add", "tail" : "(other: SampledFrequencies): SampledFrequencies", "member" : "com.jnpersson.discount.hash.SampledFrequencies.add", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#add(other:com.jnpersson.discount.hash.SampledFrequencies):com.jnpersson.discount.hash.SampledFrequencies", "kind" : "def"}, {"label" : "lookup", "tail" : ": Array[Int]", "member" : "com.jnpersson.discount.hash.SampledFrequencies.lookup", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#lookup:Array[Int]", "kind" : "val"}, {"member" : "com.jnpersson.discount.hash.SampledFrequencies#", "error" : "unsupported entity"}, {"label" : "counts", "tail" : ": Array[(Long, Int)]", "member" : "com.jnpersson.discount.hash.SampledFrequencies.counts", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#counts:Array[(Long,Int)]", "kind" : "val"}, {"label" : "table", "tail" : ": MinTable", "member" : "com.jnpersson.discount.hash.SampledFrequencies.table", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#table:com.jnpersson.discount.hash.MinTable", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.ShiftScanner", "shortDescription" : "Bit-shift scanner for fixed width motifs.", "members_case class" : [{"label" : "matchesOnly", "tail" : "(data: (Int) ⇒ Int, len: Int): Iterator[Long]", "member" : "com.jnpersson.discount.hash.ShiftScanner.matchesOnly", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#matchesOnly(data:Int=>Int,len:Int):Iterator[Long]", "kind" : "def"}, {"label" : "allMatches", "tail" : "(data: (Int) ⇒ Int, size: Int): (ZeroNTBitArray, Array[Long])", "member" : "com.jnpersson.discount.hash.ShiftScanner.allMatches", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#allMatches(data:Int=>Int,size:Int):(com.jnpersson.discount.util.ZeroNTBitArray,Array[Long])", "kind" : "def"}, {"label" : "allMatches", "tail" : "(data: ZeroNTBitArray, reverseComplement: Boolean): (ZeroNTBitArray, Array[Long])", "member" : "com.jnpersson.discount.hash.ShiftScanner.allMatches", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#allMatches(data:com.jnpersson.discount.util.ZeroNTBitArray,reverseComplement:Boolean):(com.jnpersson.discount.util.ZeroNTBitArray,Array[Long])", "kind" : "def"}, {"label" : "matchesOnly", "tail" : "(data: NTSeq): Iterator[Long]", "member" : "com.jnpersson.discount.hash.ShiftScanner.matchesOnly", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#matchesOnly(data:com.jnpersson.discount.NTSeq):Iterator[Long]", "kind" : "def"}, {"label" : "allMatches", "tail" : "(data: NTSeq): (ZeroNTBitArray, Array[Long])", "member" : "com.jnpersson.discount.hash.ShiftScanner.allMatches", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#allMatches(data:com.jnpersson.discount.NTSeq):(com.jnpersson.discount.util.ZeroNTBitArray,Array[Long])", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.ShiftScanner#", "error" : "unsupported entity"}, {"label" : "priorities", "tail" : ": MinimizerPriorities", "member" : "com.jnpersson.discount.hash.ShiftScanner.priorities", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#priorities:com.jnpersson.discount.hash.MinimizerPriorities", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.hash.SplitSegment", "shortDescription" : "A hashed segment (i.e.", "members_case class" : [{"label" : "humanReadable", "tail" : "(splitter: AnyMinSplitter): (String, SeqID, SeqLocation, NTSeq)", "member" : "com.jnpersson.discount.hash.SplitSegment.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#humanReadable(splitter:com.jnpersson.discount.spark.AnyMinSplitter):(String,com.jnpersson.discount.SeqID,com.jnpersson.discount.SeqLocation,com.jnpersson.discount.NTSeq)", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.SplitSegment#", "error" : "unsupported entity"}, {"label" : "nucleotides", "tail" : ": ZeroNTBitArray", "member" : "com.jnpersson.discount.hash.SplitSegment.nucleotides", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#nucleotides:com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "val"}, {"label" : "location", "tail" : ": SeqLocation", "member" : "com.jnpersson.discount.hash.SplitSegment.location", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#location:com.jnpersson.discount.SeqLocation", "kind" : "val"}, {"label" : "sequence", "tail" : ": SeqID", "member" : "com.jnpersson.discount.hash.SplitSegment.sequence", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#sequence:com.jnpersson.discount.SeqID", "kind" : "val"}, {"label" : "hash", "tail" : ": BucketId", "member" : "com.jnpersson.discount.hash.SplitSegment.hash", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#hash:com.jnpersson.discount.hash.BucketId", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/SplitSegment.html", "kind" : "case class"}], "com.jnpersson.discount" : [{"name" : "com.jnpersson.discount.Frequency", "shortDescription" : "Ordering by frequency (rare to common)", "object" : "com\/jnpersson\/discount\/package$$Frequency$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.Given", "shortDescription" : "A user-specified ordering", "object" : "com\/jnpersson\/discount\/package$$Given$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Given$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Given$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Given$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Given$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Given$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Given$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Given$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Given$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Given$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Given$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Given$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Given$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Given$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Given$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Given$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Given$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Given$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.Lexicographic", "shortDescription" : "Lexicographic (alphabetical) ordering", "object" : "com\/jnpersson\/discount\/package$$Lexicographic$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.MinimizerOrdering", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "shortDescription" : "A type of ordering of a minimizer set", "trait" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.Random", "shortDescription" : "Random ordering", "object" : "com\/jnpersson\/discount\/package$$Random$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Random$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Random$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Random$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Random$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Random$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Random$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Random$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Random$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Random$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Random$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Random$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Random$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Random$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Random$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Random$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Random$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Random$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.ReadSplitDemo", "shortDescription" : "Minimal test program that demonstrates using the Discount APIto split reads into super-mers without using Spark.", "object" : "com\/jnpersson\/discount\/ReadSplitDemo$.html", "members_object" : [{"label" : "writeToFile", "tail" : "(conf: ReadSplitConf, destination: String): Unit", "member" : "com.jnpersson.discount.ReadSplitDemo.writeToFile", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#writeToFile(conf:com.jnpersson.discount.ReadSplitConf,destination:String):Unit", "kind" : "def"}, {"label" : "prettyOutput", "tail" : "(conf: ReadSplitConf): Unit", "member" : "com.jnpersson.discount.ReadSplitDemo.prettyOutput", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#prettyOutput(conf:com.jnpersson.discount.ReadSplitConf):Unit", "kind" : "def"}, {"label" : "main", "tail" : "(args: Array[String]): Unit", "member" : "com.jnpersson.discount.ReadSplitDemo.main", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#main(args:Array[String]):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.Signature", "shortDescription" : "Ordering by minimizer signature, as in KMC2\/3", "object" : "com\/jnpersson\/discount\/package$$Signature$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Signature$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}], "com" : [], "com.jnpersson.discount.util" : [{"name" : "com.jnpersson.discount.util.Arrays", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/Arrays$.html", "members_object" : [{"label" : "fillNew", "tail" : "(size: Int, elem: T)(arg0: ClassTag[T]): Array[T]", "member" : "com.jnpersson.discount.util.Arrays.fillNew", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#fillNew[T](size:Int,elem:T)(implicitevidence$1:scala.reflect.ClassTag[T]):Array[T]", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.BitRepresentation", "shortDescription" : "Helper functions for working with a low level bit representation of nucleotide sequences.", "object" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html", "members_object" : [{"label" : "bytesToString", "tail" : "(bytes: Array[Byte], builder: StringBuilder, offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.BitRepresentation.bytesToString", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#bytesToString(bytes:Array[Byte],builder:StringBuilder,offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "stringToBytes", "tail" : "(bps: NTSeq): Array[Byte]", "member" : "com.jnpersson.discount.util.BitRepresentation.stringToBytes", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#stringToBytes(bps:com.jnpersson.discount.NTSeq):Array[Byte]", "kind" : "def"}, {"label" : "quadToByte", "tail" : "(quad: String, offset: Int): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.quadToByte", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#quadToByte(quad:String,offset:Int):Byte", "kind" : "def"}, {"label" : "twobitToChar", "tail" : "(byte: Byte): Char", "member" : "com.jnpersson.discount.util.BitRepresentation.twobitToChar", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#twobitToChar(byte:Byte):Char", "kind" : "def"}, {"label" : "charToTwobitWithInvalid", "tail" : "(char: Char): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.charToTwobitWithInvalid", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#charToTwobitWithInvalid(char:Char):Byte", "kind" : "def"}, {"label" : "charToTwobit", "tail" : "(char: Char): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.charToTwobit", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#charToTwobit(char:Char):Byte", "kind" : "def"}, {"label" : "INVALID", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.INVALID", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#INVALID:Byte", "kind" : "val"}, {"label" : "WHITESPACE", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.WHITESPACE", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#WHITESPACE:Byte", "kind" : "val"}, {"label" : "byteToQuad", "tail" : "(byte: Byte): NTSeq", "member" : "com.jnpersson.discount.util.BitRepresentation.byteToQuad", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#byteToQuad(byte:Byte):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "byteToQuadLookup", "tail" : ": Array[NTSeq]", "member" : "com.jnpersson.discount.util.BitRepresentation.byteToQuadLookup", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#byteToQuadLookup:Array[com.jnpersson.discount.NTSeq]", "kind" : "val"}, {"label" : "quadToByte", "tail" : "(quad: NTSeq): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.quadToByte", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#quadToByte(quad:com.jnpersson.discount.NTSeq):Byte", "kind" : "def"}, {"label" : "reverseComplement", "tail" : "(encodedNTs: Long, width: Int, complementMask: Long): Long", "member" : "com.jnpersson.discount.util.BitRepresentation.reverseComplement", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#reverseComplement(encodedNTs:Long,width:Int,complementMask:Long):Long", "kind" : "def"}, {"label" : "complement", "tail" : "(byte: Byte): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.complement", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#complement(byte:Byte):Byte", "kind" : "def"}, {"label" : "complementOne", "tail" : "(byte: Byte): Int", "member" : "com.jnpersson.discount.util.BitRepresentation.complementOne", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#complementOne(byte:Byte):Int", "kind" : "def"}, {"label" : "twobits", "tail" : ": List[Byte]", "member" : "com.jnpersson.discount.util.BitRepresentation.twobits", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#twobits:List[Byte]", "kind" : "val"}, {"label" : "U", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.U", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#U:Byte", "kind" : "val"}, {"label" : "T", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.T", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#T:Byte", "kind" : "val"}, {"label" : "G", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.G", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#G:Byte", "kind" : "val"}, {"label" : "C", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.C", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#C:Byte", "kind" : "val"}, {"label" : "A", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.A", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#A:Byte", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.DNAHelpers", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html", "members_object" : [{"label" : "reverseComplement", "tail" : "(data: String): String", "member" : "com.jnpersson.discount.util.DNAHelpers.reverseComplement", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#reverseComplement(data:String):String", "kind" : "def"}, {"label" : "complement", "tail" : "(data: String): String", "member" : "com.jnpersson.discount.util.DNAHelpers.complement", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#complement(data:String):String", "kind" : "def"}, {"label" : "charComplement", "tail" : "(bp: Char): Char", "member" : "com.jnpersson.discount.util.DNAHelpers.charComplement", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#charComplement(bp:Char):Char", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.EmptyRowTagProvider", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html", "members_object" : [{"label" : "writeForCol", "tail" : "(col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.EmptyRowTagProvider.writeForCol", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#writeForCol(col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.InvalidNucleotideException", "shortDescription" : "Thrown when we encounter a letter in the sequence input that we do not expect to see", "members_class" : [{"member" : "com.jnpersson.discount.util.InvalidNucleotideException#", "error" : "unsupported entity"}, {"label" : "invalidChar", "tail" : ": Char", "member" : "com.jnpersson.discount.util.InvalidNucleotideException.invalidChar", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#invalidChar:Char", "kind" : "val"}, {"label" : "getSuppressed", "tail" : "(): Array[Throwable]", "member" : "java.lang.Throwable.getSuppressed", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getSuppressed():Array[Throwable]", "kind" : "final def"}, {"label" : "addSuppressed", "tail" : "(arg0: Throwable): Unit", "member" : "java.lang.Throwable.addSuppressed", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#addSuppressed(x$1:Throwable):Unit", "kind" : "final def"}, {"label" : "setStackTrace", "tail" : "(arg0: Array[StackTraceElement]): Unit", "member" : "java.lang.Throwable.setStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#setStackTrace(x$1:Array[StackTraceElement]):Unit", "kind" : "def"}, {"label" : "getStackTrace", "tail" : "(): Array[StackTraceElement]", "member" : "java.lang.Throwable.getStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getStackTrace():Array[StackTraceElement]", "kind" : "def"}, {"label" : "fillInStackTrace", "tail" : "(): Throwable", "member" : "java.lang.Throwable.fillInStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#fillInStackTrace():Throwable", "kind" : "def"}, {"label" : "printStackTrace", "tail" : "(arg0: PrintWriter): Unit", "member" : "java.lang.Throwable.printStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#printStackTrace(x$1:java.io.PrintWriter):Unit", "kind" : "def"}, {"label" : "printStackTrace", "tail" : "(arg0: PrintStream): Unit", "member" : "java.lang.Throwable.printStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#printStackTrace(x$1:java.io.PrintStream):Unit", "kind" : "def"}, {"label" : "printStackTrace", "tail" : "(): Unit", "member" : "java.lang.Throwable.printStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#printStackTrace():Unit", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "java.lang.Throwable.toString", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#toString():String", "kind" : "def"}, {"label" : "initCause", "tail" : "(arg0: Throwable): Throwable", "member" : "java.lang.Throwable.initCause", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#initCause(x$1:Throwable):Throwable", "kind" : "def"}, {"label" : "getCause", "tail" : "(): Throwable", "member" : "java.lang.Throwable.getCause", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getCause():Throwable", "kind" : "def"}, {"label" : "getLocalizedMessage", "tail" : "(): String", "member" : "java.lang.Throwable.getLocalizedMessage", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getLocalizedMessage():String", "kind" : "def"}, {"label" : "getMessage", "tail" : "(): String", "member" : "java.lang.Throwable.getMessage", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getMessage():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/KmerTable$.html", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#size:Int", "kind" : "val"}, {"member" : "com.jnpersson.discount.util.KmerTable#", "error" : "unsupported entity"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmer(i:Int):Array[Long]", "kind" : "abstract def"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "abstract def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "abstract def"}], "members_object" : [{"label" : "fromSupermers", "tail" : "(supermers: Iterable[NTBitArray], k: Int, forwardOnly: Boolean, sort: Boolean, tagData: TagProvider): KmerTable", "member" : "com.jnpersson.discount.util.KmerTable.fromSupermers", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#fromSupermers(supermers:Iterable[com.jnpersson.discount.util.NTBitArray],k:Int,forwardOnly:Boolean,sort:Boolean,tagData:com.jnpersson.discount.util.TagProvider):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "fromSegments", "tail" : "(segments: Iterable[NTBitArray], abundances: Array[Int], k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.util.KmerTable.fromSegments", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#fromSegments(segments:Iterable[com.jnpersson.discount.util.NTBitArray],abundances:Array[Int],k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "fromSegment", "tail" : "(segment: NTBitArray, k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.util.KmerTable.fromSegment", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#fromSegment(segment:com.jnpersson.discount.util.NTBitArray,k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "builder", "tail" : "(k: Int, sizeEstimate: Int, tagWidth: Int): KmerTableBuilder", "member" : "com.jnpersson.discount.util.KmerTable.builder", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#builder(k:Int,sizeEstimate:Int,tagWidth:Int):com.jnpersson.discount.util.KmerTableBuilder", "kind" : "def"}, {"label" : "longsForK", "tail" : "(k: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable.longsForK", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#longsForK(k:Int):Int", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.util.KmerTable1", "shortDescription" : "Specialized KmerTable for n = 1 (k <= 32)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable1.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable1.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable1.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable1#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable1.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable2", "shortDescription" : "Specialized KmerTable for n = 2 (k <= 64)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable2.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable2.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable2.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable2#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable2.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable3", "shortDescription" : "Specialized KmerTable for n = 3 (k <= 96)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable3.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable3.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable3.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable3#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable3.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable4", "shortDescription" : "Specialized KmerTable for n = 4 (k <= 128)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable4.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable4.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable4.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable4#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable4.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTableBuilder", "shortDescription" : "Builder for k-mer tables.", "members_class" : [{"label" : "result", "tail" : "(sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.util.KmerTableBuilder.result", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#result(sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "addLongs", "tail" : "(xs: Array[Long]): Unit", "member" : "com.jnpersson.discount.util.KmerTableBuilder.addLongs", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#addLongs(xs:Array[Long]):Unit", "kind" : "def"}, {"label" : "addLong", "tail" : "(x: Long): Unit", "member" : "com.jnpersson.discount.util.KmerTableBuilder.addLong", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#addLong(x:Long):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTableBuilder#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTableN", "shortDescription" : "General KmerTable for any value of n", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTableN.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTableN.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTableN.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTableN#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTableN.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.NestedRowTagProvider", "shortDescription" : "Wrap a TagProvider into a RowTagProvider by fixing the row", "members_class" : [{"label" : "writeForCol", "tail" : "(col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.NestedRowTagProvider.writeForCol", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#writeForCol(col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.NestedRowTagProvider#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.NTBitArray", "members_trait" : [{"label" : "copyPartAsLongArray", "tail" : "(writeTo: Array[Long], offset: Int, size: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.copyPartAsLongArray", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#copyPartAsLongArray(writeTo:Array[Long],offset:Int,size:Int):Unit", "kind" : "def"}, {"label" : "partAsLongArray", "tail" : "(offset: Int, size: Int): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.partAsLongArray", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#partAsLongArray(offset:Int,size:Int):Array[Long]", "kind" : "final def"}, {"label" : "writeKmersToBuilder", "tail" : "(destination: KmerTableBuilder, k: Int, forwardOnly: Boolean, provider: RowTagProvider): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.writeKmersToBuilder", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#writeKmersToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,k:Int,forwardOnly:Boolean,provider:com.jnpersson.discount.util.RowTagProvider):Unit", "kind" : "def"}, {"label" : "kmersAsLongArrays", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.NTBitArray.kmersAsLongArrays", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#kmersAsLongArrays(k:Int,onlyForwardOrientation:Boolean):Iterator[Array[Long]]", "kind" : "def"}, {"label" : "kmers", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[NTBitArray]", "member" : "com.jnpersson.discount.util.NTBitArray.kmers", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#kmers(k:Int,onlyForwardOrientation:Boolean):Iterator[com.jnpersson.discount.util.NTBitArray]", "kind" : "def"}, {"label" : "apply", "tail" : "(pos: Int): Byte", "member" : "com.jnpersson.discount.util.NTBitArray.apply", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#apply(pos:Int):Byte", "kind" : "def"}, {"label" : "sliceIsForwardOrientation", "tail" : "(pos: Int, size: Int): Boolean", "member" : "com.jnpersson.discount.util.NTBitArray.sliceIsForwardOrientation", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#sliceIsForwardOrientation(pos:Int,size:Int):Boolean", "kind" : "def"}, {"label" : "sliceAsCopy", "tail" : "(offset: Int, length: Int): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.sliceAsCopy", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#sliceAsCopy(offset:Int,length:Int):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, length: Int): NTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.slice", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#slice(from:Int,length:Int):com.jnpersson.discount.util.NTBitArray", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.NTBitArray.toString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#toString():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "size", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.NTBitArray.size", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#size:Int", "kind" : "abstract def"}, {"label" : "offset", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.NTBitArray.offset", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#offset:Int", "kind" : "abstract def"}, {"label" : "data", "tail" : "(): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.data", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#data:Array[Long]", "kind" : "abstract def"}], "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/NTBitArray$.html", "members_object" : [{"label" : "longsToString", "tail" : "(buffer: ByteBuffer, builder: StringBuilder, data: Array[Long], offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.NTBitArray.longsToString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#longsToString(buffer:java.nio.ByteBuffer,builder:StringBuilder,data:Array[Long],offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "longsToString", "tail" : "(data: Array[Long], offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.NTBitArray.longsToString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#longsToString(data:Array[Long],offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "fixedSizeDecoder", "tail" : "(size: Int): NTBitDecoder", "member" : "com.jnpersson.discount.util.NTBitArray.fixedSizeDecoder", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#fixedSizeDecoder(size:Int):com.jnpersson.discount.util.NTBitDecoder", "kind" : "def"}, {"label" : "shiftLongKmerAndWrite", "tail" : "(data: Array[Long], addRight: Byte, k: Int, destination: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.shiftLongKmerAndWrite", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#shiftLongKmerAndWrite(data:Array[Long],addRight:Byte,k:Int,destination:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "def"}, {"label" : "shiftLongArrayKmerLeft", "tail" : "(data: Array[Long], addRight: Byte, k: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.shiftLongArrayKmerLeft", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#shiftLongArrayKmerLeft(data:Array[Long],addRight:Byte,k:Int):Unit", "kind" : "def"}, {"label" : "encode", "tail" : "(data: NTSeq): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.encode", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#encode(data:com.jnpersson.discount.NTSeq):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "trait" : "com\/jnpersson\/discount\/util\/NTBitArray.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.util.NTBitDecoder", "shortDescription" : "Methods for decoding NT sequences of a fixed length, with reusable buffers.", "members_class" : [{"label" : "longsToString", "tail" : "(data: Array[Long], offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.NTBitDecoder.longsToString", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#longsToString(data:Array[Long],offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.NTBitDecoder#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.OffsetNTBitArray", "shortDescription" : "An NTBitArray that begins at some offset in its binary data", "members_case class" : [{"member" : "com.jnpersson.discount.util.OffsetNTBitArray#", "error" : "unsupported entity"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.OffsetNTBitArray.size", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#size:Int", "kind" : "val"}, {"label" : "offset", "tail" : ": Int", "member" : "com.jnpersson.discount.util.OffsetNTBitArray.offset", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#offset:Int", "kind" : "val"}, {"label" : "data", "tail" : ": Array[Long]", "member" : "com.jnpersson.discount.util.OffsetNTBitArray.data", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#data:Array[Long]", "kind" : "val"}, {"label" : "copyPartAsLongArray", "tail" : "(writeTo: Array[Long], offset: Int, size: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.copyPartAsLongArray", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#copyPartAsLongArray(writeTo:Array[Long],offset:Int,size:Int):Unit", "kind" : "def"}, {"label" : "partAsLongArray", "tail" : "(offset: Int, size: Int): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.partAsLongArray", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#partAsLongArray(offset:Int,size:Int):Array[Long]", "kind" : "final def"}, {"label" : "writeKmersToBuilder", "tail" : "(destination: KmerTableBuilder, k: Int, forwardOnly: Boolean, provider: RowTagProvider): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.writeKmersToBuilder", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#writeKmersToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,k:Int,forwardOnly:Boolean,provider:com.jnpersson.discount.util.RowTagProvider):Unit", "kind" : "def"}, {"label" : "kmersAsLongArrays", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.NTBitArray.kmersAsLongArrays", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#kmersAsLongArrays(k:Int,onlyForwardOrientation:Boolean):Iterator[Array[Long]]", "kind" : "def"}, {"label" : "kmers", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[NTBitArray]", "member" : "com.jnpersson.discount.util.NTBitArray.kmers", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#kmers(k:Int,onlyForwardOrientation:Boolean):Iterator[com.jnpersson.discount.util.NTBitArray]", "kind" : "def"}, {"label" : "apply", "tail" : "(pos: Int): Byte", "member" : "com.jnpersson.discount.util.NTBitArray.apply", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#apply(pos:Int):Byte", "kind" : "def"}, {"label" : "sliceIsForwardOrientation", "tail" : "(pos: Int, size: Int): Boolean", "member" : "com.jnpersson.discount.util.NTBitArray.sliceIsForwardOrientation", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#sliceIsForwardOrientation(pos:Int,size:Int):Boolean", "kind" : "def"}, {"label" : "sliceAsCopy", "tail" : "(offset: Int, length: Int): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.sliceAsCopy", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#sliceAsCopy(offset:Int,length:Int):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, length: Int): NTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.slice", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#slice(from:Int,length:Int):com.jnpersson.discount.util.NTBitArray", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.NTBitArray.toString", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#toString():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.util.RowTagProvider", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "writeForCol", "tail" : "(col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.RowTagProvider.writeForCol", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#writeForCol(col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "abstract def"}], "shortDescription" : "Source of tags for a single row (super-mer) of k-mers", "trait" : "com\/jnpersson\/discount\/util\/RowTagProvider.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.util.TagProvider", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "writeForRowCol", "tail" : "(row: Int, col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.TagProvider.writeForRowCol", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#writeForRowCol(row:Int,col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "abstract def"}, {"label" : "tagWidth", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.TagProvider.tagWidth", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#tagWidth:Int", "kind" : "abstract def"}], "shortDescription" : "Source of tags for a set of k-mers arranged in two dimensions,where the row identifies a super-mer and the col identifies a k-mer position in the super-mer", "trait" : "com\/jnpersson\/discount\/util\/TagProvider.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.util.ZeroNTBitArray", "shortDescription" : "An NTBitArray that begins at offset zero in its binary data", "members_case class" : [{"label" : "offset", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.ZeroNTBitArray.offset", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#offset:Int", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.ZeroNTBitArray#", "error" : "unsupported entity"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.ZeroNTBitArray.size", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#size:Int", "kind" : "val"}, {"label" : "data", "tail" : ": Array[Long]", "member" : "com.jnpersson.discount.util.ZeroNTBitArray.data", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#data:Array[Long]", "kind" : "val"}, {"label" : "copyPartAsLongArray", "tail" : "(writeTo: Array[Long], offset: Int, size: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.copyPartAsLongArray", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#copyPartAsLongArray(writeTo:Array[Long],offset:Int,size:Int):Unit", "kind" : "def"}, {"label" : "partAsLongArray", "tail" : "(offset: Int, size: Int): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.partAsLongArray", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#partAsLongArray(offset:Int,size:Int):Array[Long]", "kind" : "final def"}, {"label" : "writeKmersToBuilder", "tail" : "(destination: KmerTableBuilder, k: Int, forwardOnly: Boolean, provider: RowTagProvider): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.writeKmersToBuilder", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#writeKmersToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,k:Int,forwardOnly:Boolean,provider:com.jnpersson.discount.util.RowTagProvider):Unit", "kind" : "def"}, {"label" : "kmersAsLongArrays", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.NTBitArray.kmersAsLongArrays", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#kmersAsLongArrays(k:Int,onlyForwardOrientation:Boolean):Iterator[Array[Long]]", "kind" : "def"}, {"label" : "kmers", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[NTBitArray]", "member" : "com.jnpersson.discount.util.NTBitArray.kmers", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#kmers(k:Int,onlyForwardOrientation:Boolean):Iterator[com.jnpersson.discount.util.NTBitArray]", "kind" : "def"}, {"label" : "apply", "tail" : "(pos: Int): Byte", "member" : "com.jnpersson.discount.util.NTBitArray.apply", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#apply(pos:Int):Byte", "kind" : "def"}, {"label" : "sliceIsForwardOrientation", "tail" : "(pos: Int, size: Int): Boolean", "member" : "com.jnpersson.discount.util.NTBitArray.sliceIsForwardOrientation", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#sliceIsForwardOrientation(pos:Int,size:Int):Boolean", "kind" : "def"}, {"label" : "sliceAsCopy", "tail" : "(offset: Int, length: Int): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.sliceAsCopy", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#sliceAsCopy(offset:Int,length:Int):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, length: Int): NTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.slice", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#slice(from:Int,length:Int):com.jnpersson.discount.util.NTBitArray", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.NTBitArray.toString", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#toString():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html", "kind" : "case class"}], "com.jnpersson.discount.spark" : [{"name" : "com.jnpersson.discount.spark.All", "shortDescription" : "Use all m-mers as minimizers.", "object" : "com\/jnpersson\/discount\/spark\/package$$All$.html", "members_object" : [{"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.All.load", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Auto", "shortDescription" : "Indicate that a strategy should be auto-selected", "object" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html", "members_object" : [{"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.Auto.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.CountMethod.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Bundled", "shortDescription" : "Bundled minimizers on the classpath (only available for some values of k and m).", "object" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html", "members_object" : [{"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.Bundled.load", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.CountedKmers", "shortDescription" : "A collection of counted k-mers represented in encoded form.", "members_class" : [{"label" : "writeTSV", "tail" : "(withKmers: Boolean, output: String): Unit", "member" : "com.jnpersson.discount.spark.CountedKmers.writeTSV", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#writeTSV(withKmers:Boolean,output:String):Unit", "kind" : "def"}, {"label" : "writeFasta", "tail" : "(output: String): Unit", "member" : "com.jnpersson.discount.spark.CountedKmers.writeFasta", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#writeFasta(output:String):Unit", "kind" : "def"}, {"label" : "withSequences", "tail" : "(): Dataset[(NTSeq, Abundance)]", "member" : "com.jnpersson.discount.spark.CountedKmers.withSequences", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#withSequences:org.apache.spark.sql.Dataset[(com.jnpersson.discount.NTSeq,com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "unpersist", "tail" : "(): CountedKmers.this.type", "member" : "com.jnpersson.discount.spark.CountedKmers.unpersist", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#unpersist():CountedKmers.this.type", "kind" : "def"}, {"label" : "cache", "tail" : "(): CountedKmers.this.type", "member" : "com.jnpersson.discount.spark.CountedKmers.cache", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#cache():CountedKmers.this.type", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.CountedKmers#", "error" : "unsupported entity"}, {"label" : "counts", "tail" : ": Dataset[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.spark.CountedKmers.counts", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#counts:org.apache.spark.sql.Dataset[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/CountedKmers.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.CountMethod", "members_trait" : [{"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.CountMethod.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.CountMethod.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "shortDescription" : "Defines a strategy for counting k-mers in Spark.", "trait" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.spark.Discount", "shortDescription" : "Main API entry point for Discount.", "object" : "com\/jnpersson\/discount\/spark\/Discount$.html", "members_object" : [{"label" : "main", "tail" : "(args: Array[String]): Unit", "member" : "com.jnpersson.discount.spark.Discount.main", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#main(args:Array[String]):Unit", "kind" : "def"}, {"label" : "sparkSession", "tail" : "(baseConf: SparkToolConf): SparkSession", "member" : "com.jnpersson.discount.spark.SparkTool.sparkSession", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#sparkSession(baseConf:com.jnpersson.discount.spark.SparkToolConf):org.apache.spark.sql.SparkSession", "kind" : "def"}, {"label" : "sparkSession", "tail" : "(): SparkSession", "member" : "com.jnpersson.discount.spark.SparkTool.sparkSession", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#sparkSession():org.apache.spark.sql.SparkSession", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "emptyIndex", "tail" : "(inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Discount.emptyIndex", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#emptyIndex(inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "index", "tail" : "(compatible: Index, inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Discount.index", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#index(compatible:com.jnpersson.discount.spark.Index,inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "index", "tail" : "(inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Discount.index", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#index(inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "kmers", "tail" : "(knownSplitter: Broadcast[AnyMinSplitter], inFiles: String*): Kmers", "member" : "com.jnpersson.discount.spark.Discount.kmers", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#kmers(knownSplitter:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter],inFiles:String*):com.jnpersson.discount.spark.Kmers", "kind" : "def"}, {"label" : "kmers", "tail" : "(inFiles: String*): Kmers", "member" : "com.jnpersson.discount.spark.Discount.kmers", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#kmers(inFiles:String*):com.jnpersson.discount.spark.Kmers", "kind" : "def"}, {"label" : "getSplitter", "tail" : "(inFiles: Option[Seq[String]], persistHash: Option[String]): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.Discount.getSplitter", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getSplitter(inFiles:Option[Seq[String]],persistHash:Option[String]):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "sequenceTitles", "tail" : "(input: String*): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.Discount.sequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#sequenceTitles(input:String*):org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getInputFragments", "tail" : "(file: String, addRCReads: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Discount.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputFragments(file:String,addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "getInputFragments", "tail" : "(files: Seq[String], addRCReads: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Discount.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputFragments(files:Seq[String],addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "getInputSequences", "tail" : "(file: String, addRCReads: Boolean): Dataset[NTSeq]", "member" : "com.jnpersson.discount.spark.Discount.getInputSequences", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputSequences(file:String,addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "getInputSequences", "tail" : "(files: Seq[String], addRCReads: Boolean): Dataset[NTSeq]", "member" : "com.jnpersson.discount.spark.Discount.getInputSequences", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputSequences(files:Seq[String],addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "inputReader", "tail" : "(files: String*): Inputs", "member" : "com.jnpersson.discount.spark.Discount.inputReader", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#inputReader(files:String*):com.jnpersson.discount.spark.Inputs", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Discount#", "error" : "unsupported entity"}, {"label" : "partitions", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.partitions", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#partitions:Int", "kind" : "val"}, {"label" : "method", "tail" : ": CountMethod", "member" : "com.jnpersson.discount.spark.Discount.method", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#method:com.jnpersson.discount.spark.CountMethod", "kind" : "val"}, {"label" : "normalize", "tail" : ": Boolean", "member" : "com.jnpersson.discount.spark.Discount.normalize", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#normalize:Boolean", "kind" : "val"}, {"label" : "maxSequenceLength", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.maxSequenceLength", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#maxSequenceLength:Int", "kind" : "val"}, {"label" : "sample", "tail" : ": Double", "member" : "com.jnpersson.discount.spark.Discount.sample", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#sample:Double", "kind" : "val"}, {"label" : "ordering", "tail" : ": MinimizerOrdering", "member" : "com.jnpersson.discount.spark.Discount.ordering", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#ordering:com.jnpersson.discount.MinimizerOrdering", "kind" : "val"}, {"label" : "m", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.m", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#m:Int", "kind" : "val"}, {"label" : "minimizers", "tail" : ": MinimizerSource", "member" : "com.jnpersson.discount.spark.Discount.minimizers", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#minimizers:com.jnpersson.discount.spark.MinimizerSource", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.k", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#k:Int", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Discount.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/Discount.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.spark.FastaOutputFormat", "shortDescription" : "", "members_class" : [{"label" : "getRecordWriter", "tail" : "(job: TaskAttemptContext): RecordWriter[K, V]", "member" : "com.jnpersson.discount.spark.FastaOutputFormat.getRecordWriter", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getRecordWriter(job:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordWriter[K,V]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.FastaOutputFormat#", "error" : "unsupported entity"}, {"label" : "getOutputCommitter", "tail" : "(arg0: TaskAttemptContext): OutputCommitter", "member" : "org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.getOutputCommitter", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getOutputCommitter(x$1:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.OutputCommitter", "kind" : "def"}, {"label" : "getDefaultWorkFile", "tail" : "(arg0: TaskAttemptContext, arg1: String): org.apache.hadoop.fs.Path", "member" : "org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.getDefaultWorkFile", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getDefaultWorkFile(x$1:org.apache.hadoop.mapreduce.TaskAttemptContext,x$2:String):org.apache.hadoop.fs.Path", "kind" : "def"}, {"label" : "checkOutputSpecs", "tail" : "(arg0: JobContext): Unit", "member" : "org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.checkOutputSpecs", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#checkOutputSpecs(x$1:org.apache.hadoop.mapreduce.JobContext):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.FastaShortInput", "shortDescription" : "Input reader for FASTA sequences of a fixed maximum length.", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.FastaShortInput.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.FastaShortInput.getFragments", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.FastaShortInput#", "error" : "unsupported entity"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.FastqShortInput", "shortDescription" : "Input reader for FASTQ short reads.", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.FastqShortInput.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.FastqShortInput.getFragments", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.FastqShortInput#", "error" : "unsupported entity"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.GroupedSegments", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html", "members_class" : [{"label" : "toIndex", "tail" : "(filterOrientation: Boolean, numBuckets: Int): Index", "member" : "com.jnpersson.discount.spark.GroupedSegments.toIndex", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#toIndex(filterOrientation:Boolean,numBuckets:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "toReducibleBuckets", "tail" : "(filterOrientation: Boolean): Dataset[ReducibleBucket]", "member" : "com.jnpersson.discount.spark.GroupedSegments.toReducibleBuckets", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#toReducibleBuckets(filterOrientation:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket]", "kind" : "def"}, {"label" : "writeSupermerStrings", "tail" : "(outputLocation: String): Unit", "member" : "com.jnpersson.discount.spark.GroupedSegments.writeSupermerStrings", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#writeSupermerStrings(outputLocation:String):Unit", "kind" : "def"}, {"label" : "superkmerStrings", "tail" : "(): DataFrame", "member" : "com.jnpersson.discount.spark.GroupedSegments.superkmerStrings", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#superkmerStrings:org.apache.spark.sql.DataFrame", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.GroupedSegments#", "error" : "unsupported entity"}, {"label" : "splitter", "tail" : ": Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.GroupedSegments.splitter", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#splitter:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "val"}, {"label" : "segments", "tail" : ": Dataset[(BucketId, Array[ZeroNTBitArray], Array[Abundance])]", "member" : "com.jnpersson.discount.spark.GroupedSegments.segments", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#segments:org.apache.spark.sql.Dataset[(com.jnpersson.discount.hash.BucketId,Array[com.jnpersson.discount.util.ZeroNTBitArray],Array[com.jnpersson.discount.Abundance])]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_object" : [{"label" : "segmentsByHash", "tail" : "(segments: DataFrame)(spark: SparkSession): DataFrame", "member" : "com.jnpersson.discount.spark.GroupedSegments.segmentsByHash", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#segmentsByHash(segments:org.apache.spark.sql.DataFrame)(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.DataFrame", "kind" : "def"}, {"label" : "segmentsByHashPregroup", "tail" : "(segments: DataFrame, addRC: Boolean, spl: Broadcast[S])(spark: SparkSession): DataFrame", "member" : "com.jnpersson.discount.spark.GroupedSegments.segmentsByHashPregroup", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#segmentsByHashPregroup[S<:com.jnpersson.discount.hash.MinSplitter[com.jnpersson.discount.hash.MinimizerPriorities]](segments:org.apache.spark.sql.DataFrame,addRC:Boolean,spl:org.apache.spark.broadcast.Broadcast[S])(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.DataFrame", "kind" : "def"}, {"label" : "fromReads", "tail" : "(input: Dataset[NTSeq], method: CountMethod, normalize: Boolean, spl: Broadcast[AnyMinSplitter])(spark: SparkSession): GroupedSegments", "member" : "com.jnpersson.discount.spark.GroupedSegments.fromReads", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#fromReads(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],method:com.jnpersson.discount.spark.CountMethod,normalize:Boolean,spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.GroupedSegments", "kind" : "def"}, {"label" : "hashSegments", "tail" : "(input: NTSeq, splitter: AnyMinSplitter): Iterator[HashSegment]", "member" : "com.jnpersson.discount.spark.GroupedSegments.hashSegments", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#hashSegments(input:com.jnpersson.discount.NTSeq,splitter:com.jnpersson.discount.spark.AnyMinSplitter):Iterator[com.jnpersson.discount.spark.HashSegment]", "kind" : "def"}, {"label" : "hashSegments", "tail" : "(input: Dataset[NTSeq], spl: Broadcast[AnyMinSplitter])(spark: SparkSession): Dataset[HashSegment]", "member" : "com.jnpersson.discount.spark.GroupedSegments.hashSegments", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#hashSegments(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter])(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.Dataset[com.jnpersson.discount.spark.HashSegment]", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.HashSegment", "shortDescription" : "A single hashed sequence segment (super-mer) with its minimizer.", "members_case class" : [{"member" : "com.jnpersson.discount.spark.HashSegment#", "error" : "unsupported entity"}, {"label" : "segment", "tail" : ": ZeroNTBitArray", "member" : "com.jnpersson.discount.spark.HashSegment.segment", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#segment:com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "val"}, {"label" : "hash", "tail" : ": BucketId", "member" : "com.jnpersson.discount.spark.HashSegment.hash", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#hash:com.jnpersson.discount.hash.BucketId", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/HashSegment.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.spark.HDFSUtil", "shortDescription" : "HDFS helper routines", "object" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html", "members_object" : [{"label" : "deleteRecursive", "tail" : "(location: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.HDFSUtil.deleteRecursive", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#deleteRecursive(location:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "readProperties", "tail" : "(location: String)(spark: SparkSession): Properties", "member" : "com.jnpersson.discount.spark.HDFSUtil.readProperties", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#readProperties(location:String)(implicitspark:org.apache.spark.sql.SparkSession):java.util.Properties", "kind" : "def"}, {"label" : "writeProperties", "tail" : "(location: String, data: Properties, comment: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.HDFSUtil.writeProperties", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#writeProperties(location:String,data:java.util.Properties,comment:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "writeTextFile", "tail" : "(location: String, data: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.HDFSUtil.writeTextFile", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#writeTextFile(location:String,data:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "getInputStream", "tail" : "(location: String)(spark: SparkSession): FSDataInputStream", "member" : "com.jnpersson.discount.spark.HDFSUtil.getInputStream", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#getInputStream(location:String)(implicitspark:org.apache.spark.sql.SparkSession):org.apache.hadoop.fs.FSDataInputStream", "kind" : "def"}, {"label" : "getPrintWriter", "tail" : "(location: String)(spark: SparkSession): PrintWriter", "member" : "com.jnpersson.discount.spark.HDFSUtil.getPrintWriter", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#getPrintWriter(location:String)(implicitspark:org.apache.spark.sql.SparkSession):java.io.PrintWriter", "kind" : "def"}, {"label" : "fileExists", "tail" : "(path: String)(spark: SparkSession): Boolean", "member" : "com.jnpersson.discount.spark.HDFSUtil.fileExists", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#fileExists(path:String)(implicitspark:org.apache.spark.sql.SparkSession):Boolean", "kind" : "def"}, {"label" : "makeQualified", "tail" : "(path: String)(spark: SparkSession): String", "member" : "com.jnpersson.discount.spark.HDFSUtil.makeQualified", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#makeQualified(path:String)(implicitspark:org.apache.spark.sql.SparkSession):String", "kind" : "def"}, {"label" : "isAbsolutePath", "tail" : "(path: String): Boolean", "member" : "com.jnpersson.discount.spark.HDFSUtil.isAbsolutePath", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#isAbsolutePath(path:String):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Helpers", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html", "members_object" : [{"label" : "encoder", "tail" : "(spl: S): Encoder[S]", "member" : "com.jnpersson.discount.spark.Helpers.encoder", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#encoder[S<:com.jnpersson.discount.hash.MinSplitter[_]](spl:S):org.apache.spark.sql.Encoder[S]", "kind" : "def"}, {"label" : "registerEncoder", "tail" : "(cls: Class[_], enc: Encoder[_]): Unit", "member" : "com.jnpersson.discount.spark.Helpers.registerEncoder", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#registerEncoder(cls:Class[_],enc:org.apache.spark.sql.Encoder[_]):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Index", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/Index$.html", "members_class" : [{"label" : "repartition", "tail" : "(partitions: Int): Index", "member" : "com.jnpersson.discount.spark.Index.repartition", "link" : "com\/jnpersson\/discount\/spark\/Index.html#repartition(partitions:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "newCompatible", "tail" : "(discount: Discount, inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Index.newCompatible", "link" : "com\/jnpersson\/discount\/spark\/Index.html#newCompatible(discount:com.jnpersson.discount.spark.Discount,inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "changeMinimizerOrdering", "tail" : "(spl: Broadcast[AnyMinSplitter]): Index", "member" : "com.jnpersson.discount.spark.Index.changeMinimizerOrdering", "link" : "com\/jnpersson\/discount\/spark\/Index.html#changeMinimizerOrdering(spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "sample", "tail" : "(fraction: Double): Index", "member" : "com.jnpersson.discount.spark.Index.sample", "link" : "com\/jnpersson\/discount\/spark\/Index.html#sample(fraction:Double):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterMax", "tail" : "(max: Int): Index", "member" : "com.jnpersson.discount.spark.Index.filterMax", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterMax(max:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterMin", "tail" : "(min: Int): Index", "member" : "com.jnpersson.discount.spark.Index.filterMin", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterMin(min:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterCounts", "tail" : "(min: Option[Int], max: Option[Int]): Index", "member" : "com.jnpersson.discount.spark.Index.filterCounts", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterCounts(min:Option[Int],max:Option[Int]):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterCounts", "tail" : "(min: Int, max: Int): Index", "member" : "com.jnpersson.discount.spark.Index.filterCounts", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterCounts(min:Int,max:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "mapTags", "tail" : "(f: (Tag) ⇒ Tag): Index", "member" : "com.jnpersson.discount.spark.Index.mapTags", "link" : "com\/jnpersson\/discount\/spark\/Index.html#mapTags(f:com.jnpersson.discount.bucket.Tag=>com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "subtractMany", "tail" : "(ixs: Iterable[Index], rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.subtractMany", "link" : "com\/jnpersson\/discount\/spark\/Index.html#subtractMany(ixs:Iterable[com.jnpersson.discount.spark.Index],rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersectMany", "tail" : "(ixs: Iterable[Index], rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.intersectMany", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersectMany(ixs:Iterable[com.jnpersson.discount.spark.Index],rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "unionMany", "tail" : "(ixs: Iterable[Index], rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.unionMany", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unionMany(ixs:Iterable[com.jnpersson.discount.spark.Index],rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "subtract", "tail" : "(other: Index, rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.subtract", "link" : "com\/jnpersson\/discount\/spark\/Index.html#subtract(other:com.jnpersson.discount.spark.Index,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "lookup", "tail" : "(query: Index): Index", "member" : "com.jnpersson.discount.spark.Index.lookup", "link" : "com\/jnpersson\/discount\/spark\/Index.html#lookup(query:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "lookup", "tail" : "(sequences: Seq[String]): Index", "member" : "com.jnpersson.discount.spark.Index.lookup", "link" : "com\/jnpersson\/discount\/spark\/Index.html#lookup(sequences:Seq[String]):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersect", "tail" : "(other: Index, rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.intersect", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersect(other:com.jnpersson.discount.spark.Index,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "union", "tail" : "(other: Index, rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.union", "link" : "com\/jnpersson\/discount\/spark\/Index.html#union(other:com.jnpersson.discount.spark.Index,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "write", "tail" : "(location: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.Index.write", "link" : "com\/jnpersson\/discount\/spark\/Index.html#write(location:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "showStats", "tail" : "(outputLocation: Option[String]): Unit", "member" : "com.jnpersson.discount.spark.Index.showStats", "link" : "com\/jnpersson\/discount\/spark\/Index.html#showStats(outputLocation:Option[String]):Unit", "kind" : "def"}, {"label" : "writeBucketStats", "tail" : "(location: String): Unit", "member" : "com.jnpersson.discount.spark.Index.writeBucketStats", "link" : "com\/jnpersson\/discount\/spark\/Index.html#writeBucketStats(location:String):Unit", "kind" : "def"}, {"label" : "writeHistogram", "tail" : "(output: String): Unit", "member" : "com.jnpersson.discount.spark.Index.writeHistogram", "link" : "com\/jnpersson\/discount\/spark\/Index.html#writeHistogram(output:String):Unit", "kind" : "def"}, {"label" : "histogram", "tail" : "(): Dataset[(Tag, Long)]", "member" : "com.jnpersson.discount.spark.Index.histogram", "link" : "com\/jnpersson\/discount\/spark\/Index.html#histogram:org.apache.spark.sql.Dataset[(com.jnpersson.discount.bucket.Tag,Long)]", "kind" : "def"}, {"label" : "stats", "tail" : "(min: Option[Int], max: Option[Int]): Dataset[BucketStats]", "member" : "com.jnpersson.discount.spark.Index.stats", "link" : "com\/jnpersson\/discount\/spark\/Index.html#stats(min:Option[Int],max:Option[Int]):org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.BucketStats]", "kind" : "def"}, {"label" : "counted", "tail" : "(normalize: Boolean): CountedKmers", "member" : "com.jnpersson.discount.spark.Index.counted", "link" : "com\/jnpersson\/discount\/spark\/Index.html#counted(normalize:Boolean):com.jnpersson.discount.spark.CountedKmers", "kind" : "def"}, {"label" : "unpersist", "tail" : "(): Unit", "member" : "com.jnpersson.discount.spark.Index.unpersist", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unpersist():Unit", "kind" : "def"}, {"label" : "cache", "tail" : "(): Index.this.type", "member" : "com.jnpersson.discount.spark.Index.cache", "link" : "com\/jnpersson\/discount\/spark\/Index.html#cache():Index.this.type", "kind" : "def"}, {"label" : "bcSplit", "tail" : "(): Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.Index.bcSplit", "link" : "com\/jnpersson\/discount\/spark\/Index.html#bcSplit:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Index#", "error" : "unsupported entity"}, {"label" : "buckets", "tail" : ": Dataset[ReducibleBucket]", "member" : "com.jnpersson.discount.spark.Index.buckets", "link" : "com\/jnpersson\/discount\/spark\/Index.html#buckets:org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket]", "kind" : "val"}, {"label" : "params", "tail" : ": IndexParams", "member" : "com.jnpersson.discount.spark.Index.params", "link" : "com\/jnpersson\/discount\/spark\/Index.html#params:com.jnpersson.discount.spark.IndexParams", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Index.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Index.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Index.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Index.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Index.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Index.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Index.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Index.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Index.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Index.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Index.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Index.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Index.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Index.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_object" : [{"label" : "reSplitBuckets", "tail" : "(input: Dataset[ReducibleBucket], reducer: Reducer, spl: Broadcast[AnyMinSplitter])(spark: SparkSession): Dataset[ReducibleBucket]", "member" : "com.jnpersson.discount.spark.Index.reSplitBuckets", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#reSplitBuckets(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket],reducer:com.jnpersson.discount.bucket.Reducer,spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter])(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket]", "kind" : "def"}, {"label" : "fromNTSeq", "tail" : "(compatible: Index, read: NTSeq)(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.fromNTSeq", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#fromNTSeq(compatible:com.jnpersson.discount.spark.Index,read:com.jnpersson.discount.NTSeq)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "fromNTSeqs", "tail" : "(compatible: Index, reads: Seq[NTSeq])(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.fromNTSeqs", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#fromNTSeqs(compatible:com.jnpersson.discount.spark.Index,reads:Seq[com.jnpersson.discount.NTSeq])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "fromNTSeqs", "tail" : "(compatible: Index, reads: Dataset[NTSeq])(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.fromNTSeqs", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#fromNTSeqs(compatible:com.jnpersson.discount.spark.Index,reads:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "random", "tail" : ": SplittableRandom", "member" : "com.jnpersson.discount.spark.Index.random", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#random:java.util.SplittableRandom", "kind" : "val"}, {"label" : "getIndexSplitter", "tail" : "(location: String, k: Int)(spark: SparkSession): AnyMinSplitter", "member" : "com.jnpersson.discount.spark.Index.getIndexSplitter", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#getIndexSplitter(location:String,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.AnyMinSplitter", "kind" : "def"}, {"label" : "write", "tail" : "(data: DataFrame, location: String, numBuckets: Int): Unit", "member" : "com.jnpersson.discount.spark.Index.write", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#write(data:org.apache.spark.sql.DataFrame,location:String,numBuckets:Int):Unit", "kind" : "def"}, {"label" : "read", "tail" : "(location: String, knownParams: Option[IndexParams])(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.read", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#read(location:String,knownParams:Option[com.jnpersson.discount.spark.IndexParams])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "randomTableName", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.Index.randomTableName", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#randomTableName:String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Index$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Index.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.IndexedFastaInput", "shortDescription" : "Input reader for FASTA files containing potentially long sequences, with a .fai indexFAI indexes can be created with tools such as seqkit.", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.IndexedFastaInput.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.IndexedFastaInput.getFragments", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.IndexedFastaInput#", "error" : "unsupported entity"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.IndexParams", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/IndexParams$.html", "members_object" : [{"label" : "read", "tail" : "(location: String)(spark: SparkSession): IndexParams", "member" : "com.jnpersson.discount.spark.IndexParams.read", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#read(location:String)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.IndexParams", "kind" : "def"}, {"label" : "maxVersion", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.IndexParams.maxVersion", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#maxVersion:Int", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "compatibilityCheck", "tail" : "(other: IndexParams, strict: Boolean): Unit", "member" : "com.jnpersson.discount.spark.IndexParams.compatibilityCheck", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#compatibilityCheck(other:com.jnpersson.discount.spark.IndexParams,strict:Boolean):Unit", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.IndexParams.toString", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#toString():String", "kind" : "def"}, {"label" : "write", "tail" : "(location: String, comment: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.IndexParams.write", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#write(location:String,comment:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "properties", "tail" : "(): Properties", "member" : "com.jnpersson.discount.spark.IndexParams.properties", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#properties:java.util.Properties", "kind" : "def"}, {"label" : "m", "tail" : "(): Int", "member" : "com.jnpersson.discount.spark.IndexParams.m", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#m:Int", "kind" : "def"}, {"label" : "k", "tail" : "(): Int", "member" : "com.jnpersson.discount.spark.IndexParams.k", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#k:Int", "kind" : "def"}, {"label" : "splitter", "tail" : "(): AnyMinSplitter", "member" : "com.jnpersson.discount.spark.IndexParams.splitter", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#splitter:com.jnpersson.discount.spark.AnyMinSplitter", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.IndexParams#", "error" : "unsupported entity"}, {"label" : "location", "tail" : ": String", "member" : "com.jnpersson.discount.spark.IndexParams.location", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#location:String", "kind" : "val"}, {"label" : "buckets", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.IndexParams.buckets", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#buckets:Int", "kind" : "val"}, {"label" : "bcSplit", "tail" : ": Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.IndexParams.bcSplit", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#bcSplit:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/IndexParams.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.InputReader", "shortDescription" : "A reader that reads input data from one file using a specific Hadoop format", "members_class" : [{"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"member" : "com.jnpersson.discount.spark.InputReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getFragments", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "abstract def"}, {"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.InputReader.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "abstract def"}], "class" : "com\/jnpersson\/discount\/spark\/InputReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.Inputs", "shortDescription" : "A set of input files that can be parsed into com.jnpersson.discount.hash.InputFragment", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.Inputs.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Inputs.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "forFile", "tail" : "(file: String): InputReader", "member" : "com.jnpersson.discount.spark.Inputs.forFile", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#forFile(file:String):com.jnpersson.discount.spark.InputReader", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.Inputs.conf", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"member" : "com.jnpersson.discount.spark.Inputs#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Inputs.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.Kmers", "shortDescription" : "Convenience methods for interacting with k-mers from a set of input files.", "members_class" : [{"label" : "sampledIndex", "tail" : "(fraction: Double): Index", "member" : "com.jnpersson.discount.spark.Kmers.sampledIndex", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#sampledIndex(fraction:Double):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "index", "tail" : ": Index", "member" : "com.jnpersson.discount.spark.Kmers.index", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#index:com.jnpersson.discount.spark.Index", "kind" : "lazy val"}, {"label" : "segments", "tail" : "(): GroupedSegments", "member" : "com.jnpersson.discount.spark.Kmers.segments", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#segments:com.jnpersson.discount.spark.GroupedSegments", "kind" : "def"}, {"label" : "constructSampledMinimizerOrdering", "tail" : "(writeLocation: String): MinSplitter[_]", "member" : "com.jnpersson.discount.spark.Kmers.constructSampledMinimizerOrdering", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#constructSampledMinimizerOrdering(writeLocation:String):com.jnpersson.discount.hash.MinSplitter[_]", "kind" : "def"}, {"label" : "sequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.Kmers.sequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#sequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "inputFragments", "tail" : "(): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Kmers.inputFragments", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#inputFragments:org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "method", "tail" : ": CountMethod", "member" : "com.jnpersson.discount.spark.Kmers.method", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#method:com.jnpersson.discount.spark.CountMethod", "kind" : "lazy val"}, {"label" : "bcSplit", "tail" : ": Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.Kmers.bcSplit", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#bcSplit:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "lazy val"}, {"member" : "com.jnpersson.discount.spark.Kmers#", "error" : "unsupported entity"}, {"label" : "inFiles", "tail" : ": Seq[String]", "member" : "com.jnpersson.discount.spark.Kmers.inFiles", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#inFiles:Seq[String]", "kind" : "val"}, {"label" : "discount", "tail" : ": Discount", "member" : "com.jnpersson.discount.spark.Kmers.discount", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#discount:com.jnpersson.discount.spark.Discount", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Kmers.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.MinimizerSource", "members_trait" : [{"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.MinimizerSource.load", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "abstract def"}], "shortDescription" : "A method for obtaining a set of minimizers for given values of k and m.", "trait" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.spark.Output", "shortDescription" : "Output format helper methods", "object" : "com\/jnpersson\/discount\/spark\/Output$.html", "members_object" : [{"label" : "showStats", "tail" : "(stats: Dataset[BucketStats], fileOutput: Option[String])(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.Output.showStats", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#showStats(stats:org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.BucketStats],fileOutput:Option[String])(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "writeFastaCounts", "tail" : "(allKmers: Dataset[(NTSeq, Abundance)], writeLocation: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.Output.writeFastaCounts", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#writeFastaCounts(allKmers:org.apache.spark.sql.Dataset[(com.jnpersson.discount.NTSeq,com.jnpersson.discount.Abundance)],writeLocation:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "writeTSV", "tail" : "(allKmers: Dataset[A], writeLocation: String): Unit", "member" : "com.jnpersson.discount.spark.Output.writeTSV", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#writeTSV[A](allKmers:org.apache.spark.sql.Dataset[A],writeLocation:String):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Output$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Path", "shortDescription" : "A file, or a directory containing multiple files with names like minimizers_{k}_{m}.txt,in which case the best file will be selected.", "members_case class" : [{"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.Path.load", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Path#", "error" : "unsupported entity"}, {"label" : "path", "tail" : ": String", "member" : "com.jnpersson.discount.spark.Path.path", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#path:String", "kind" : "val"}, {"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/package$$Path.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.spark.Pregrouped", "shortDescription" : "Pregrouped counting: groups and counts identical super-mers before counting k-mers.", "object" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html", "members_object" : [{"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.Pregrouped.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#toString():String", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.Pregrouped.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.CountMethod.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Rule", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "shortDescription" : "k-mer combination (reduction) rules for combining indexes.", "object" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html", "members_object" : [{"label" : "KmersSubtract", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.KmersSubtract", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#KmersSubtract", "kind" : "object"}, {"label" : "CountersSubtract", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.CountersSubtract", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#CountersSubtract", "kind" : "object"}, {"label" : "Right", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Right", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Right", "kind" : "object"}, {"label" : "Left", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Left", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Left", "kind" : "object"}, {"label" : "Min", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Min", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Min", "kind" : "object"}, {"label" : "Max", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Max", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Max", "kind" : "object"}, {"label" : "Sum", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Sum", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Sum", "kind" : "object"}, {"label" : "cappedLongToInt", "tail" : "(x: Long): Int", "member" : "com.jnpersson.discount.spark.Rule.cappedLongToInt", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#cappedLongToInt(x:Long):Int", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "trait" : "com\/jnpersson\/discount\/spark\/package$$Rule.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.spark.Sampling", "shortDescription" : "Routines for creating and managing frequency sampled minimizer orderings.", "object" : "com\/jnpersson\/discount\/spark\/Sampling$.html", "members_class" : [{"label" : "readMotifList", "tail" : "(location: String): Array[String]", "member" : "com.jnpersson.discount.spark.Sampling.readMotifList", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#readMotifList(location:String):Array[String]", "kind" : "def"}, {"label" : "readMotifList", "tail" : "(location: String, k: Int, m: Int): Array[String]", "member" : "com.jnpersson.discount.spark.Sampling.readMotifList", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#readMotifList(location:String,k:Int,m:Int):Array[String]", "kind" : "def"}, {"label" : "persistMinimizers", "tail" : "(table: MinTable, location: String): Unit", "member" : "com.jnpersson.discount.spark.Sampling.persistMinimizers", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#persistMinimizers(table:com.jnpersson.discount.hash.MinTable,location:String):Unit", "kind" : "def"}, {"label" : "persistMinimizers", "tail" : "(splitter: MinSplitter[_], location: String): Unit", "member" : "com.jnpersson.discount.spark.Sampling.persistMinimizers", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#persistMinimizers(splitter:com.jnpersson.discount.hash.MinSplitter[_],location:String):Unit", "kind" : "def"}, {"label" : "writeFrequencies", "tail" : "(f: SampledFrequencies, location: String): Unit", "member" : "com.jnpersson.discount.spark.Sampling.writeFrequencies", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#writeFrequencies(f:com.jnpersson.discount.hash.SampledFrequencies,location:String):Unit", "kind" : "def"}, {"label" : "createSampledTable", "tail" : "(input: Dataset[NTSeq], template: MinTable, sampledFraction: Double, persistLocation: Option[String]): MinTable", "member" : "com.jnpersson.discount.spark.Sampling.createSampledTable", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#createSampledTable(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],template:com.jnpersson.discount.hash.MinTable,sampledFraction:Double,persistLocation:Option[String]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "countFeatures", "tail" : "(reads: Dataset[NTSeq], table: MinTable, partitions: Int): SampledFrequencies", "member" : "com.jnpersson.discount.spark.Sampling.countFeatures", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#countFeatures(reads:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],table:com.jnpersson.discount.hash.MinTable,partitions:Int):com.jnpersson.discount.hash.SampledFrequencies", "kind" : "def"}, {"label" : "motifCounts", "tail" : "(reads: Dataset[NTSeq], table: MinTable, partitions: Int): DataFrame", "member" : "com.jnpersson.discount.spark.Sampling.motifCounts", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#motifCounts(reads:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],table:com.jnpersson.discount.hash.MinTable,partitions:Int):org.apache.spark.sql.DataFrame", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Sampling#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_object" : [{"label" : "findBestMinimizerFile", "tail" : "(minimizerDir: String, k: Int, m: Int)(spark: SparkSession): String", "member" : "com.jnpersson.discount.spark.Sampling.findBestMinimizerFile", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#findBestMinimizerFile(minimizerDir:String,k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Sampling.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.Simple", "shortDescription" : "Non-pregrouped: counts k-mers immediately.", "object" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html", "members_object" : [{"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.Simple.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#toString():String", "kind" : "def"}, {"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.CountMethod.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.CountMethod.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}]}; \ No newline at end of file +Index.PACKAGES = {"com.jnpersson" : [], "com.jnpersson.discount.bucket" : [{"name" : "com.jnpersson.discount.bucket.BucketStats", "shortDescription" : "Statistics for a single bin\/bucket.", "object" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html", "members_object" : [{"label" : "collectFromCounts", "tail" : "(id: String, counts: Array[Array[Int]]): BucketStats", "member" : "com.jnpersson.discount.bucket.BucketStats.collectFromCounts", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#collectFromCounts(id:String,counts:Array[Array[Int]]):com.jnpersson.discount.bucket.BucketStats", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "equalCounts", "tail" : "(other: BucketStats): Boolean", "member" : "com.jnpersson.discount.bucket.BucketStats.equalCounts", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#equalCounts(other:com.jnpersson.discount.bucket.BucketStats):Boolean", "kind" : "def"}, {"label" : "merge", "tail" : "(other: BucketStats): BucketStats", "member" : "com.jnpersson.discount.bucket.BucketStats.merge", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#merge(other:com.jnpersson.discount.bucket.BucketStats):com.jnpersson.discount.bucket.BucketStats", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.BucketStats#", "error" : "unsupported entity"}, {"label" : "maxAbundance", "tail" : ": Abundance", "member" : "com.jnpersson.discount.bucket.BucketStats.maxAbundance", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#maxAbundance:com.jnpersson.discount.Abundance", "kind" : "val"}, {"label" : "uniqueKmers", "tail" : ": Long", "member" : "com.jnpersson.discount.bucket.BucketStats.uniqueKmers", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#uniqueKmers:Long", "kind" : "val"}, {"label" : "distinctKmers", "tail" : ": Long", "member" : "com.jnpersson.discount.bucket.BucketStats.distinctKmers", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#distinctKmers:Long", "kind" : "val"}, {"label" : "totalAbundance", "tail" : ": Abundance", "member" : "com.jnpersson.discount.bucket.BucketStats.totalAbundance", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#totalAbundance:com.jnpersson.discount.Abundance", "kind" : "val"}, {"label" : "superKmers", "tail" : ": Long", "member" : "com.jnpersson.discount.bucket.BucketStats.superKmers", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#superKmers:Long", "kind" : "val"}, {"label" : "id", "tail" : ": String", "member" : "com.jnpersson.discount.bucket.BucketStats.id", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#id:String", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/BucketStats.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/BucketStats.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.CountersSubtractReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.CountersSubtract reduction rule.", "members_case class" : [{"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Tag): Boolean", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:com.jnpersson.discount.bucket.Tag):Boolean", "kind" : "def"}, {"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.CountersSubtractReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountersSubtractReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#k:Int", "kind" : "val"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/CountersSubtractReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.CountReducer", "members_trait" : [{"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "abstract def"}, {"label" : "intersect", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#intersect:Boolean", "kind" : "abstract def"}, {"label" : "forwardOnly", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#forwardOnly:Boolean", "kind" : "abstract def"}, {"label" : "k", "tail" : "(): Int", "member" : "com.jnpersson.discount.bucket.Reducer.k", "link" : "com\/jnpersson\/discount\/bucket\/CountReducer.html#k:Int", "kind" : "abstract def"}], "shortDescription" : "A reducer that handles k-mer count values stored in the longsForK(k) + 1 tag position.", "trait" : "com\/jnpersson\/discount\/bucket\/CountReducer.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.bucket.KmerBucket", "shortDescription" : "A bucket that maintains some number of super-mers and associated tags (e.g.", "members_class" : [{"label" : "writeToSortedTable", "tail" : "(k: Int, forwardOnly: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToSortedTable", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#writeToSortedTable(k:Int,forwardOnly:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "writeToTable", "tail" : "(k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToTable", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#writeToTable(k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.KmerBucket#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/bucket\/KmerBucket.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.bucket.KmerSubtractReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.KmersSubtract reduction rule.", "members_case class" : [{"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Tag): Boolean", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:com.jnpersson.discount.bucket.Tag):Boolean", "kind" : "def"}, {"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "intersect", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#intersect:Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.KmerSubtractReducer#", "error" : "unsupported entity"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.KmerSubtractReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#k:Int", "kind" : "val"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/KmerSubtractReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.LeftReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Left reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.LeftReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.LeftReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.LeftReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.LeftReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.LeftReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/LeftReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.MaxReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Max reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.MaxReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.MaxReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MaxReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MaxReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.MaxReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/MaxReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.MinReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Min reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.MinReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.MinReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MinReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.MinReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.MinReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/MinReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/MinReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.Reducer", "members_trait" : [{"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.Reducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "abstract def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.Reducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#tagOffset:Int", "kind" : "abstract val"}, {"label" : "forwardOnly", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#forwardOnly:Boolean", "kind" : "abstract def"}, {"label" : "k", "tail" : "(): Int", "member" : "com.jnpersson.discount.bucket.Reducer.k", "link" : "com\/jnpersson\/discount\/bucket\/Reducer.html#k:Int", "kind" : "abstract def"}], "shortDescription" : "A method for combining identical k-mers (which may have associated extra data)", "object" : "com\/jnpersson\/discount\/bucket\/Reducer$.html", "members_object" : [{"label" : "configure", "tail" : "(k: Int, forwardOnly: Boolean, intersect: Boolean, reduction: Rule): Reducer", "member" : "com.jnpersson.discount.bucket.Reducer.configure", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#configure(k:Int,forwardOnly:Boolean,intersect:Boolean,reduction:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.Reducer", "kind" : "def"}, {"label" : "union", "tail" : "(k: Int, forwardOnly: Boolean, reduction: Rule): Reducer", "member" : "com.jnpersson.discount.bucket.Reducer.union", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#union(k:Int,forwardOnly:Boolean,reduction:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.Reducer", "kind" : "def"}, {"label" : "parseRule", "tail" : "(rule: String): Rule", "member" : "com.jnpersson.discount.bucket.Reducer.parseRule", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#parseRule(rule:String):com.jnpersson.discount.spark.Rule", "kind" : "def"}, {"label" : "cappedLongToInt", "tail" : "(x: Long): Int", "member" : "com.jnpersson.discount.bucket.Reducer.cappedLongToInt", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#cappedLongToInt(x:Long):Int", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/Reducer$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "trait" : "com\/jnpersson\/discount\/bucket\/Reducer.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.bucket.ReducibleBucket", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html", "members_object" : [{"label" : "unionCompact", "tail" : "(b1: Option[ReducibleBucket], b2: Option[ReducibleBucket], k: Int, rule: Rule): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.unionCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#unionCompact(b1:Option[com.jnpersson.discount.bucket.ReducibleBucket],b2:Option[com.jnpersson.discount.bucket.ReducibleBucket],k:Int,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "intersectCompact", "tail" : "(b1: ReducibleBucket, b2: ReducibleBucket, k: Int, rule: Rule): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.intersectCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#intersectCompact(b1:com.jnpersson.discount.bucket.ReducibleBucket,b2:com.jnpersson.discount.bucket.ReducibleBucket,k:Int,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "countingCompacted", "tail" : "(id: BucketId, supermers: Array[ZeroNTBitArray], abundances: Array[Abundance], k: Int, filterOrientation: Boolean): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.countingCompacted", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#countingCompacted(id:com.jnpersson.discount.hash.BucketId,supermers:Array[com.jnpersson.discount.util.ZeroNTBitArray],abundances:Array[com.jnpersson.discount.Abundance],k:Int,filterOrientation:Boolean):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "countingCompacted", "tail" : "(id: BucketId, supermers: Array[ZeroNTBitArray], k: Int): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.countingCompacted", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#countingCompacted(id:com.jnpersson.discount.hash.BucketId,supermers:Array[com.jnpersson.discount.util.ZeroNTBitArray],k:Int):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "reduceKmers", "tail" : "(reducer: Reducer): KmerTable", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.reduceKmers", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#reduceKmers(reducer:com.jnpersson.discount.bucket.Reducer):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "reduceCompact", "tail" : "(reducer: Reducer): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.reduceCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#reduceCompact(reducer:com.jnpersson.discount.bucket.Reducer):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "appendAndCompact", "tail" : "(other: ReducibleBucket, reducer: Reducer): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.appendAndCompact", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#appendAndCompact(other:com.jnpersson.discount.bucket.ReducibleBucket,reducer:com.jnpersson.discount.bucket.Reducer):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.ReducibleBucket#", "error" : "unsupported entity"}, {"label" : "tags", "tail" : ": Array[Array[Int]]", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.tags", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#tags:Array[Array[Int]]", "kind" : "val"}, {"label" : "supermers", "tail" : ": Array[ZeroNTBitArray]", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.supermers", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#supermers:Array[com.jnpersson.discount.util.ZeroNTBitArray]", "kind" : "val"}, {"label" : "id", "tail" : ": BucketId", "member" : "com.jnpersson.discount.bucket.ReducibleBucket.id", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#id:com.jnpersson.discount.hash.BucketId", "kind" : "val"}, {"label" : "writeToSortedTable", "tail" : "(k: Int, forwardOnly: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToSortedTable", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#writeToSortedTable(k:Int,forwardOnly:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "writeToTable", "tail" : "(k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.bucket.KmerBucket.writeToTable", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#writeToTable(k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/ReducibleBucket.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.bucket.RightReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Right reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.RightReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.RightReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.RightReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.RightReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.RightReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/RightReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/RightReducer.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.bucket.SumReducer", "shortDescription" : "Implements the com.jnpersson.discount.spark.Rule.Sum reduction rule", "members_case class" : [{"label" : "reduceCounts", "tail" : "(count1: Tag, count2: Tag): Tag", "member" : "com.jnpersson.discount.bucket.SumReducer.reduceCounts", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#reduceCounts(count1:com.jnpersson.discount.bucket.Tag,count2:com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.bucket.Tag", "kind" : "def"}, {"member" : "com.jnpersson.discount.bucket.SumReducer#", "error" : "unsupported entity"}, {"label" : "intersect", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.SumReducer.intersect", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#intersect:Boolean", "kind" : "val"}, {"label" : "forwardOnly", "tail" : ": Boolean", "member" : "com.jnpersson.discount.bucket.SumReducer.forwardOnly", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#forwardOnly:Boolean", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.SumReducer.k", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#k:Int", "kind" : "val"}, {"label" : "shouldKeep", "tail" : "(table: KmerTable, kmer: Int): Boolean", "member" : "com.jnpersson.discount.bucket.CountReducer.shouldKeep", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#shouldKeep(table:com.jnpersson.discount.util.KmerTable,kmer:Int):Boolean", "kind" : "def"}, {"label" : "reduceEqualKmers", "tail" : "(table: KmerTable, into: Int, from: Int): Unit", "member" : "com.jnpersson.discount.bucket.CountReducer.reduceEqualKmers", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#reduceEqualKmers(table:com.jnpersson.discount.util.KmerTable,into:Int,from:Int):Unit", "kind" : "def"}, {"label" : "tagOffset", "tail" : ": Int", "member" : "com.jnpersson.discount.bucket.CountReducer.tagOffset", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#tagOffset:Int", "kind" : "val"}, {"label" : "hasNonZeroTag", "tail" : "(tags: Array[Tag]): Boolean", "member" : "com.jnpersson.discount.bucket.Reducer.hasNonZeroTag", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#hasNonZeroTag(tags:Array[com.jnpersson.discount.bucket.Tag]):Boolean", "kind" : "def"}, {"label" : "zeroValue", "tail" : ": Tag", "member" : "com.jnpersson.discount.bucket.Reducer.zeroValue", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#zeroValue:com.jnpersson.discount.bucket.Tag", "kind" : "val"}, {"label" : "preprocessSecond", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessSecond", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#preprocessSecond(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "preprocessFirst", "tail" : "(bucket: ReducibleBucket): ReducibleBucket", "member" : "com.jnpersson.discount.bucket.Reducer.preprocessFirst", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#preprocessFirst(bucket:com.jnpersson.discount.bucket.ReducibleBucket):com.jnpersson.discount.bucket.ReducibleBucket", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/bucket\/SumReducer.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/bucket\/SumReducer.html", "kind" : "case class"}], "com.jnpersson.discount.fastdoop" : [{"name" : "com.jnpersson.discount.fastdoop.FAIRecord", "shortDescription" : "FAI (fasta index) record.", "members_case class" : [{"label" : "end", "tail" : ": Long", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.end", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#end:Long", "kind" : "val"}, {"member" : "com.jnpersson.discount.fastdoop.FAIRecord#", "error" : "unsupported entity"}, {"label" : "bytesPerLine", "tail" : ": Int", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.bytesPerLine", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#bytesPerLine:Int", "kind" : "val"}, {"label" : "bpsPerLine", "tail" : ": Int", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.bpsPerLine", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#bpsPerLine:Int", "kind" : "val"}, {"label" : "start", "tail" : ": Long", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.start", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#start:Long", "kind" : "val"}, {"label" : "length", "tail" : ": Long", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.length", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#length:Long", "kind" : "val"}, {"label" : "id", "tail" : ": String", "member" : "com.jnpersson.discount.fastdoop.FAIRecord.id", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#id:String", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/fastdoop\/FAIRecord.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTAlongInputFileFormat", "shortDescription" : "A FileInputFormat for reading FASTA files containingsequences of arbitrary length.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, PartialSequence]", "member" : "com.jnpersson.discount.fastdoop.FASTAlongInputFileFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.PartialSequence]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTAlongInputFileFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTAlongInputFileFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTAshortInputFileFormat", "shortDescription" : "A FileInputFormat for reading FASTA files containingshort sequences.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, Record]", "member" : "com.jnpersson.discount.fastdoop.FASTAshortInputFileFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.Record]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTAshortInputFileFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTAshortInputFileFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTQInputFileFormat", "shortDescription" : "A FileInputFormat for reading FASTQ files.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, QRecord]", "member" : "com.jnpersson.discount.fastdoop.FASTQInputFileFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.QRecord]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTQInputFileFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTQInputFileFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader", "shortDescription" : "This class reads pairs from an InputSplit.", "members_class" : [{"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getProgress():Float", "kind" : "def"}, {"label" : "getCurrentValue", "tail" : "(): QRecord", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.QRecord", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#close():Unit", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.FASTQReadsRecordReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/FASTQReadsRecordReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.IndexedFastaFormat", "shortDescription" : "Hadoop input format for FASTA files with an accompanying .fai index file.", "members_class" : [{"label" : "createRecordReader", "tail" : "(split: InputSplit, context: TaskAttemptContext): RecordReader[Text, PartialSequence]", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaFormat.createRecordReader", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#createRecordReader(split:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordReader[org.apache.hadoop.io.Text,com.jnpersson.discount.fastdoop.PartialSequence]", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.IndexedFastaFormat#", "error" : "unsupported entity"}, {"label" : "getBlockIndex", "tail" : "(arg0: Array[BlockLocation], arg1: Long): Int", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getBlockIndex", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getBlockIndex(x$1:Array[org.apache.hadoop.fs.BlockLocation],x$2:Long):Int", "kind" : "def"}, {"label" : "computeSplitSize", "tail" : "(arg0: Long, arg1: Long, arg2: Long): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.computeSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#computeSplitSize(x$1:Long,x$2:Long,x$3:Long):Long", "kind" : "def"}, {"label" : "getSplits", "tail" : "(arg0: JobContext): List[InputSplit]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getSplits", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getSplits(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.mapreduce.InputSplit]", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String], arg4: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String],x$5:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "makeSplit", "tail" : "(arg0: Path, arg1: Long, arg2: Long, arg3: Array[String]): FileSplit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.makeSplit", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#makeSplit(x$1:org.apache.hadoop.fs.Path,x$2:Long,x$3:Long,x$4:Array[String]):org.apache.hadoop.mapreduce.lib.input.FileSplit", "kind" : "def"}, {"label" : "addInputPathRecursively", "tail" : "(arg0: List[FileStatus], arg1: FileSystem, arg2: Path, arg3: PathFilter): Unit", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPathRecursively", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#addInputPathRecursively(x$1:java.util.List[org.apache.hadoop.fs.FileStatus],x$2:org.apache.hadoop.fs.FileSystem,x$3:org.apache.hadoop.fs.Path,x$4:org.apache.hadoop.fs.PathFilter):Unit", "kind" : "def"}, {"label" : "listStatus", "tail" : "(arg0: JobContext): List[FileStatus]", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.listStatus", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#listStatus(x$1:org.apache.hadoop.mapreduce.JobContext):java.util.List[org.apache.hadoop.fs.FileStatus]", "kind" : "def"}, {"label" : "isSplitable", "tail" : "(arg0: JobContext, arg1: Path): Boolean", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.isSplitable", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#isSplitable(x$1:org.apache.hadoop.mapreduce.JobContext,x$2:org.apache.hadoop.fs.Path):Boolean", "kind" : "def"}, {"label" : "getFormatMinSplitSize", "tail" : "(): Long", "member" : "org.apache.hadoop.mapreduce.lib.input.FileInputFormat.getFormatMinSplitSize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getFormatMinSplitSize():Long", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.IndexedFastaReader", "shortDescription" : "FASTA file reader that uses a faidx (.fai) file to track sequence locations.", "members_class" : [{"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#close():Unit", "kind" : "def"}, {"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getProgress():Float", "kind" : "def"}, {"label" : "getCurrentValue", "tail" : "(): PartialSequence", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.PartialSequence", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.IndexedFastaReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/IndexedFastaReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader", "shortDescription" : "This class reads pairs from an InputSplit.", "members_class" : [{"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getProgress():Float", "kind" : "def"}, {"label" : "getCurrentValue", "tail" : "(): PartialSequence", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.PartialSequence", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#close():Unit", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.LongReadsRecordReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/LongReadsRecordReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.PartialSequence", "shortDescription" : "This class is used to store fragments of a long input FASTAsequence as an array of bytes.", "members_class" : [{"label" : "setComplete", "tail" : "(complete: Boolean): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setComplete", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setComplete(complete:Boolean):Unit", "kind" : "def"}, {"label" : "isComplete", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.isComplete", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#isComplete():Boolean", "kind" : "def"}, {"label" : "setSeqPosition", "tail" : "(seqPosition: Long): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setSeqPosition", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setSeqPosition(seqPosition:Long):Unit", "kind" : "def"}, {"label" : "getSeqPosition", "tail" : "(): Long", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getSeqPosition", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getSeqPosition():Long", "kind" : "def"}, {"label" : "setEndValue", "tail" : "(endValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setEndValue(endValue:Int):Unit", "kind" : "def"}, {"label" : "getEndValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getEndValue():Int", "kind" : "def"}, {"label" : "setStartValue", "tail" : "(startValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setStartValue(startValue:Int):Unit", "kind" : "def"}, {"label" : "getStartValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getStartValue():Int", "kind" : "def"}, {"label" : "setHeader", "tail" : "(header: String): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setHeader", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setHeader(header:String):Unit", "kind" : "def"}, {"label" : "getHeader", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getHeader", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getHeader():String", "kind" : "def"}, {"label" : "setBytesToProcess", "tail" : "(bytesToProcess: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setBytesToProcess", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setBytesToProcess(bytesToProcess:Int):Unit", "kind" : "def"}, {"label" : "getBytesToProcess", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getBytesToProcess", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getBytesToProcess():Int", "kind" : "def"}, {"label" : "setBuffer", "tail" : "(buffer: Array[Byte]): Unit", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.setBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#setBuffer(buffer:Array[Byte]):Unit", "kind" : "def"}, {"label" : "getBuffer", "tail" : "(): Array[Byte]", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getBuffer():Array[Byte]", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#toString():String", "kind" : "def"}, {"label" : "toString2", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.toString2", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#toString2():String", "kind" : "def"}, {"label" : "getValue2", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getValue2", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getValue2():String", "kind" : "def"}, {"label" : "getValue", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getValue", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getValue():String", "kind" : "def"}, {"label" : "getKey", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.PartialSequence.getKey", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getKey():String", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.PartialSequence#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/PartialSequence.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.QRecord", "shortDescription" : "Utility class used to represent as a record a sequence existingin a FASTQ file.", "members_class" : [{"label" : "setEndQuality", "tail" : "(endQuality: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndQuality(endQuality:Int):Unit", "kind" : "def"}, {"label" : "getEndQuality", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndQuality():Int", "kind" : "def"}, {"label" : "setStartQuality", "tail" : "(startQuality: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartQuality(startQuality:Int):Unit", "kind" : "def"}, {"label" : "getStartQuality", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartQuality():Int", "kind" : "def"}, {"label" : "setEndKey2", "tail" : "(endKey2: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndKey2(endKey2:Int):Unit", "kind" : "def"}, {"label" : "getEndKey2", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndKey2():Int", "kind" : "def"}, {"label" : "setStartKey2", "tail" : "(startKey2: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartKey2(startKey2:Int):Unit", "kind" : "def"}, {"label" : "getStartKey2", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartKey2():Int", "kind" : "def"}, {"label" : "setEndValue", "tail" : "(endValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndValue(endValue:Int):Unit", "kind" : "def"}, {"label" : "setStartValue", "tail" : "(startValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartValue(startValue:Int):Unit", "kind" : "def"}, {"label" : "setEndKey", "tail" : "(endKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setEndKey(endKey:Int):Unit", "kind" : "def"}, {"label" : "getEndKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndKey():Int", "kind" : "def"}, {"label" : "setStartKey", "tail" : "(startKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setStartKey(startKey:Int):Unit", "kind" : "def"}, {"label" : "getStartKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartKey():Int", "kind" : "def"}, {"label" : "setBuffer", "tail" : "(buffer: Array[Byte]): Unit", "member" : "com.jnpersson.discount.fastdoop.QRecord.setBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#setBuffer(buffer:Array[Byte]):Unit", "kind" : "def"}, {"label" : "getEndValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getEndValue():Int", "kind" : "def"}, {"label" : "getStartValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.QRecord.getStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getStartValue():Int", "kind" : "def"}, {"label" : "getBuffer", "tail" : "(): Array[Byte]", "member" : "com.jnpersson.discount.fastdoop.QRecord.getBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getBuffer():Array[Byte]", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#toString():String", "kind" : "def"}, {"label" : "getQuality", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getQuality", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getQuality():String", "kind" : "def"}, {"label" : "getKey2", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getKey2", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getKey2():String", "kind" : "def"}, {"label" : "getValue", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getValue", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getValue():String", "kind" : "def"}, {"label" : "getKey", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.QRecord.getKey", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getKey():String", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.QRecord#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/QRecord.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.Record", "shortDescription" : "Utility class used to represent as a record a sequence existingin a FASTA file.", "members_class" : [{"label" : "setEndValue", "tail" : "(endValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setEndValue(endValue:Int):Unit", "kind" : "def"}, {"label" : "getEndValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getEndValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getEndValue():Int", "kind" : "def"}, {"label" : "setStartValue", "tail" : "(startValue: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setStartValue(startValue:Int):Unit", "kind" : "def"}, {"label" : "getStartValue", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getStartValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getStartValue():Int", "kind" : "def"}, {"label" : "setEndKey", "tail" : "(endKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setEndKey(endKey:Int):Unit", "kind" : "def"}, {"label" : "getEndKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getEndKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getEndKey():Int", "kind" : "def"}, {"label" : "setStartKey", "tail" : "(startKey: Int): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setStartKey(startKey:Int):Unit", "kind" : "def"}, {"label" : "getStartKey", "tail" : "(): Int", "member" : "com.jnpersson.discount.fastdoop.Record.getStartKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getStartKey():Int", "kind" : "def"}, {"label" : "setBuffer", "tail" : "(buffer: Array[Byte]): Unit", "member" : "com.jnpersson.discount.fastdoop.Record.setBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#setBuffer(buffer:Array[Byte]):Unit", "kind" : "def"}, {"label" : "getBuffer", "tail" : "(): Array[Byte]", "member" : "com.jnpersson.discount.fastdoop.Record.getBuffer", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getBuffer():Array[Byte]", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.Record.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#toString():String", "kind" : "def"}, {"label" : "getValue", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.Record.getValue", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getValue():String", "kind" : "def"}, {"label" : "getKey", "tail" : "(): String", "member" : "com.jnpersson.discount.fastdoop.Record.getKey", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getKey():String", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.Record#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/Record.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/Record.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader", "shortDescription" : "This class reads pairs from an InputSplit.", "members_class" : [{"label" : "getCurrentValue", "tail" : "(): Record", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.getCurrentValue", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getCurrentValue():com.jnpersson.discount.fastdoop.Record", "kind" : "def"}, {"label" : "getCurrentKey", "tail" : "(): Text", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.getCurrentKey", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getCurrentKey():org.apache.hadoop.io.Text", "kind" : "def"}, {"label" : "close", "tail" : "(): Unit", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.close", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#close():Unit", "kind" : "def"}, {"label" : "getProgress", "tail" : "(): Float", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.getProgress", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getProgress():Float", "kind" : "def"}, {"label" : "nextKeyValue", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.nextKeyValue", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#nextKeyValue():Boolean", "kind" : "def"}, {"label" : "initialize", "tail" : "(genericSplit: InputSplit, context: TaskAttemptContext): Unit", "member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader.initialize", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#initialize(genericSplit:org.apache.hadoop.mapreduce.InputSplit,context:org.apache.hadoop.mapreduce.TaskAttemptContext):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.fastdoop.ShortReadsRecordReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/fastdoop\/ShortReadsRecordReader.html", "kind" : "class"}], "com.jnpersson.discount.hash" : [{"name" : "com.jnpersson.discount.hash.BundledMinimizers", "shortDescription" : "Object to manage minimizer files that are stored directly on the classpath (e.g.", "object" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html", "members_object" : [{"label" : "getMinimizers", "tail" : "(k: Int, m: Int): Option[Array[String]]", "member" : "com.jnpersson.discount.hash.BundledMinimizers.getMinimizers", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#getMinimizers(k:Int,m:Int):Option[Array[String]]", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/BundledMinimizers$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.InputFragment", "shortDescription" : "A sequence fragment with a controlled maximum size.", "members_case class" : [{"member" : "com.jnpersson.discount.hash.InputFragment#", "error" : "unsupported entity"}, {"label" : "nucleotides", "tail" : ": NTSeq", "member" : "com.jnpersson.discount.hash.InputFragment.nucleotides", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#nucleotides:com.jnpersson.discount.NTSeq", "kind" : "val"}, {"label" : "location", "tail" : ": SeqLocation", "member" : "com.jnpersson.discount.hash.InputFragment.location", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#location:com.jnpersson.discount.SeqLocation", "kind" : "val"}, {"label" : "header", "tail" : ": SeqTitle", "member" : "com.jnpersson.discount.hash.InputFragment.header", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#header:com.jnpersson.discount.SeqTitle", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/InputFragment.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/InputFragment.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.hash.MinimizerPriorities", "members_trait" : [{"label" : "numLargeBuckets", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.numLargeBuckets", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#numLargeBuckets:Long", "kind" : "def"}, {"label" : "humanReadable", "tail" : "(priority: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#humanReadable(priority:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "numMinimizers", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.numMinimizers", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#numMinimizers:Long", "kind" : "abstract def"}, {"label" : "width", "tail" : "(): Int", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.width", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#width:Int", "kind" : "abstract def"}, {"label" : "motifForPriority", "tail" : "(priority: BucketId): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.motifForPriority", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#motifForPriority(priority:com.jnpersson.discount.hash.BucketId):Long", "kind" : "abstract def"}, {"label" : "priorityLookup", "tail" : "(motif: Long): BucketId", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.priorityLookup", "link" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html#priorityLookup(motif:Long):com.jnpersson.discount.hash.BucketId", "kind" : "abstract def"}], "shortDescription" : "Defines a reversible mapping between encoded minimizers and their priorities.", "trait" : "com\/jnpersson\/discount\/hash\/MinimizerPriorities.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.hash.MinSplitter", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html", "members_object" : [{"label" : "INVALID", "tail" : ": Long", "member" : "com.jnpersson.discount.hash.MinSplitter.INVALID", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#INVALID:Long", "kind" : "val"}, {"label" : "largeThreshold", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.MinSplitter.largeThreshold", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#largeThreshold:Int", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "humanReadable", "tail" : "(id: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinSplitter.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#humanReadable(id:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "splitEncodeLocation", "tail" : "(read: InputFragment, sequenceIDs: Map[SeqTitle, SeqID]): Iterator[SplitSegment]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitEncodeLocation", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitEncodeLocation(read:com.jnpersson.discount.hash.InputFragment,sequenceIDs:Map[com.jnpersson.discount.SeqTitle,com.jnpersson.discount.SeqID]):Iterator[com.jnpersson.discount.hash.SplitSegment]", "kind" : "def"}, {"label" : "splitRead", "tail" : "(encoded: ZeroNTBitArray, matches: Array[Long]): Iterator[(Int, Long, ZeroNTBitArray, SeqLocation)]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitRead", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitRead(encoded:com.jnpersson.discount.util.ZeroNTBitArray,matches:Array[Long]):Iterator[(Int,Long,com.jnpersson.discount.util.ZeroNTBitArray,com.jnpersson.discount.SeqLocation)]", "kind" : "def"}, {"label" : "splitRead", "tail" : "(encoded: ZeroNTBitArray, reverseComplement: Boolean): Iterator[(Int, Long, ZeroNTBitArray, SeqLocation)]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitRead", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitRead(encoded:com.jnpersson.discount.util.ZeroNTBitArray,reverseComplement:Boolean):Iterator[(Int,Long,com.jnpersson.discount.util.ZeroNTBitArray,com.jnpersson.discount.SeqLocation)]", "kind" : "def"}, {"label" : "splitEncode", "tail" : "(read: NTSeq, addRC: Boolean): Iterator[(Int, Long, ZeroNTBitArray, SeqLocation)]", "member" : "com.jnpersson.discount.hash.MinSplitter.splitEncode", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#splitEncode(read:com.jnpersson.discount.NTSeq,addRC:Boolean):Iterator[(Int,Long,com.jnpersson.discount.util.ZeroNTBitArray,com.jnpersson.discount.SeqLocation)]", "kind" : "def"}, {"label" : "scanner", "tail" : ": ShiftScanner", "member" : "com.jnpersson.discount.hash.MinSplitter.scanner", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#scanner:com.jnpersson.discount.hash.ShiftScanner", "kind" : "lazy val"}, {"member" : "com.jnpersson.discount.hash.MinSplitter#", "error" : "unsupported entity"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.MinSplitter.k", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#k:Int", "kind" : "val"}, {"label" : "priorities", "tail" : ": P", "member" : "com.jnpersson.discount.hash.MinSplitter.priorities", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#priorities:P", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinSplitter.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/MinSplitter.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.MinTable", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/hash\/MinTable$.html", "members_object" : [{"label" : "filteredOrdering", "tail" : "(template: MinTable, validMers: Iterable[NTSeq]): MinTable", "member" : "com.jnpersson.discount.hash.MinTable.filteredOrdering", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#filteredOrdering(template:com.jnpersson.discount.hash.MinTable,validMers:Iterable[com.jnpersson.discount.NTSeq]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "using", "tail" : "(mers: Seq[NTSeq]): MinTable", "member" : "com.jnpersson.discount.hash.MinTable.using", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#using(mers:Seq[com.jnpersson.discount.NTSeq]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "ofLength", "tail" : "(length: Int, rna: Boolean): MinTable", "member" : "com.jnpersson.discount.hash.MinTable.ofLength", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#ofLength(length:Int,rna:Boolean):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "motifsOfLength", "tail" : "(length: Int, rna: Boolean): Iterator[NTSeq]", "member" : "com.jnpersson.discount.hash.MinTable.motifsOfLength", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#motifsOfLength(length:Int,rna:Boolean):Iterator[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "all1mersRNA", "tail" : ": List[String]", "member" : "com.jnpersson.discount.hash.MinTable.all1mersRNA", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#all1mersRNA:List[String]", "kind" : "val"}, {"label" : "all1mersDNA", "tail" : ": List[String]", "member" : "com.jnpersson.discount.hash.MinTable.all1mersDNA", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#all1mersDNA:List[String]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "priorityLookupArray", "tail" : ": Array[Int]", "member" : "com.jnpersson.discount.hash.MinTable.priorityLookupArray", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#priorityLookupArray:Array[Int]", "kind" : "val"}, {"label" : "motifForPriority", "tail" : "(priority: BucketId): Long", "member" : "com.jnpersson.discount.hash.MinTable.motifForPriority", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#motifForPriority(priority:com.jnpersson.discount.hash.BucketId):Long", "kind" : "def"}, {"label" : "priorityLookup", "tail" : "(motif: Long): BucketId", "member" : "com.jnpersson.discount.hash.MinTable.priorityLookup", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#priorityLookup(motif:Long):com.jnpersson.discount.hash.BucketId", "kind" : "def"}, {"label" : "encodedMotif", "tail" : "(motif: NTSeq): Int", "member" : "com.jnpersson.discount.hash.MinTable.encodedMotif", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#encodedMotif(motif:com.jnpersson.discount.NTSeq):Int", "kind" : "def"}, {"label" : "scanner", "tail" : ": ShiftScanner", "member" : "com.jnpersson.discount.hash.MinTable.scanner", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#scanner:com.jnpersson.discount.hash.ShiftScanner", "kind" : "lazy val"}, {"label" : "numLargeBuckets", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinTable.numLargeBuckets", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#numLargeBuckets:Long", "kind" : "def"}, {"label" : "humanReadable", "tail" : "(priority: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinTable.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#humanReadable(priority:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "numMinimizers", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinTable.numMinimizers", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#numMinimizers:Long", "kind" : "def"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.MinTable.width", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#width:Int", "kind" : "val"}, {"member" : "com.jnpersson.discount.hash.MinTable#", "error" : "unsupported entity"}, {"label" : "largeBuckets", "tail" : ": ArrayBuffer[NTSeq]", "member" : "com.jnpersson.discount.hash.MinTable.largeBuckets", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#largeBuckets:scala.collection.mutable.ArrayBuffer[com.jnpersson.discount.NTSeq]", "kind" : "val"}, {"label" : "byPriority", "tail" : ": ArrayBuffer[NTSeq]", "member" : "com.jnpersson.discount.hash.MinTable.byPriority", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#byPriority:scala.collection.mutable.ArrayBuffer[com.jnpersson.discount.NTSeq]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/MinTable.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/MinTable.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.Orderings", "shortDescription" : "Routines for creating minimizer orderings.", "object" : "com\/jnpersson\/discount\/hash\/Orderings$.html", "members_object" : [{"label" : "randomOrdering", "tail" : "(template: MinTable): MinTable", "member" : "com.jnpersson.discount.hash.Orderings.randomOrdering", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#randomOrdering(template:com.jnpersson.discount.hash.MinTable):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "signatureHighPriority", "tail" : "(motif: String): Boolean", "member" : "com.jnpersson.discount.hash.Orderings.signatureHighPriority", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#signatureHighPriority(motif:String):Boolean", "kind" : "def"}, {"label" : "minimizerSignatureTable", "tail" : "(template: MinTable): MinTable", "member" : "com.jnpersson.discount.hash.Orderings.minimizerSignatureTable", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#minimizerSignatureTable(template:com.jnpersson.discount.hash.MinTable):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/Orderings$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.PosRankWindow", "shortDescription" : "Tracks Motifs in a moving window, such that the top priority item can always be obtained efficiently.", "members_class" : [{"label" : "hasNext", "tail" : "(): Boolean", "member" : "com.jnpersson.discount.hash.PosRankWindow.hasNext", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#hasNext:Boolean", "kind" : "def"}, {"label" : "next", "tail" : "(): Int", "member" : "com.jnpersson.discount.hash.PosRankWindow.next", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#next:Int", "kind" : "def"}, {"label" : "head", "tail" : "(): Int", "member" : "com.jnpersson.discount.hash.PosRankWindow.head", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#head:Int", "kind" : "def"}, {"label" : "advanceWindow", "tail" : "(): Unit", "member" : "com.jnpersson.discount.hash.PosRankWindow.advanceWindow", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#advanceWindow():Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.PosRankWindow#", "error" : "unsupported entity"}, {"label" : "motifRanks", "tail" : ": Array[Long]", "member" : "com.jnpersson.discount.hash.PosRankWindow.motifRanks", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#motifRanks:Array[Long]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/hash\/PosRankWindow.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.hash.RandomXOR", "shortDescription" : "Compute minimizer priority by XORing with a random mask", "members_case class" : [{"label" : "motifForPriority", "tail" : "(priority: BucketId): Long", "member" : "com.jnpersson.discount.hash.RandomXOR.motifForPriority", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#motifForPriority(priority:com.jnpersson.discount.hash.BucketId):Long", "kind" : "def"}, {"label" : "numMinimizers", "tail" : ": Long", "member" : "com.jnpersson.discount.hash.RandomXOR.numMinimizers", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#numMinimizers:Long", "kind" : "val"}, {"label" : "priorityLookup", "tail" : "(motif: Long): BucketId", "member" : "com.jnpersson.discount.hash.RandomXOR.priorityLookup", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#priorityLookup(motif:Long):com.jnpersson.discount.hash.BucketId", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.RandomXOR#", "error" : "unsupported entity"}, {"label" : "canonical", "tail" : ": Boolean", "member" : "com.jnpersson.discount.hash.RandomXOR.canonical", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#canonical:Boolean", "kind" : "val"}, {"label" : "xorMask", "tail" : ": Long", "member" : "com.jnpersson.discount.hash.RandomXOR.xorMask", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#xorMask:Long", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.hash.RandomXOR.width", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#width:Int", "kind" : "val"}, {"label" : "numLargeBuckets", "tail" : "(): Long", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.numLargeBuckets", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#numLargeBuckets:Long", "kind" : "def"}, {"label" : "humanReadable", "tail" : "(priority: BucketId): NTSeq", "member" : "com.jnpersson.discount.hash.MinimizerPriorities.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#humanReadable(priority:com.jnpersson.discount.hash.BucketId):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/RandomXOR.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/RandomXOR.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.hash.SampledFrequencies", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html", "members_object" : [{"label" : "fromReads", "tail" : "(scanner: ShiftScanner, inputs: Iterator[NTSeq]): SampledFrequencies", "member" : "com.jnpersson.discount.hash.SampledFrequencies.fromReads", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#fromReads(scanner:com.jnpersson.discount.hash.ShiftScanner,inputs:Iterator[com.jnpersson.discount.NTSeq]):com.jnpersson.discount.hash.SampledFrequencies", "kind" : "def"}, {"label" : "toTableByFrequency", "tail" : "(counts: Array[(NTSeq, Long)]): MinTable", "member" : "com.jnpersson.discount.hash.SampledFrequencies.toTableByFrequency", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#toTableByFrequency(counts:Array[(com.jnpersson.discount.NTSeq,Long)]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "toTable", "tail" : "(sampledFraction: Double): MinTable", "member" : "com.jnpersson.discount.hash.SampledFrequencies.toTable", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#toTable(sampledFraction:Double):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "print", "tail" : "(): Unit", "member" : "com.jnpersson.discount.hash.SampledFrequencies.print", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#print():Unit", "kind" : "def"}, {"label" : "motifsWithCounts", "tail" : ": Array[(NTSeq, Int)]", "member" : "com.jnpersson.discount.hash.SampledFrequencies.motifsWithCounts", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#motifsWithCounts:Array[(com.jnpersson.discount.NTSeq,Int)]", "kind" : "lazy val"}, {"label" : "add", "tail" : "(other: SampledFrequencies): SampledFrequencies", "member" : "com.jnpersson.discount.hash.SampledFrequencies.add", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#add(other:com.jnpersson.discount.hash.SampledFrequencies):com.jnpersson.discount.hash.SampledFrequencies", "kind" : "def"}, {"label" : "lookup", "tail" : ": Array[Int]", "member" : "com.jnpersson.discount.hash.SampledFrequencies.lookup", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#lookup:Array[Int]", "kind" : "val"}, {"member" : "com.jnpersson.discount.hash.SampledFrequencies#", "error" : "unsupported entity"}, {"label" : "counts", "tail" : ": Array[(Long, Int)]", "member" : "com.jnpersson.discount.hash.SampledFrequencies.counts", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#counts:Array[(Long,Int)]", "kind" : "val"}, {"label" : "table", "tail" : ": MinTable", "member" : "com.jnpersson.discount.hash.SampledFrequencies.table", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#table:com.jnpersson.discount.hash.MinTable", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/SampledFrequencies.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.hash.ShiftScanner", "shortDescription" : "Bit-shift scanner for fixed width motifs.", "members_case class" : [{"label" : "matchesOnly", "tail" : "(data: (Int) ⇒ Int, len: Int): Iterator[Long]", "member" : "com.jnpersson.discount.hash.ShiftScanner.matchesOnly", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#matchesOnly(data:Int=>Int,len:Int):Iterator[Long]", "kind" : "def"}, {"label" : "allMatches", "tail" : "(data: (Int) ⇒ Int, size: Int): (ZeroNTBitArray, Array[Long])", "member" : "com.jnpersson.discount.hash.ShiftScanner.allMatches", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#allMatches(data:Int=>Int,size:Int):(com.jnpersson.discount.util.ZeroNTBitArray,Array[Long])", "kind" : "def"}, {"label" : "allMatches", "tail" : "(data: ZeroNTBitArray, reverseComplement: Boolean): (ZeroNTBitArray, Array[Long])", "member" : "com.jnpersson.discount.hash.ShiftScanner.allMatches", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#allMatches(data:com.jnpersson.discount.util.ZeroNTBitArray,reverseComplement:Boolean):(com.jnpersson.discount.util.ZeroNTBitArray,Array[Long])", "kind" : "def"}, {"label" : "matchesOnly", "tail" : "(data: NTSeq): Iterator[Long]", "member" : "com.jnpersson.discount.hash.ShiftScanner.matchesOnly", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#matchesOnly(data:com.jnpersson.discount.NTSeq):Iterator[Long]", "kind" : "def"}, {"label" : "allMatches", "tail" : "(data: NTSeq): (ZeroNTBitArray, Array[Long])", "member" : "com.jnpersson.discount.hash.ShiftScanner.allMatches", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#allMatches(data:com.jnpersson.discount.NTSeq):(com.jnpersson.discount.util.ZeroNTBitArray,Array[Long])", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.ShiftScanner#", "error" : "unsupported entity"}, {"label" : "priorities", "tail" : ": MinimizerPriorities", "member" : "com.jnpersson.discount.hash.ShiftScanner.priorities", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#priorities:com.jnpersson.discount.hash.MinimizerPriorities", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/ShiftScanner.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.hash.SplitSegment", "shortDescription" : "A hashed segment (i.e.", "members_case class" : [{"label" : "humanReadable", "tail" : "(splitter: AnyMinSplitter): (String, SeqID, SeqLocation, NTSeq)", "member" : "com.jnpersson.discount.hash.SplitSegment.humanReadable", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#humanReadable(splitter:com.jnpersson.discount.spark.AnyMinSplitter):(String,com.jnpersson.discount.SeqID,com.jnpersson.discount.SeqLocation,com.jnpersson.discount.NTSeq)", "kind" : "def"}, {"member" : "com.jnpersson.discount.hash.SplitSegment#", "error" : "unsupported entity"}, {"label" : "nucleotides", "tail" : ": ZeroNTBitArray", "member" : "com.jnpersson.discount.hash.SplitSegment.nucleotides", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#nucleotides:com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "val"}, {"label" : "location", "tail" : ": SeqLocation", "member" : "com.jnpersson.discount.hash.SplitSegment.location", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#location:com.jnpersson.discount.SeqLocation", "kind" : "val"}, {"label" : "sequence", "tail" : ": SeqID", "member" : "com.jnpersson.discount.hash.SplitSegment.sequence", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#sequence:com.jnpersson.discount.SeqID", "kind" : "val"}, {"label" : "hash", "tail" : ": BucketId", "member" : "com.jnpersson.discount.hash.SplitSegment.hash", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#hash:com.jnpersson.discount.hash.BucketId", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/hash\/SplitSegment.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/hash\/SplitSegment.html", "kind" : "case class"}], "com.jnpersson.discount" : [{"name" : "com.jnpersson.discount.Frequency", "shortDescription" : "Ordering by frequency (rare to common)", "object" : "com\/jnpersson\/discount\/package$$Frequency$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Frequency$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.Given", "shortDescription" : "A user-specified ordering", "object" : "com\/jnpersson\/discount\/package$$Given$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Given$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Given$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Given$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Given$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Given$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Given$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Given$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Given$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Given$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Given$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Given$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Given$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Given$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Given$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Given$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Given$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Given$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.Lexicographic", "shortDescription" : "Lexicographic (alphabetical) ordering", "object" : "com\/jnpersson\/discount\/package$$Lexicographic$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Lexicographic$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.MinimizerOrdering", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "shortDescription" : "A type of ordering of a minimizer set", "trait" : "com\/jnpersson\/discount\/package$$MinimizerOrdering.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.Random", "shortDescription" : "Random ordering", "object" : "com\/jnpersson\/discount\/package$$Random$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Random$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Random$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Random$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Random$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Random$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Random$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Random$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Random$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Random$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Random$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Random$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Random$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Random$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Random$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Random$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Random$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Random$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.ReadSplitDemo", "shortDescription" : "Minimal test program that demonstrates using the Discount APIto split reads into super-mers without using Spark.", "object" : "com\/jnpersson\/discount\/ReadSplitDemo$.html", "members_object" : [{"label" : "writeToFile", "tail" : "(conf: ReadSplitConf, destination: String): Unit", "member" : "com.jnpersson.discount.ReadSplitDemo.writeToFile", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#writeToFile(conf:com.jnpersson.discount.ReadSplitConf,destination:String):Unit", "kind" : "def"}, {"label" : "prettyOutput", "tail" : "(conf: ReadSplitConf): Unit", "member" : "com.jnpersson.discount.ReadSplitDemo.prettyOutput", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#prettyOutput(conf:com.jnpersson.discount.ReadSplitConf):Unit", "kind" : "def"}, {"label" : "main", "tail" : "(args: Array[String]): Unit", "member" : "com.jnpersson.discount.ReadSplitDemo.main", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#main(args:Array[String]):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/ReadSplitDemo$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.Signature", "shortDescription" : "Ordering by minimizer signature, as in KMC2\/3", "object" : "com\/jnpersson\/discount\/package$$Signature$.html", "members_object" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/package$$Signature$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/package$$Signature$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}], "com" : [], "com.jnpersson.discount.util" : [{"name" : "com.jnpersson.discount.util.Arrays", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/Arrays$.html", "members_object" : [{"label" : "fillNew", "tail" : "(size: Int, elem: T)(arg0: ClassTag[T]): Array[T]", "member" : "com.jnpersson.discount.util.Arrays.fillNew", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#fillNew[T](size:Int,elem:T)(implicitevidence$1:scala.reflect.ClassTag[T]):Array[T]", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/Arrays$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.BitRepresentation", "shortDescription" : "Helper functions for working with a low level bit representation of nucleotide sequences.", "object" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html", "members_object" : [{"label" : "bytesToString", "tail" : "(bytes: Array[Byte], builder: StringBuilder, offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.BitRepresentation.bytesToString", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#bytesToString(bytes:Array[Byte],builder:StringBuilder,offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "stringToBytes", "tail" : "(bps: NTSeq): Array[Byte]", "member" : "com.jnpersson.discount.util.BitRepresentation.stringToBytes", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#stringToBytes(bps:com.jnpersson.discount.NTSeq):Array[Byte]", "kind" : "def"}, {"label" : "quadToByte", "tail" : "(quad: String, offset: Int): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.quadToByte", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#quadToByte(quad:String,offset:Int):Byte", "kind" : "def"}, {"label" : "twobitToChar", "tail" : "(byte: Byte): Char", "member" : "com.jnpersson.discount.util.BitRepresentation.twobitToChar", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#twobitToChar(byte:Byte):Char", "kind" : "def"}, {"label" : "charToTwobitWithInvalid", "tail" : "(char: Char): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.charToTwobitWithInvalid", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#charToTwobitWithInvalid(char:Char):Byte", "kind" : "def"}, {"label" : "charToTwobit", "tail" : "(char: Char): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.charToTwobit", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#charToTwobit(char:Char):Byte", "kind" : "def"}, {"label" : "INVALID", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.INVALID", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#INVALID:Byte", "kind" : "val"}, {"label" : "WHITESPACE", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.WHITESPACE", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#WHITESPACE:Byte", "kind" : "val"}, {"label" : "byteToQuad", "tail" : "(byte: Byte): NTSeq", "member" : "com.jnpersson.discount.util.BitRepresentation.byteToQuad", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#byteToQuad(byte:Byte):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "byteToQuadLookup", "tail" : ": Array[NTSeq]", "member" : "com.jnpersson.discount.util.BitRepresentation.byteToQuadLookup", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#byteToQuadLookup:Array[com.jnpersson.discount.NTSeq]", "kind" : "val"}, {"label" : "quadToByte", "tail" : "(quad: NTSeq): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.quadToByte", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#quadToByte(quad:com.jnpersson.discount.NTSeq):Byte", "kind" : "def"}, {"label" : "reverseComplement", "tail" : "(encodedNTs: Long, width: Int, complementMask: Long): Long", "member" : "com.jnpersson.discount.util.BitRepresentation.reverseComplement", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#reverseComplement(encodedNTs:Long,width:Int,complementMask:Long):Long", "kind" : "def"}, {"label" : "complement", "tail" : "(byte: Byte): Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.complement", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#complement(byte:Byte):Byte", "kind" : "def"}, {"label" : "complementOne", "tail" : "(byte: Byte): Int", "member" : "com.jnpersson.discount.util.BitRepresentation.complementOne", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#complementOne(byte:Byte):Int", "kind" : "def"}, {"label" : "twobits", "tail" : ": List[Byte]", "member" : "com.jnpersson.discount.util.BitRepresentation.twobits", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#twobits:List[Byte]", "kind" : "val"}, {"label" : "U", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.U", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#U:Byte", "kind" : "val"}, {"label" : "T", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.T", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#T:Byte", "kind" : "val"}, {"label" : "G", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.G", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#G:Byte", "kind" : "val"}, {"label" : "C", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.C", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#C:Byte", "kind" : "val"}, {"label" : "A", "tail" : ": Byte", "member" : "com.jnpersson.discount.util.BitRepresentation.A", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#A:Byte", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/BitRepresentation$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.DNAHelpers", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html", "members_object" : [{"label" : "reverseComplement", "tail" : "(data: String): String", "member" : "com.jnpersson.discount.util.DNAHelpers.reverseComplement", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#reverseComplement(data:String):String", "kind" : "def"}, {"label" : "complement", "tail" : "(data: String): String", "member" : "com.jnpersson.discount.util.DNAHelpers.complement", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#complement(data:String):String", "kind" : "def"}, {"label" : "charComplement", "tail" : "(bp: Char): Char", "member" : "com.jnpersson.discount.util.DNAHelpers.charComplement", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#charComplement(bp:Char):Char", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/DNAHelpers$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.EmptyRowTagProvider", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html", "members_object" : [{"label" : "writeForCol", "tail" : "(col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.EmptyRowTagProvider.writeForCol", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#writeForCol(col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/EmptyRowTagProvider$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.util.InvalidNucleotideException", "shortDescription" : "Thrown when we encounter a letter in the sequence input that we do not expect to see", "members_class" : [{"member" : "com.jnpersson.discount.util.InvalidNucleotideException#", "error" : "unsupported entity"}, {"label" : "invalidChar", "tail" : ": Char", "member" : "com.jnpersson.discount.util.InvalidNucleotideException.invalidChar", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#invalidChar:Char", "kind" : "val"}, {"label" : "getSuppressed", "tail" : "(): Array[Throwable]", "member" : "java.lang.Throwable.getSuppressed", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getSuppressed():Array[Throwable]", "kind" : "final def"}, {"label" : "addSuppressed", "tail" : "(arg0: Throwable): Unit", "member" : "java.lang.Throwable.addSuppressed", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#addSuppressed(x$1:Throwable):Unit", "kind" : "final def"}, {"label" : "setStackTrace", "tail" : "(arg0: Array[StackTraceElement]): Unit", "member" : "java.lang.Throwable.setStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#setStackTrace(x$1:Array[StackTraceElement]):Unit", "kind" : "def"}, {"label" : "getStackTrace", "tail" : "(): Array[StackTraceElement]", "member" : "java.lang.Throwable.getStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getStackTrace():Array[StackTraceElement]", "kind" : "def"}, {"label" : "fillInStackTrace", "tail" : "(): Throwable", "member" : "java.lang.Throwable.fillInStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#fillInStackTrace():Throwable", "kind" : "def"}, {"label" : "printStackTrace", "tail" : "(arg0: PrintWriter): Unit", "member" : "java.lang.Throwable.printStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#printStackTrace(x$1:java.io.PrintWriter):Unit", "kind" : "def"}, {"label" : "printStackTrace", "tail" : "(arg0: PrintStream): Unit", "member" : "java.lang.Throwable.printStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#printStackTrace(x$1:java.io.PrintStream):Unit", "kind" : "def"}, {"label" : "printStackTrace", "tail" : "(): Unit", "member" : "java.lang.Throwable.printStackTrace", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#printStackTrace():Unit", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "java.lang.Throwable.toString", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#toString():String", "kind" : "def"}, {"label" : "initCause", "tail" : "(arg0: Throwable): Throwable", "member" : "java.lang.Throwable.initCause", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#initCause(x$1:Throwable):Throwable", "kind" : "def"}, {"label" : "getCause", "tail" : "(): Throwable", "member" : "java.lang.Throwable.getCause", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getCause():Throwable", "kind" : "def"}, {"label" : "getLocalizedMessage", "tail" : "(): String", "member" : "java.lang.Throwable.getLocalizedMessage", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getLocalizedMessage():String", "kind" : "def"}, {"label" : "getMessage", "tail" : "(): String", "member" : "java.lang.Throwable.getMessage", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getMessage():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/InvalidNucleotideException.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/KmerTable$.html", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#size:Int", "kind" : "val"}, {"member" : "com.jnpersson.discount.util.KmerTable#", "error" : "unsupported entity"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#copyKmer(i:Int):Array[Long]", "kind" : "abstract def"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "abstract def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "abstract def"}], "members_object" : [{"label" : "fromSupermers", "tail" : "(supermers: Iterable[NTBitArray], k: Int, forwardOnly: Boolean, sort: Boolean, tagData: TagProvider): KmerTable", "member" : "com.jnpersson.discount.util.KmerTable.fromSupermers", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#fromSupermers(supermers:Iterable[com.jnpersson.discount.util.NTBitArray],k:Int,forwardOnly:Boolean,sort:Boolean,tagData:com.jnpersson.discount.util.TagProvider):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "fromSegments", "tail" : "(segments: Iterable[NTBitArray], abundances: Array[Int], k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.util.KmerTable.fromSegments", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#fromSegments(segments:Iterable[com.jnpersson.discount.util.NTBitArray],abundances:Array[Int],k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "fromSegment", "tail" : "(segment: NTBitArray, k: Int, forwardOnly: Boolean, sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.util.KmerTable.fromSegment", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#fromSegment(segment:com.jnpersson.discount.util.NTBitArray,k:Int,forwardOnly:Boolean,sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "builder", "tail" : "(k: Int, sizeEstimate: Int, tagWidth: Int): KmerTableBuilder", "member" : "com.jnpersson.discount.util.KmerTable.builder", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#builder(k:Int,sizeEstimate:Int,tagWidth:Int):com.jnpersson.discount.util.KmerTableBuilder", "kind" : "def"}, {"label" : "longsForK", "tail" : "(k: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable.longsForK", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#longsForK(k:Int):Int", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.util.KmerTable1", "shortDescription" : "Specialized KmerTable for n = 1 (k <= 32)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable1.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable1.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable1.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable1#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable1.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable1.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable2", "shortDescription" : "Specialized KmerTable for n = 2 (k <= 64)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable2.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable2.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable2.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable2#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable2.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable2.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable3", "shortDescription" : "Specialized KmerTable for n = 3 (k <= 96)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable3.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable3.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable3.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable3#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable3.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable3.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTable4", "shortDescription" : "Specialized KmerTable for n = 4 (k <= 128)", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTable4.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable4.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTable4.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTable4#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTable4.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTable4.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTableBuilder", "shortDescription" : "Builder for k-mer tables.", "members_class" : [{"label" : "result", "tail" : "(sort: Boolean): KmerTable", "member" : "com.jnpersson.discount.util.KmerTableBuilder.result", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#result(sort:Boolean):com.jnpersson.discount.util.KmerTable", "kind" : "def"}, {"label" : "addLongs", "tail" : "(xs: Array[Long]): Unit", "member" : "com.jnpersson.discount.util.KmerTableBuilder.addLongs", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#addLongs(xs:Array[Long]):Unit", "kind" : "def"}, {"label" : "addLong", "tail" : "(x: Long): Unit", "member" : "com.jnpersson.discount.util.KmerTableBuilder.addLong", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#addLong(x:Long):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTableBuilder#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTableBuilder.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.KmerTableN", "shortDescription" : "General KmerTable for any value of n", "members_class" : [{"label" : "Elements", "tail" : "", "member" : "scala.collection.IndexedSeqLike.Elements", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#ElementsextendsAbstractIterator[A]withBufferedIterator[A]withSerializable", "kind" : "class"}, {"label" : "WithFilter", "tail" : "", "member" : "scala.collection.TraversableLike.WithFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#WithFilterextendsFilterMonadic[A,Repr]", "kind" : "class"}, {"label" : "compareKmers", "tail" : "(idx: Int, other: KmerTable, otherIdx: Int): Int", "member" : "com.jnpersson.discount.util.KmerTableN.compareKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#compareKmers(idx:Int,other:com.jnpersson.discount.util.KmerTable,otherIdx:Int):Int", "kind" : "def"}, {"label" : "copyKmer", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTableN.copyKmer", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmer(i:Int):Array[Long]", "kind" : "def"}, {"label" : "equalKmers", "tail" : "(i: Int, kmer: Array[Long]): Boolean", "member" : "com.jnpersson.discount.util.KmerTableN.equalKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#equalKmers(i:Int,kmer:Array[Long]):Boolean", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.KmerTableN#", "error" : "unsupported entity"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.KmerTable.toString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toString():String", "kind" : "def"}, {"label" : "tagsIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.tagsIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tagsIterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iteratorWithTags", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iteratorWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#iteratorWithTags:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "iterator", "tail" : "(): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.iterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#iterator:Iterator[Array[Long]]", "kind" : "def"}, {"label" : "indexIterator", "tail" : "(): Iterator[Int]", "member" : "com.jnpersson.discount.util.KmerTable.indexIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexIterator:Iterator[Int]", "kind" : "def"}, {"label" : "countedKmers", "tail" : "(): Iterator[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.util.KmerTable.countedKmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#countedKmers:Iterator[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "copyKmerAndTagsToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTagsToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmerAndTagsToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyTagsOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyTagsOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyTagsOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerOnlyToBuilder", "tail" : "(destination: KmerTableBuilder, i: Int): Unit", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerOnlyToBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmerOnlyToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,i:Int):Unit", "kind" : "def"}, {"label" : "copyKmerAndTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.copyKmerAndTags", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyKmerAndTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.kmerWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#kmerWidth:Int", "kind" : "val"}, {"label" : "tagsOnly", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.tagsOnly", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tagsOnly(i:Int):Array[Long]", "kind" : "def"}, {"label" : "kmerWithTags", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.kmerWithTags", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#kmerWithTags(i:Int):Array[Long]", "kind" : "def"}, {"label" : "apply", "tail" : "(i: Int): Array[Long]", "member" : "com.jnpersson.discount.util.KmerTable.apply", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#apply(i:Int):Array[Long]", "kind" : "def"}, {"label" : "length", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.KmerTable.length", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#length:Int", "kind" : "def"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.size", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#size:Int", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.k", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#k:Int", "kind" : "val"}, {"label" : "tagWidth", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.tagWidth", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tagWidth:Int", "kind" : "val"}, {"label" : "width", "tail" : ": Int", "member" : "com.jnpersson.discount.util.KmerTable.width", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#width:Int", "kind" : "val"}, {"label" : "kmers", "tail" : ": Array[Array[Long]]", "member" : "com.jnpersson.discount.util.KmerTable.kmers", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#kmers:Array[Array[Long]]", "kind" : "val"}, {"label" : "seq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeq.seq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#seq:IndexedSeq[A]", "kind" : "def"}, {"label" : "companion", "tail" : "(): GenericCompanion[IndexedSeq]", "member" : "scala.collection.IndexedSeq.companion", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#companion:scala.collection.generic.GenericCompanion[IndexedSeq]", "kind" : "def"}, {"label" : "sizeHintIfCheap", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.sizeHintIfCheap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sizeHintIfCheap:Int", "kind" : "def"}, {"label" : "toBuffer", "tail" : "(): Buffer[A1]", "member" : "scala.collection.IndexedSeqLike.toBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toBuffer[A1>:A]:scala.collection.mutable.Buffer[A1]", "kind" : "def"}, {"label" : "toCollection", "tail" : "(repr: IndexedSeq[Array[Long]]): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.toCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toCollection(repr:Repr):IndexedSeq[A]", "kind" : "def"}, {"label" : "thisCollection", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.IndexedSeqLike.thisCollection", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#thisCollection:IndexedSeq[A]", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.collection.IndexedSeqLike.hashCode", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#hashCode():Int", "kind" : "def"}, {"label" : "view", "tail" : "(from: Int, until: Int): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#view(from:Int,until:Int):scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "view", "tail" : "(): SeqView[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.view", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#view:scala.collection.SeqView[A,Repr]", "kind" : "def"}, {"label" : "indices", "tail" : "(): Range", "member" : "scala.collection.SeqLike.indices", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indices:scala.collection.immutable.Range", "kind" : "def"}, {"label" : "toSeq", "tail" : "(): Seq[Array[Long]]", "member" : "scala.collection.SeqLike.toSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toSeq:Seq[A]", "kind" : "def"}, {"label" : "sorted", "tail" : "(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sorted", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sorted[B>:A](implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortBy", "tail" : "(f: (Array[Long]) ⇒ B)(ord: Ordering[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sortBy[B](f:A=>B)(implicitord:scala.math.Ordering[B]):Repr", "kind" : "def"}, {"label" : "sortWith", "tail" : "(lt: (Array[Long], Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.sortWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sortWith(lt:(A,A)=>Boolean):Repr", "kind" : "def"}, {"label" : "corresponds", "tail" : "(that: GenSeq[B])(p: (Array[Long], B) ⇒ Boolean): Boolean", "member" : "scala.collection.SeqLike.corresponds", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#corresponds[B](that:scala.collection.GenSeq[B])(p:(A,B)=>Boolean):Boolean", "kind" : "def"}, {"label" : "padTo", "tail" : "(len: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.padTo", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#padTo[B>:A,That](len:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : ":+", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.:+", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#:+[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "+:", "tail" : "(elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.+:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#+:[B>:A,That](elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "updated", "tail" : "(index: Int, elem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.updated", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#updated[B>:A,That](index:Int,elem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "patch", "tail" : "(from: Int, patch: GenSeq[B], replaced: Int)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.patch", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#patch[B>:A,That](from:Int,patch:scala.collection.GenSeq[B],replaced:Int)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "distinct", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.distinct", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#distinct:Repr", "kind" : "def"}, {"label" : "intersect", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.intersect", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#intersect[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "diff", "tail" : "(that: GenSeq[B]): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.diff", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#diff[B>:A](that:scala.collection.GenSeq[B]):Repr", "kind" : "def"}, {"label" : "union", "tail" : "(that: GenSeq[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.union", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#union[B>:A,That](that:scala.collection.GenSeq[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "contains", "tail" : "(elem: A1): Boolean", "member" : "scala.collection.SeqLike.contains", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#contains[A1>:A](elem:A1):Boolean", "kind" : "def"}, {"label" : "containsSlice", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.containsSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#containsSlice[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B], end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B],end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.lastIndexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B], from: Int): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B],from:Int):Int", "kind" : "def"}, {"label" : "indexOfSlice", "tail" : "(that: GenSeq[B]): Int", "member" : "scala.collection.SeqLike.indexOfSlice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOfSlice[B>:A](that:scala.collection.GenSeq[B]):Int", "kind" : "def"}, {"label" : "endsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.SeqLike.endsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#endsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B], offset: Int): Boolean", "member" : "scala.collection.SeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean", "kind" : "def"}, {"label" : "reverseIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.SeqLike.reverseIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reverseIterator:Iterator[A]", "kind" : "def"}, {"label" : "reverseMap", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.SeqLike.reverseMap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reverseMap[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "reverse", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.SeqLike.reverse", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reverse:Repr", "kind" : "def"}, {"label" : "combinations", "tail" : "(n: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.combinations", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#combinations(n:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "permutations", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.permutations", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#permutations:Iterator[Repr]", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, end: Int): Int", "member" : "scala.collection.SeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexWhere(p:A=>Boolean,end:Int):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexWhere(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "segmentLength", "tail" : "(p: (Array[Long]) ⇒ Boolean, from: Int): Int", "member" : "scala.collection.SeqLike.segmentLength", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#segmentLength(p:A=>Boolean,from:Int):Int", "kind" : "def"}, {"label" : "isEmpty", "tail" : "(): Boolean", "member" : "scala.collection.SeqLike.isEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isEmpty:Boolean", "kind" : "def"}, {"label" : "lengthCompare", "tail" : "(len: Int): Int", "member" : "scala.collection.SeqLike.lengthCompare", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lengthCompare(len:Int):Int", "kind" : "def"}, {"label" : "parCombiner", "tail" : "(): Combiner[Array[Long], ParSeq[Array[Long]]]", "member" : "scala.collection.SeqLike.parCombiner", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#parCombiner:scala.collection.parallel.Combiner[A,scala.collection.parallel.ParSeq[A]]", "kind" : "def"}, {"label" : "equals", "tail" : "(that: Any): Boolean", "member" : "scala.collection.GenSeqLike.equals", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#equals(that:Any):Boolean", "kind" : "def"}, {"label" : "startsWith", "tail" : "(that: GenSeq[B]): Boolean", "member" : "scala.collection.GenSeqLike.startsWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#startsWith[B](that:scala.collection.GenSeq[B]):Boolean", "kind" : "def"}, {"label" : "lastIndexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.lastIndexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B, end: Int): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOf[B>:A](elem:B,end:Int):Int", "kind" : "def"}, {"label" : "lastIndexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.lastIndexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastIndexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B, from: Int): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOf[B>:A](elem:B,from:Int):Int", "kind" : "def"}, {"label" : "indexOf", "tail" : "(elem: B): Int", "member" : "scala.collection.GenSeqLike.indexOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexOf[B>:A](elem:B):Int", "kind" : "def"}, {"label" : "indexWhere", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.indexWhere", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#indexWhere(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "prefixLength", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.GenSeqLike.prefixLength", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#prefixLength(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "isDefinedAt", "tail" : "(idx: Int): Boolean", "member" : "scala.collection.GenSeqLike.isDefinedAt", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isDefinedAt(idx:Int):Boolean", "kind" : "def"}, {"label" : "canEqual", "tail" : "(that: Any): Boolean", "member" : "scala.collection.IterableLike.canEqual", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#canEqual(that:Any):Boolean", "kind" : "def"}, {"label" : "toStream", "tail" : "(): Stream[Array[Long]]", "member" : "scala.collection.IterableLike.toStream", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toStream:scala.collection.immutable.Stream[A]", "kind" : "def"}, {"label" : "sameElements", "tail" : "(that: GenIterable[B]): Boolean", "member" : "scala.collection.IterableLike.sameElements", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sameElements[B>:A](that:scala.collection.GenIterable[B]):Boolean", "kind" : "def"}, {"label" : "zipWithIndex", "tail" : "(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, Int), That]): That", "member" : "scala.collection.IterableLike.zipWithIndex", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#zipWithIndex[A1>:A,That](implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,Int),That]):That", "kind" : "def"}, {"label" : "zipAll", "tail" : "(that: GenIterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zipAll", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#zipAll[B,A1>:A,That](that:scala.collection.GenIterable[B],thisElem:A1,thatElem:B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "zip", "tail" : "(that: GenIterable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], (A1, B), That]): That", "member" : "scala.collection.IterableLike.zip", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#zip[A1>:A,B,That](that:scala.collection.GenIterable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,(A1,B),That]):That", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int, len: Int): Unit", "member" : "scala.collection.IterableLike.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToArray[B>:A](xs:Array[B],start:Int,len:Int):Unit", "kind" : "def"}, {"label" : "dropRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.dropRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#dropRight(n:Int):Repr", "kind" : "def"}, {"label" : "takeRight", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#takeRight(n:Int):Repr", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int, step: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sliding(size:Int,step:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "sliding", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.sliding", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sliding(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "grouped", "tail" : "(size: Int): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.IterableLike.grouped", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#grouped(size:Int):Iterator[Repr]", "kind" : "def"}, {"label" : "takeWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.takeWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#takeWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "drop", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.drop", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#drop(n:Int):Repr", "kind" : "def"}, {"label" : "take", "tail" : "(n: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.take", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#take(n:Int):Repr", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, until: Int): IndexedSeq[Array[Long]]", "member" : "scala.collection.IterableLike.slice", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#slice(from:Int,until:Int):Repr", "kind" : "def"}, {"label" : "head", "tail" : "(): Array[Long]", "member" : "scala.collection.IterableLike.head", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#head:A", "kind" : "def"}, {"label" : "toIterator", "tail" : "(): Iterator[Array[Long]]", "member" : "scala.collection.IterableLike.toIterator", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toIterator:Iterator[A]", "kind" : "def"}, {"label" : "toIterable", "tail" : "(): Iterable[Array[Long]]", "member" : "scala.collection.IterableLike.toIterable", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toIterable:Iterable[A]", "kind" : "def"}, {"label" : "reduceRight", "tail" : "(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.reduceRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceRight[B>:A](op:(A,B)=>B):B", "kind" : "def"}, {"label" : "foldRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.IterableLike.foldRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#foldRight[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "find", "tail" : "(p: (Array[Long]) ⇒ Boolean): Option[Array[Long]]", "member" : "scala.collection.IterableLike.find", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#find(p:A=>Boolean):Option[A]", "kind" : "def"}, {"label" : "exists", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.exists", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#exists(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "forall", "tail" : "(p: (Array[Long]) ⇒ Boolean): Boolean", "member" : "scala.collection.IterableLike.forall", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#forall(p:A=>Boolean):Boolean", "kind" : "def"}, {"label" : "foreach", "tail" : "(f: (Array[Long]) ⇒ U): Unit", "member" : "scala.collection.IterableLike.foreach", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#foreach[U](f:A=>U):Unit", "kind" : "def"}, {"label" : "transpose", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.transpose", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#transpose[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[CC[B]@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "flatten", "tail" : "(asTraversable: (Array[Long]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]", "member" : "scala.collection.generic.GenericTraversableTemplate.flatten", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#flatten[B](implicitasTraversable:A=>scala.collection.GenTraversableOnce[B]):CC[B]", "kind" : "def"}, {"label" : "unzip3", "tail" : "(asTriple: (Array[Long]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip3", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#unzip3[A1,A2,A3](implicitasTriple:A=>(A1,A2,A3)):(CC[A1],CC[A2],CC[A3])", "kind" : "def"}, {"label" : "unzip", "tail" : "(asPair: (Array[Long]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])", "member" : "scala.collection.generic.GenericTraversableTemplate.unzip", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#unzip[A1,A2](implicitasPair:A=>(A1,A2)):(CC[A1],CC[A2])", "kind" : "def"}, {"label" : "genericBuilder", "tail" : "(): Builder[B, IndexedSeq[B]]", "member" : "scala.collection.generic.GenericTraversableTemplate.genericBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#genericBuilder[B]:scala.collection.mutable.Builder[B,CC[B]]", "kind" : "def"}, {"label" : "newBuilder", "tail" : "(): Builder[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.generic.GenericTraversableTemplate.newBuilder", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#newBuilder:scala.collection.mutable.Builder[A,CC[A]]", "kind" : "def"}, {"label" : "withFilter", "tail" : "(p: (Array[Long]) ⇒ Boolean): FilterMonadic[Array[Long], IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.withFilter", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#withFilter(p:A=>Boolean):scala.collection.generic.FilterMonadic[A,Repr]", "kind" : "def"}, {"label" : "stringPrefix", "tail" : "(): String", "member" : "scala.collection.TraversableLike.stringPrefix", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#stringPrefix:String", "kind" : "def"}, {"label" : "to", "tail" : "(cbf: CanBuildFrom[Nothing, Array[Long], Col[Array[Long]]]): Col[Array[Long]]", "member" : "scala.collection.TraversableLike.to", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,A,Col[A@scala.annotation.unchecked.uncheckedVariance]]):Col[A@scala.annotation.unchecked.uncheckedVariance]", "kind" : "def"}, {"label" : "toTraversable", "tail" : "(): Traversable[Array[Long]]", "member" : "scala.collection.TraversableLike.toTraversable", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toTraversable:Traversable[A]", "kind" : "def"}, {"label" : "inits", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.inits", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#inits:Iterator[Repr]", "kind" : "def"}, {"label" : "tails", "tail" : "(): Iterator[IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.tails", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tails:Iterator[Repr]", "kind" : "def"}, {"label" : "splitAt", "tail" : "(n: Int): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.splitAt", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#splitAt(n:Int):(Repr,Repr)", "kind" : "def"}, {"label" : "span", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.span", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#span(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "dropWhile", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.dropWhile", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#dropWhile(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "init", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.init", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#init:Repr", "kind" : "def"}, {"label" : "lastOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.lastOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lastOption:Option[A]", "kind" : "def"}, {"label" : "last", "tail" : "(): Array[Long]", "member" : "scala.collection.TraversableLike.last", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#last:A", "kind" : "def"}, {"label" : "tail", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.tail", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#tail:Repr", "kind" : "def"}, {"label" : "headOption", "tail" : "(): Option[Array[Long]]", "member" : "scala.collection.TraversableLike.headOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#headOption:Option[A]", "kind" : "def"}, {"label" : "scanRight", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanRight", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#scanRight[B,That](z:B)(op:(A,B)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scanLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scanLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#scanLeft[B,That](z:B)(op:(B,A)=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "scan", "tail" : "(z: B)(op: (B, B) ⇒ B)(cbf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.scan", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#scan[B>:A,That](z:B)(op:(B,B)=>B)(implicitcbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "groupBy", "tail" : "(f: (Array[Long]) ⇒ K): Map[K, IndexedSeq[Array[Long]]]", "member" : "scala.collection.TraversableLike.groupBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#groupBy[K](f:A=>K):scala.collection.immutable.Map[K,Repr]", "kind" : "def"}, {"label" : "partition", "tail" : "(p: (Array[Long]) ⇒ Boolean): (IndexedSeq[Array[Long]], IndexedSeq[Array[Long]])", "member" : "scala.collection.TraversableLike.partition", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#partition(p:A=>Boolean):(Repr,Repr)", "kind" : "def"}, {"label" : "collect", "tail" : "(pf: PartialFunction[Array[Long], B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.collect", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#collect[B,That](pf:PartialFunction[A,B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "filterNot", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filterNot", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#filterNot(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "filter", "tail" : "(p: (Array[Long]) ⇒ Boolean): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.filter", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#filter(p:A=>Boolean):Repr", "kind" : "def"}, {"label" : "flatMap", "tail" : "(f: (Array[Long]) ⇒ GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.flatMap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#flatMap[B,That](f:A=>scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "map", "tail" : "(f: (Array[Long]) ⇒ B)(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.map", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#map[B,That](f:A=>B)(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: Traversable[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#++:[B>:A,That](that:Traversable[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++:", "tail" : "(that: TraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#++:[B>:A,That](that:scala.collection.TraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "++", "tail" : "(that: GenTraversableOnce[B])(bf: CanBuildFrom[IndexedSeq[Array[Long]], B, That]): That", "member" : "scala.collection.TraversableLike.++", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#++[B>:A,That](that:scala.collection.GenTraversableOnce[B])(implicitbf:scala.collection.generic.CanBuildFrom[Repr,B,That]):That", "kind" : "def"}, {"label" : "hasDefiniteSize", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.hasDefiniteSize", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#hasDefiniteSize:Boolean", "kind" : "def"}, {"label" : "isTraversableAgain", "tail" : "(): Boolean", "member" : "scala.collection.TraversableLike.isTraversableAgain", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isTraversableAgain:Boolean", "kind" : "final def"}, {"label" : "repr", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableLike.repr", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#repr:Repr", "kind" : "def"}, {"label" : "Self", "tail" : "", "member" : "scala.collection.TraversableLike.Self", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#Self=Repr", "kind" : "type"}, {"label" : "par", "tail" : "(): ParSeq[Array[Long]]", "member" : "scala.collection.Parallelizable.par", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#par:ParRepr", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#addString(b:StringBuilder):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, sep: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#addString(b:StringBuilder,sep:String):StringBuilder", "kind" : "def"}, {"label" : "addString", "tail" : "(b: StringBuilder, start: String, sep: String, end: String): StringBuilder", "member" : "scala.collection.TraversableOnce.addString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#addString(b:StringBuilder,start:String,sep:String,end:String):StringBuilder", "kind" : "def"}, {"label" : "mkString", "tail" : "(): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#mkString:String", "kind" : "def"}, {"label" : "mkString", "tail" : "(sep: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#mkString(sep:String):String", "kind" : "def"}, {"label" : "mkString", "tail" : "(start: String, sep: String, end: String): String", "member" : "scala.collection.TraversableOnce.mkString", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#mkString(start:String,sep:String,end:String):String", "kind" : "def"}, {"label" : "toMap", "tail" : "(ev: <:<[Array[Long], (T, U)]): Map[T, U]", "member" : "scala.collection.TraversableOnce.toMap", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toMap[T,U](implicitev:A<:<(T,U)):scala.collection.immutable.Map[T,U]", "kind" : "def"}, {"label" : "toVector", "tail" : "(): Vector[Array[Long]]", "member" : "scala.collection.TraversableOnce.toVector", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toVector:Vector[A]", "kind" : "def"}, {"label" : "toSet", "tail" : "(): Set[B]", "member" : "scala.collection.TraversableOnce.toSet", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toSet[B>:A]:scala.collection.immutable.Set[B]", "kind" : "def"}, {"label" : "toIndexedSeq", "tail" : "(): IndexedSeq[Array[Long]]", "member" : "scala.collection.TraversableOnce.toIndexedSeq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toIndexedSeq:scala.collection.immutable.IndexedSeq[A]", "kind" : "def"}, {"label" : "toList", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.toList", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toList:List[A]", "kind" : "def"}, {"label" : "toArray", "tail" : "(arg0: ClassTag[B]): Array[B]", "member" : "scala.collection.TraversableOnce.toArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#toArray[B>:A](implicitevidence$1:scala.reflect.ClassTag[B]):Array[B]", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToArray[B>:A](xs:Array[B]):Unit", "kind" : "def"}, {"label" : "copyToArray", "tail" : "(xs: Array[B], start: Int): Unit", "member" : "scala.collection.TraversableOnce.copyToArray", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToArray[B>:A](xs:Array[B],start:Int):Unit", "kind" : "def"}, {"label" : "copyToBuffer", "tail" : "(dest: Buffer[B]): Unit", "member" : "scala.collection.TraversableOnce.copyToBuffer", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#copyToBuffer[B>:A](dest:scala.collection.mutable.Buffer[B]):Unit", "kind" : "def"}, {"label" : "minBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.minBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#minBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "maxBy", "tail" : "(f: (Array[Long]) ⇒ B)(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.maxBy", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#maxBy[B](f:A=>B)(implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "max", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.max", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#max[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "min", "tail" : "(cmp: Ordering[B]): Array[Long]", "member" : "scala.collection.TraversableOnce.min", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#min[B>:A](implicitcmp:Ordering[B]):A", "kind" : "def"}, {"label" : "product", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.product", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#product[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "sum", "tail" : "(num: Numeric[B]): B", "member" : "scala.collection.TraversableOnce.sum", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#sum[B>:A](implicitnum:Numeric[B]):B", "kind" : "def"}, {"label" : "aggregate", "tail" : "(z: ⇒ B)(seqop: (B, Array[Long]) ⇒ B, combop: (B, B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.aggregate", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#aggregate[B](z:=>B)(seqop:(B,A)=>B,combop:(B,B)=>B):B", "kind" : "def"}, {"label" : "fold", "tail" : "(z: A1)(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.fold", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#fold[A1>:A](z:A1)(op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceOption", "tail" : "(op: (A1, A1) ⇒ A1): Option[A1]", "member" : "scala.collection.TraversableOnce.reduceOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceOption[A1>:A](op:(A1,A1)=>A1):Option[A1]", "kind" : "def"}, {"label" : "reduce", "tail" : "(op: (A1, A1) ⇒ A1): A1", "member" : "scala.collection.TraversableOnce.reduce", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduce[A1>:A](op:(A1,A1)=>A1):A1", "kind" : "def"}, {"label" : "reduceRightOption", "tail" : "(op: (Array[Long], B) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceRightOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceRightOption[B>:A](op:(A,B)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeftOption", "tail" : "(op: (B, Array[Long]) ⇒ B): Option[B]", "member" : "scala.collection.TraversableOnce.reduceLeftOption", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceLeftOption[B>:A](op:(B,A)=>B):Option[B]", "kind" : "def"}, {"label" : "reduceLeft", "tail" : "(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.reduceLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reduceLeft[B>:A](op:(B,A)=>B):B", "kind" : "def"}, {"label" : "foldLeft", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.foldLeft", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#foldLeft[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : ":\\", "tail" : "(z: B)(op: (Array[Long], B) ⇒ B): B", "member" : "scala.collection.TraversableOnce.:\\", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#:\\[B](z:B)(op:(A,B)=>B):B", "kind" : "def"}, {"label" : "\/:", "tail" : "(z: B)(op: (B, Array[Long]) ⇒ B): B", "member" : "scala.collection.TraversableOnce.\/:", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#\/:[B](z:B)(op:(B,A)=>B):B", "kind" : "def"}, {"label" : "collectFirst", "tail" : "(pf: PartialFunction[Array[Long], B]): Option[B]", "member" : "scala.collection.TraversableOnce.collectFirst", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#collectFirst[B](pf:PartialFunction[A,B]):Option[B]", "kind" : "def"}, {"label" : "count", "tail" : "(p: (Array[Long]) ⇒ Boolean): Int", "member" : "scala.collection.TraversableOnce.count", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#count(p:A=>Boolean):Int", "kind" : "def"}, {"label" : "nonEmpty", "tail" : "(): Boolean", "member" : "scala.collection.TraversableOnce.nonEmpty", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#nonEmpty:Boolean", "kind" : "def"}, {"label" : "reversed", "tail" : "(): List[Array[Long]]", "member" : "scala.collection.TraversableOnce.reversed", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#reversed:List[A]", "kind" : "def"}, {"label" : "runWith", "tail" : "(action: (Array[Long]) ⇒ U): (Int) ⇒ Boolean", "member" : "scala.PartialFunction.runWith", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#runWith[U](action:B=>U):A=>Boolean", "kind" : "def"}, {"label" : "applyOrElse", "tail" : "(x: A1, default: (A1) ⇒ B1): B1", "member" : "scala.PartialFunction.applyOrElse", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#applyOrElse[A1<:A,B1>:B](x:A1,default:A1=>B1):B1", "kind" : "def"}, {"label" : "lift", "tail" : "(): (Int) ⇒ Option[Array[Long]]", "member" : "scala.PartialFunction.lift", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#lift:A=>Option[B]", "kind" : "def"}, {"label" : "andThen", "tail" : "(k: (Array[Long]) ⇒ C): PartialFunction[Int, C]", "member" : "scala.PartialFunction.andThen", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#andThen[C](k:B=>C):PartialFunction[A,C]", "kind" : "def"}, {"label" : "orElse", "tail" : "(that: PartialFunction[A1, B1]): PartialFunction[A1, B1]", "member" : "scala.PartialFunction.orElse", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#orElse[A1<:A,B1>:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]", "kind" : "def"}, {"label" : "compose", "tail" : "(g: (A) ⇒ Int): (A) ⇒ Array[Long]", "member" : "scala.Function1.compose", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#compose[A](g:A=>T1):A=>R", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/KmerTableN.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/KmerTableN.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.NestedRowTagProvider", "shortDescription" : "Wrap a TagProvider into a RowTagProvider by fixing the row", "members_class" : [{"label" : "writeForCol", "tail" : "(col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.NestedRowTagProvider.writeForCol", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#writeForCol(col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.NestedRowTagProvider#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/NestedRowTagProvider.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.NTBitArray", "members_trait" : [{"label" : "copyPartAsLongArray", "tail" : "(writeTo: Array[Long], offset: Int, size: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.copyPartAsLongArray", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#copyPartAsLongArray(writeTo:Array[Long],offset:Int,size:Int):Unit", "kind" : "def"}, {"label" : "partAsLongArray", "tail" : "(offset: Int, size: Int): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.partAsLongArray", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#partAsLongArray(offset:Int,size:Int):Array[Long]", "kind" : "final def"}, {"label" : "writeKmersToBuilder", "tail" : "(destination: KmerTableBuilder, k: Int, forwardOnly: Boolean, provider: RowTagProvider): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.writeKmersToBuilder", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#writeKmersToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,k:Int,forwardOnly:Boolean,provider:com.jnpersson.discount.util.RowTagProvider):Unit", "kind" : "def"}, {"label" : "kmersAsLongArrays", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.NTBitArray.kmersAsLongArrays", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#kmersAsLongArrays(k:Int,onlyForwardOrientation:Boolean):Iterator[Array[Long]]", "kind" : "def"}, {"label" : "kmers", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[NTBitArray]", "member" : "com.jnpersson.discount.util.NTBitArray.kmers", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#kmers(k:Int,onlyForwardOrientation:Boolean):Iterator[com.jnpersson.discount.util.NTBitArray]", "kind" : "def"}, {"label" : "apply", "tail" : "(pos: Int): Byte", "member" : "com.jnpersson.discount.util.NTBitArray.apply", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#apply(pos:Int):Byte", "kind" : "def"}, {"label" : "sliceIsForwardOrientation", "tail" : "(pos: Int, size: Int): Boolean", "member" : "com.jnpersson.discount.util.NTBitArray.sliceIsForwardOrientation", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#sliceIsForwardOrientation(pos:Int,size:Int):Boolean", "kind" : "def"}, {"label" : "sliceAsCopy", "tail" : "(offset: Int, length: Int): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.sliceAsCopy", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#sliceAsCopy(offset:Int,length:Int):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, length: Int): NTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.slice", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#slice(from:Int,length:Int):com.jnpersson.discount.util.NTBitArray", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.NTBitArray.toString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#toString():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "size", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.NTBitArray.size", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#size:Int", "kind" : "abstract def"}, {"label" : "offset", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.NTBitArray.offset", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#offset:Int", "kind" : "abstract def"}, {"label" : "data", "tail" : "(): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.data", "link" : "com\/jnpersson\/discount\/util\/NTBitArray.html#data:Array[Long]", "kind" : "abstract def"}], "shortDescription" : "", "object" : "com\/jnpersson\/discount\/util\/NTBitArray$.html", "members_object" : [{"label" : "longsToString", "tail" : "(buffer: ByteBuffer, builder: StringBuilder, data: Array[Long], offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.NTBitArray.longsToString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#longsToString(buffer:java.nio.ByteBuffer,builder:StringBuilder,data:Array[Long],offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "longsToString", "tail" : "(data: Array[Long], offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.NTBitArray.longsToString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#longsToString(data:Array[Long],offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"label" : "fixedSizeDecoder", "tail" : "(size: Int): NTBitDecoder", "member" : "com.jnpersson.discount.util.NTBitArray.fixedSizeDecoder", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#fixedSizeDecoder(size:Int):com.jnpersson.discount.util.NTBitDecoder", "kind" : "def"}, {"label" : "shiftLongKmerAndWrite", "tail" : "(data: Array[Long], addRight: Byte, k: Int, destination: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.shiftLongKmerAndWrite", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#shiftLongKmerAndWrite(data:Array[Long],addRight:Byte,k:Int,destination:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "def"}, {"label" : "shiftLongArrayKmerLeft", "tail" : "(data: Array[Long], addRight: Byte, k: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.shiftLongArrayKmerLeft", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#shiftLongArrayKmerLeft(data:Array[Long],addRight:Byte,k:Int):Unit", "kind" : "def"}, {"label" : "encode", "tail" : "(data: NTSeq): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.encode", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#encode(data:com.jnpersson.discount.NTSeq):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitArray$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "trait" : "com\/jnpersson\/discount\/util\/NTBitArray.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.util.NTBitDecoder", "shortDescription" : "Methods for decoding NT sequences of a fixed length, with reusable buffers.", "members_class" : [{"label" : "longsToString", "tail" : "(data: Array[Long], offset: Int, size: Int): NTSeq", "member" : "com.jnpersson.discount.util.NTBitDecoder.longsToString", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#longsToString(data:Array[Long],offset:Int,size:Int):com.jnpersson.discount.NTSeq", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.NTBitDecoder#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/util\/NTBitDecoder.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.util.OffsetNTBitArray", "shortDescription" : "An NTBitArray that begins at some offset in its binary data", "members_case class" : [{"member" : "com.jnpersson.discount.util.OffsetNTBitArray#", "error" : "unsupported entity"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.OffsetNTBitArray.size", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#size:Int", "kind" : "val"}, {"label" : "offset", "tail" : ": Int", "member" : "com.jnpersson.discount.util.OffsetNTBitArray.offset", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#offset:Int", "kind" : "val"}, {"label" : "data", "tail" : ": Array[Long]", "member" : "com.jnpersson.discount.util.OffsetNTBitArray.data", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#data:Array[Long]", "kind" : "val"}, {"label" : "copyPartAsLongArray", "tail" : "(writeTo: Array[Long], offset: Int, size: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.copyPartAsLongArray", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#copyPartAsLongArray(writeTo:Array[Long],offset:Int,size:Int):Unit", "kind" : "def"}, {"label" : "partAsLongArray", "tail" : "(offset: Int, size: Int): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.partAsLongArray", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#partAsLongArray(offset:Int,size:Int):Array[Long]", "kind" : "final def"}, {"label" : "writeKmersToBuilder", "tail" : "(destination: KmerTableBuilder, k: Int, forwardOnly: Boolean, provider: RowTagProvider): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.writeKmersToBuilder", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#writeKmersToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,k:Int,forwardOnly:Boolean,provider:com.jnpersson.discount.util.RowTagProvider):Unit", "kind" : "def"}, {"label" : "kmersAsLongArrays", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.NTBitArray.kmersAsLongArrays", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#kmersAsLongArrays(k:Int,onlyForwardOrientation:Boolean):Iterator[Array[Long]]", "kind" : "def"}, {"label" : "kmers", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[NTBitArray]", "member" : "com.jnpersson.discount.util.NTBitArray.kmers", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#kmers(k:Int,onlyForwardOrientation:Boolean):Iterator[com.jnpersson.discount.util.NTBitArray]", "kind" : "def"}, {"label" : "apply", "tail" : "(pos: Int): Byte", "member" : "com.jnpersson.discount.util.NTBitArray.apply", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#apply(pos:Int):Byte", "kind" : "def"}, {"label" : "sliceIsForwardOrientation", "tail" : "(pos: Int, size: Int): Boolean", "member" : "com.jnpersson.discount.util.NTBitArray.sliceIsForwardOrientation", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#sliceIsForwardOrientation(pos:Int,size:Int):Boolean", "kind" : "def"}, {"label" : "sliceAsCopy", "tail" : "(offset: Int, length: Int): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.sliceAsCopy", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#sliceAsCopy(offset:Int,length:Int):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, length: Int): NTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.slice", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#slice(from:Int,length:Int):com.jnpersson.discount.util.NTBitArray", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.NTBitArray.toString", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#toString():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/util\/OffsetNTBitArray.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.util.RowTagProvider", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "writeForCol", "tail" : "(col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.RowTagProvider.writeForCol", "link" : "com\/jnpersson\/discount\/util\/RowTagProvider.html#writeForCol(col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "abstract def"}], "shortDescription" : "Source of tags for a single row (super-mer) of k-mers", "trait" : "com\/jnpersson\/discount\/util\/RowTagProvider.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.util.TagProvider", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "writeForRowCol", "tail" : "(row: Int, col: Int, to: KmerTableBuilder): Unit", "member" : "com.jnpersson.discount.util.TagProvider.writeForRowCol", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#writeForRowCol(row:Int,col:Int,to:com.jnpersson.discount.util.KmerTableBuilder):Unit", "kind" : "abstract def"}, {"label" : "tagWidth", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.TagProvider.tagWidth", "link" : "com\/jnpersson\/discount\/util\/TagProvider.html#tagWidth:Int", "kind" : "abstract def"}], "shortDescription" : "Source of tags for a set of k-mers arranged in two dimensions,where the row identifies a super-mer and the col identifies a k-mer position in the super-mer", "trait" : "com\/jnpersson\/discount\/util\/TagProvider.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.util.ZeroNTBitArray", "shortDescription" : "An NTBitArray that begins at offset zero in its binary data", "members_case class" : [{"label" : "offset", "tail" : "(): Int", "member" : "com.jnpersson.discount.util.ZeroNTBitArray.offset", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#offset:Int", "kind" : "def"}, {"member" : "com.jnpersson.discount.util.ZeroNTBitArray#", "error" : "unsupported entity"}, {"label" : "size", "tail" : ": Int", "member" : "com.jnpersson.discount.util.ZeroNTBitArray.size", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#size:Int", "kind" : "val"}, {"label" : "data", "tail" : ": Array[Long]", "member" : "com.jnpersson.discount.util.ZeroNTBitArray.data", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#data:Array[Long]", "kind" : "val"}, {"label" : "copyPartAsLongArray", "tail" : "(writeTo: Array[Long], offset: Int, size: Int): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.copyPartAsLongArray", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#copyPartAsLongArray(writeTo:Array[Long],offset:Int,size:Int):Unit", "kind" : "def"}, {"label" : "partAsLongArray", "tail" : "(offset: Int, size: Int): Array[Long]", "member" : "com.jnpersson.discount.util.NTBitArray.partAsLongArray", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#partAsLongArray(offset:Int,size:Int):Array[Long]", "kind" : "final def"}, {"label" : "writeKmersToBuilder", "tail" : "(destination: KmerTableBuilder, k: Int, forwardOnly: Boolean, provider: RowTagProvider): Unit", "member" : "com.jnpersson.discount.util.NTBitArray.writeKmersToBuilder", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#writeKmersToBuilder(destination:com.jnpersson.discount.util.KmerTableBuilder,k:Int,forwardOnly:Boolean,provider:com.jnpersson.discount.util.RowTagProvider):Unit", "kind" : "def"}, {"label" : "kmersAsLongArrays", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[Array[Long]]", "member" : "com.jnpersson.discount.util.NTBitArray.kmersAsLongArrays", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#kmersAsLongArrays(k:Int,onlyForwardOrientation:Boolean):Iterator[Array[Long]]", "kind" : "def"}, {"label" : "kmers", "tail" : "(k: Int, onlyForwardOrientation: Boolean): Iterator[NTBitArray]", "member" : "com.jnpersson.discount.util.NTBitArray.kmers", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#kmers(k:Int,onlyForwardOrientation:Boolean):Iterator[com.jnpersson.discount.util.NTBitArray]", "kind" : "def"}, {"label" : "apply", "tail" : "(pos: Int): Byte", "member" : "com.jnpersson.discount.util.NTBitArray.apply", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#apply(pos:Int):Byte", "kind" : "def"}, {"label" : "sliceIsForwardOrientation", "tail" : "(pos: Int, size: Int): Boolean", "member" : "com.jnpersson.discount.util.NTBitArray.sliceIsForwardOrientation", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#sliceIsForwardOrientation(pos:Int,size:Int):Boolean", "kind" : "def"}, {"label" : "sliceAsCopy", "tail" : "(offset: Int, length: Int): ZeroNTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.sliceAsCopy", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#sliceAsCopy(offset:Int,length:Int):com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "def"}, {"label" : "slice", "tail" : "(from: Int, length: Int): NTBitArray", "member" : "com.jnpersson.discount.util.NTBitArray.slice", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#slice(from:Int,length:Int):com.jnpersson.discount.util.NTBitArray", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.util.NTBitArray.toString", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#toString():String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/util\/ZeroNTBitArray.html", "kind" : "case class"}], "com.jnpersson.discount.spark" : [{"name" : "com.jnpersson.discount.spark.All", "shortDescription" : "Use all m-mers as minimizers.", "object" : "com\/jnpersson\/discount\/spark\/package$$All$.html", "members_object" : [{"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.All.load", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$All$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Auto", "shortDescription" : "Indicate that a strategy should be auto-selected", "object" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html", "members_object" : [{"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.Auto.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.CountMethod.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Auto$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Bundled", "shortDescription" : "Bundled minimizers on the classpath (only available for some values of k and m).", "object" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html", "members_object" : [{"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.Bundled.load", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Bundled$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.CountedKmers", "shortDescription" : "A collection of counted k-mers represented in encoded form.", "members_class" : [{"label" : "writeTSV", "tail" : "(withKmers: Boolean, output: String): Unit", "member" : "com.jnpersson.discount.spark.CountedKmers.writeTSV", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#writeTSV(withKmers:Boolean,output:String):Unit", "kind" : "def"}, {"label" : "writeFasta", "tail" : "(output: String): Unit", "member" : "com.jnpersson.discount.spark.CountedKmers.writeFasta", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#writeFasta(output:String):Unit", "kind" : "def"}, {"label" : "withSequences", "tail" : "(): Dataset[(NTSeq, Abundance)]", "member" : "com.jnpersson.discount.spark.CountedKmers.withSequences", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#withSequences:org.apache.spark.sql.Dataset[(com.jnpersson.discount.NTSeq,com.jnpersson.discount.Abundance)]", "kind" : "def"}, {"label" : "unpersist", "tail" : "(): CountedKmers.this.type", "member" : "com.jnpersson.discount.spark.CountedKmers.unpersist", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#unpersist():CountedKmers.this.type", "kind" : "def"}, {"label" : "cache", "tail" : "(): CountedKmers.this.type", "member" : "com.jnpersson.discount.spark.CountedKmers.cache", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#cache():CountedKmers.this.type", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.CountedKmers#", "error" : "unsupported entity"}, {"label" : "counts", "tail" : ": Dataset[(Array[Long], Abundance)]", "member" : "com.jnpersson.discount.spark.CountedKmers.counts", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#counts:org.apache.spark.sql.Dataset[(Array[Long],com.jnpersson.discount.Abundance)]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/CountedKmers.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/CountedKmers.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.CountMethod", "members_trait" : [{"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.CountMethod.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.CountMethod.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "shortDescription" : "Defines a strategy for counting k-mers in Spark.", "trait" : "com\/jnpersson\/discount\/spark\/package$$CountMethod.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.spark.Discount", "shortDescription" : "Main API entry point for Discount.", "object" : "com\/jnpersson\/discount\/spark\/Discount$.html", "members_object" : [{"label" : "main", "tail" : "(args: Array[String]): Unit", "member" : "com.jnpersson.discount.spark.Discount.main", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#main(args:Array[String]):Unit", "kind" : "def"}, {"label" : "sparkSession", "tail" : "(baseConf: SparkToolConf): SparkSession", "member" : "com.jnpersson.discount.spark.SparkTool.sparkSession", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#sparkSession(baseConf:com.jnpersson.discount.spark.SparkToolConf):org.apache.spark.sql.SparkSession", "kind" : "def"}, {"label" : "sparkSession", "tail" : "(): SparkSession", "member" : "com.jnpersson.discount.spark.SparkTool.sparkSession", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#sparkSession():org.apache.spark.sql.SparkSession", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "emptyIndex", "tail" : "(inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Discount.emptyIndex", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#emptyIndex(inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "index", "tail" : "(compatible: Index, inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Discount.index", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#index(compatible:com.jnpersson.discount.spark.Index,inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "index", "tail" : "(inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Discount.index", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#index(inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "kmers", "tail" : "(knownSplitter: Broadcast[AnyMinSplitter], inFiles: String*): Kmers", "member" : "com.jnpersson.discount.spark.Discount.kmers", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#kmers(knownSplitter:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter],inFiles:String*):com.jnpersson.discount.spark.Kmers", "kind" : "def"}, {"label" : "kmers", "tail" : "(inFiles: String*): Kmers", "member" : "com.jnpersson.discount.spark.Discount.kmers", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#kmers(inFiles:String*):com.jnpersson.discount.spark.Kmers", "kind" : "def"}, {"label" : "getSplitter", "tail" : "(inFiles: Option[Seq[String]], persistHash: Option[String]): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.Discount.getSplitter", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getSplitter(inFiles:Option[Seq[String]],persistHash:Option[String]):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "sequenceTitles", "tail" : "(input: String*): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.Discount.sequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#sequenceTitles(input:String*):org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getInputFragments", "tail" : "(file: String, addRCReads: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Discount.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputFragments(file:String,addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "getInputFragments", "tail" : "(files: Seq[String], addRCReads: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Discount.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputFragments(files:Seq[String],addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "getInputSequences", "tail" : "(file: String, addRCReads: Boolean): Dataset[NTSeq]", "member" : "com.jnpersson.discount.spark.Discount.getInputSequences", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputSequences(file:String,addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "getInputSequences", "tail" : "(files: Seq[String], addRCReads: Boolean): Dataset[NTSeq]", "member" : "com.jnpersson.discount.spark.Discount.getInputSequences", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getInputSequences(files:Seq[String],addRCReads:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"label" : "inputReader", "tail" : "(files: String*): Inputs", "member" : "com.jnpersson.discount.spark.Discount.inputReader", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#inputReader(files:String*):com.jnpersson.discount.spark.Inputs", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Discount#", "error" : "unsupported entity"}, {"label" : "partitions", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.partitions", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#partitions:Int", "kind" : "val"}, {"label" : "method", "tail" : ": CountMethod", "member" : "com.jnpersson.discount.spark.Discount.method", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#method:com.jnpersson.discount.spark.CountMethod", "kind" : "val"}, {"label" : "normalize", "tail" : ": Boolean", "member" : "com.jnpersson.discount.spark.Discount.normalize", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#normalize:Boolean", "kind" : "val"}, {"label" : "maxSequenceLength", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.maxSequenceLength", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#maxSequenceLength:Int", "kind" : "val"}, {"label" : "sample", "tail" : ": Double", "member" : "com.jnpersson.discount.spark.Discount.sample", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#sample:Double", "kind" : "val"}, {"label" : "ordering", "tail" : ": MinimizerOrdering", "member" : "com.jnpersson.discount.spark.Discount.ordering", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#ordering:com.jnpersson.discount.MinimizerOrdering", "kind" : "val"}, {"label" : "m", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.m", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#m:Int", "kind" : "val"}, {"label" : "minimizers", "tail" : ": MinimizerSource", "member" : "com.jnpersson.discount.spark.Discount.minimizers", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#minimizers:com.jnpersson.discount.spark.MinimizerSource", "kind" : "val"}, {"label" : "k", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.Discount.k", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#k:Int", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Discount.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Discount.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/Discount.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.spark.FastaOutputFormat", "shortDescription" : "", "members_class" : [{"label" : "getRecordWriter", "tail" : "(job: TaskAttemptContext): RecordWriter[K, V]", "member" : "com.jnpersson.discount.spark.FastaOutputFormat.getRecordWriter", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getRecordWriter(job:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.RecordWriter[K,V]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.FastaOutputFormat#", "error" : "unsupported entity"}, {"label" : "getOutputCommitter", "tail" : "(arg0: TaskAttemptContext): OutputCommitter", "member" : "org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.getOutputCommitter", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getOutputCommitter(x$1:org.apache.hadoop.mapreduce.TaskAttemptContext):org.apache.hadoop.mapreduce.OutputCommitter", "kind" : "def"}, {"label" : "getDefaultWorkFile", "tail" : "(arg0: TaskAttemptContext, arg1: String): org.apache.hadoop.fs.Path", "member" : "org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.getDefaultWorkFile", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getDefaultWorkFile(x$1:org.apache.hadoop.mapreduce.TaskAttemptContext,x$2:String):org.apache.hadoop.fs.Path", "kind" : "def"}, {"label" : "checkOutputSpecs", "tail" : "(arg0: JobContext): Unit", "member" : "org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.checkOutputSpecs", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#checkOutputSpecs(x$1:org.apache.hadoop.mapreduce.JobContext):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/FastaOutputFormat.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.FastaShortInput", "shortDescription" : "Input reader for FASTA sequences of a fixed maximum length.", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.FastaShortInput.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.FastaShortInput.getFragments", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.FastaShortInput#", "error" : "unsupported entity"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/FastaShortInput.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.FastqShortInput", "shortDescription" : "Input reader for FASTQ short reads.", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.FastqShortInput.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.FastqShortInput.getFragments", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.FastqShortInput#", "error" : "unsupported entity"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/FastqShortInput.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.GroupedSegments", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html", "members_class" : [{"label" : "toIndex", "tail" : "(filterOrientation: Boolean, numBuckets: Int): Index", "member" : "com.jnpersson.discount.spark.GroupedSegments.toIndex", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#toIndex(filterOrientation:Boolean,numBuckets:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "toReducibleBuckets", "tail" : "(filterOrientation: Boolean): Dataset[ReducibleBucket]", "member" : "com.jnpersson.discount.spark.GroupedSegments.toReducibleBuckets", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#toReducibleBuckets(filterOrientation:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket]", "kind" : "def"}, {"label" : "writeSupermerStrings", "tail" : "(outputLocation: String): Unit", "member" : "com.jnpersson.discount.spark.GroupedSegments.writeSupermerStrings", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#writeSupermerStrings(outputLocation:String):Unit", "kind" : "def"}, {"label" : "superkmerStrings", "tail" : "(): DataFrame", "member" : "com.jnpersson.discount.spark.GroupedSegments.superkmerStrings", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#superkmerStrings:org.apache.spark.sql.DataFrame", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.GroupedSegments#", "error" : "unsupported entity"}, {"label" : "splitter", "tail" : ": Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.GroupedSegments.splitter", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#splitter:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "val"}, {"label" : "segments", "tail" : ": Dataset[(BucketId, Array[ZeroNTBitArray], Array[Abundance])]", "member" : "com.jnpersson.discount.spark.GroupedSegments.segments", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#segments:org.apache.spark.sql.Dataset[(com.jnpersson.discount.hash.BucketId,Array[com.jnpersson.discount.util.ZeroNTBitArray],Array[com.jnpersson.discount.Abundance])]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_object" : [{"label" : "segmentsByHash", "tail" : "(segments: DataFrame)(spark: SparkSession): DataFrame", "member" : "com.jnpersson.discount.spark.GroupedSegments.segmentsByHash", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#segmentsByHash(segments:org.apache.spark.sql.DataFrame)(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.DataFrame", "kind" : "def"}, {"label" : "segmentsByHashPregroup", "tail" : "(segments: DataFrame, addRC: Boolean, spl: Broadcast[S])(spark: SparkSession): DataFrame", "member" : "com.jnpersson.discount.spark.GroupedSegments.segmentsByHashPregroup", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#segmentsByHashPregroup[S<:com.jnpersson.discount.hash.MinSplitter[com.jnpersson.discount.hash.MinimizerPriorities]](segments:org.apache.spark.sql.DataFrame,addRC:Boolean,spl:org.apache.spark.broadcast.Broadcast[S])(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.DataFrame", "kind" : "def"}, {"label" : "fromReads", "tail" : "(input: Dataset[NTSeq], method: CountMethod, normalize: Boolean, spl: Broadcast[AnyMinSplitter])(spark: SparkSession): GroupedSegments", "member" : "com.jnpersson.discount.spark.GroupedSegments.fromReads", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#fromReads(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],method:com.jnpersson.discount.spark.CountMethod,normalize:Boolean,spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.GroupedSegments", "kind" : "def"}, {"label" : "hashSegments", "tail" : "(input: NTSeq, splitter: AnyMinSplitter): Iterator[HashSegment]", "member" : "com.jnpersson.discount.spark.GroupedSegments.hashSegments", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#hashSegments(input:com.jnpersson.discount.NTSeq,splitter:com.jnpersson.discount.spark.AnyMinSplitter):Iterator[com.jnpersson.discount.spark.HashSegment]", "kind" : "def"}, {"label" : "hashSegments", "tail" : "(input: Dataset[NTSeq], spl: Broadcast[AnyMinSplitter])(spark: SparkSession): Dataset[HashSegment]", "member" : "com.jnpersson.discount.spark.GroupedSegments.hashSegments", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#hashSegments(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter])(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.Dataset[com.jnpersson.discount.spark.HashSegment]", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/GroupedSegments$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/GroupedSegments.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.HashSegment", "shortDescription" : "A single hashed sequence segment (super-mer) with its minimizer.", "members_case class" : [{"member" : "com.jnpersson.discount.spark.HashSegment#", "error" : "unsupported entity"}, {"label" : "segment", "tail" : ": ZeroNTBitArray", "member" : "com.jnpersson.discount.spark.HashSegment.segment", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#segment:com.jnpersson.discount.util.ZeroNTBitArray", "kind" : "val"}, {"label" : "hash", "tail" : ": BucketId", "member" : "com.jnpersson.discount.spark.HashSegment.hash", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#hash:com.jnpersson.discount.hash.BucketId", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HashSegment.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/HashSegment.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.spark.HDFSUtil", "shortDescription" : "HDFS helper routines", "object" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html", "members_object" : [{"label" : "deleteRecursive", "tail" : "(location: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.HDFSUtil.deleteRecursive", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#deleteRecursive(location:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "readProperties", "tail" : "(location: String)(spark: SparkSession): Properties", "member" : "com.jnpersson.discount.spark.HDFSUtil.readProperties", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#readProperties(location:String)(implicitspark:org.apache.spark.sql.SparkSession):java.util.Properties", "kind" : "def"}, {"label" : "writeProperties", "tail" : "(location: String, data: Properties, comment: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.HDFSUtil.writeProperties", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#writeProperties(location:String,data:java.util.Properties,comment:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "writeTextFile", "tail" : "(location: String, data: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.HDFSUtil.writeTextFile", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#writeTextFile(location:String,data:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "getInputStream", "tail" : "(location: String)(spark: SparkSession): FSDataInputStream", "member" : "com.jnpersson.discount.spark.HDFSUtil.getInputStream", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#getInputStream(location:String)(implicitspark:org.apache.spark.sql.SparkSession):org.apache.hadoop.fs.FSDataInputStream", "kind" : "def"}, {"label" : "getPrintWriter", "tail" : "(location: String)(spark: SparkSession): PrintWriter", "member" : "com.jnpersson.discount.spark.HDFSUtil.getPrintWriter", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#getPrintWriter(location:String)(implicitspark:org.apache.spark.sql.SparkSession):java.io.PrintWriter", "kind" : "def"}, {"label" : "fileExists", "tail" : "(path: String)(spark: SparkSession): Boolean", "member" : "com.jnpersson.discount.spark.HDFSUtil.fileExists", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#fileExists(path:String)(implicitspark:org.apache.spark.sql.SparkSession):Boolean", "kind" : "def"}, {"label" : "makeQualified", "tail" : "(path: String)(spark: SparkSession): String", "member" : "com.jnpersson.discount.spark.HDFSUtil.makeQualified", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#makeQualified(path:String)(implicitspark:org.apache.spark.sql.SparkSession):String", "kind" : "def"}, {"label" : "isAbsolutePath", "tail" : "(path: String): Boolean", "member" : "com.jnpersson.discount.spark.HDFSUtil.isAbsolutePath", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#isAbsolutePath(path:String):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/HDFSUtil$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Helpers", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html", "members_object" : [{"label" : "encoder", "tail" : "(spl: S): Encoder[S]", "member" : "com.jnpersson.discount.spark.Helpers.encoder", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#encoder[S<:com.jnpersson.discount.hash.MinSplitter[_]](spl:S):org.apache.spark.sql.Encoder[S]", "kind" : "def"}, {"label" : "registerEncoder", "tail" : "(cls: Class[_], enc: Encoder[_]): Unit", "member" : "com.jnpersson.discount.spark.Helpers.registerEncoder", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#registerEncoder(cls:Class[_],enc:org.apache.spark.sql.Encoder[_]):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Helpers$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Index", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/Index$.html", "members_class" : [{"label" : "subtractKmers", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.subtractKmers", "link" : "com\/jnpersson\/discount\/spark\/Index.html#subtractKmers(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "subtractCounts", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.subtractCounts", "link" : "com\/jnpersson\/discount\/spark\/Index.html#subtractCounts(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "add", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.add", "link" : "com\/jnpersson\/discount\/spark\/Index.html#add(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "unionRight", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.unionRight", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unionRight(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "unionLeft", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.unionLeft", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unionLeft(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "unionMin", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.unionMin", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unionMin(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "unionMax", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.unionMax", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unionMax(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersectRight", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.intersectRight", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersectRight(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersectLeft", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.intersectLeft", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersectLeft(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "lookup", "tail" : "(query: Index): Index", "member" : "com.jnpersson.discount.spark.Index.lookup", "link" : "com\/jnpersson\/discount\/spark\/Index.html#lookup(query:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersectMax", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.intersectMax", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersectMax(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersectMin", "tail" : "(other: Index): Index", "member" : "com.jnpersson.discount.spark.Index.intersectMin", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersectMin(other:com.jnpersson.discount.spark.Index):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterMax", "tail" : "(max: Int): Index", "member" : "com.jnpersson.discount.spark.Index.filterMax", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterMax(max:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterMin", "tail" : "(min: Int): Index", "member" : "com.jnpersson.discount.spark.Index.filterMin", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterMin(min:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "repartition", "tail" : "(partitions: Int): Index", "member" : "com.jnpersson.discount.spark.Index.repartition", "link" : "com\/jnpersson\/discount\/spark\/Index.html#repartition(partitions:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "newCompatible", "tail" : "(discount: Discount, inFiles: String*): Index", "member" : "com.jnpersson.discount.spark.Index.newCompatible", "link" : "com\/jnpersson\/discount\/spark\/Index.html#newCompatible(discount:com.jnpersson.discount.spark.Discount,inFiles:String*):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "changeMinimizerOrdering", "tail" : "(spl: Broadcast[AnyMinSplitter]): Index", "member" : "com.jnpersson.discount.spark.Index.changeMinimizerOrdering", "link" : "com\/jnpersson\/discount\/spark\/Index.html#changeMinimizerOrdering(spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "sample", "tail" : "(fraction: Double): Index", "member" : "com.jnpersson.discount.spark.Index.sample", "link" : "com\/jnpersson\/discount\/spark\/Index.html#sample(fraction:Double):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterCounts", "tail" : "(min: Option[Int], max: Option[Int]): Index", "member" : "com.jnpersson.discount.spark.Index.filterCounts", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterCounts(min:Option[Int],max:Option[Int]):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "filterCounts", "tail" : "(min: Int, max: Int): Index", "member" : "com.jnpersson.discount.spark.Index.filterCounts", "link" : "com\/jnpersson\/discount\/spark\/Index.html#filterCounts(min:Int,max:Int):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "mapTags", "tail" : "(f: (Tag) ⇒ Tag): Index", "member" : "com.jnpersson.discount.spark.Index.mapTags", "link" : "com\/jnpersson\/discount\/spark\/Index.html#mapTags(f:com.jnpersson.discount.bucket.Tag=>com.jnpersson.discount.bucket.Tag):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "subtractMany", "tail" : "(ixs: Iterable[Index], rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.subtractMany", "link" : "com\/jnpersson\/discount\/spark\/Index.html#subtractMany(ixs:Iterable[com.jnpersson.discount.spark.Index],rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersectMany", "tail" : "(ixs: Iterable[Index], rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.intersectMany", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersectMany(ixs:Iterable[com.jnpersson.discount.spark.Index],rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "unionMany", "tail" : "(ixs: Iterable[Index], rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.unionMany", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unionMany(ixs:Iterable[com.jnpersson.discount.spark.Index],rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "subtract", "tail" : "(other: Index, rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.subtract", "link" : "com\/jnpersson\/discount\/spark\/Index.html#subtract(other:com.jnpersson.discount.spark.Index,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "lookup", "tail" : "(sequences: Seq[String]): Index", "member" : "com.jnpersson.discount.spark.Index.lookup", "link" : "com\/jnpersson\/discount\/spark\/Index.html#lookup(sequences:Seq[String]):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "intersect", "tail" : "(other: Index, rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.intersect", "link" : "com\/jnpersson\/discount\/spark\/Index.html#intersect(other:com.jnpersson.discount.spark.Index,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "union", "tail" : "(other: Index, rule: Rule): Index", "member" : "com.jnpersson.discount.spark.Index.union", "link" : "com\/jnpersson\/discount\/spark\/Index.html#union(other:com.jnpersson.discount.spark.Index,rule:com.jnpersson.discount.spark.Rule):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "write", "tail" : "(location: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.Index.write", "link" : "com\/jnpersson\/discount\/spark\/Index.html#write(location:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "showStats", "tail" : "(outputLocation: Option[String]): Unit", "member" : "com.jnpersson.discount.spark.Index.showStats", "link" : "com\/jnpersson\/discount\/spark\/Index.html#showStats(outputLocation:Option[String]):Unit", "kind" : "def"}, {"label" : "writeBucketStats", "tail" : "(location: String): Unit", "member" : "com.jnpersson.discount.spark.Index.writeBucketStats", "link" : "com\/jnpersson\/discount\/spark\/Index.html#writeBucketStats(location:String):Unit", "kind" : "def"}, {"label" : "writeHistogram", "tail" : "(output: String): Unit", "member" : "com.jnpersson.discount.spark.Index.writeHistogram", "link" : "com\/jnpersson\/discount\/spark\/Index.html#writeHistogram(output:String):Unit", "kind" : "def"}, {"label" : "histogram", "tail" : "(): Dataset[(Tag, Long)]", "member" : "com.jnpersson.discount.spark.Index.histogram", "link" : "com\/jnpersson\/discount\/spark\/Index.html#histogram:org.apache.spark.sql.Dataset[(com.jnpersson.discount.bucket.Tag,Long)]", "kind" : "def"}, {"label" : "stats", "tail" : "(min: Option[Int], max: Option[Int]): Dataset[BucketStats]", "member" : "com.jnpersson.discount.spark.Index.stats", "link" : "com\/jnpersson\/discount\/spark\/Index.html#stats(min:Option[Int],max:Option[Int]):org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.BucketStats]", "kind" : "def"}, {"label" : "counted", "tail" : "(normalize: Boolean): CountedKmers", "member" : "com.jnpersson.discount.spark.Index.counted", "link" : "com\/jnpersson\/discount\/spark\/Index.html#counted(normalize:Boolean):com.jnpersson.discount.spark.CountedKmers", "kind" : "def"}, {"label" : "unpersist", "tail" : "(): Unit", "member" : "com.jnpersson.discount.spark.Index.unpersist", "link" : "com\/jnpersson\/discount\/spark\/Index.html#unpersist():Unit", "kind" : "def"}, {"label" : "cache", "tail" : "(): Index.this.type", "member" : "com.jnpersson.discount.spark.Index.cache", "link" : "com\/jnpersson\/discount\/spark\/Index.html#cache():Index.this.type", "kind" : "def"}, {"label" : "bcSplit", "tail" : "(): Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.Index.bcSplit", "link" : "com\/jnpersson\/discount\/spark\/Index.html#bcSplit:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Index#", "error" : "unsupported entity"}, {"label" : "buckets", "tail" : ": Dataset[ReducibleBucket]", "member" : "com.jnpersson.discount.spark.Index.buckets", "link" : "com\/jnpersson\/discount\/spark\/Index.html#buckets:org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket]", "kind" : "val"}, {"label" : "params", "tail" : ": IndexParams", "member" : "com.jnpersson.discount.spark.Index.params", "link" : "com\/jnpersson\/discount\/spark\/Index.html#params:com.jnpersson.discount.spark.IndexParams", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Index.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Index.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Index.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Index.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Index.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Index.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Index.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Index.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Index.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Index.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Index.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Index.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Index.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Index.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_object" : [{"label" : "reSplitBuckets", "tail" : "(input: Dataset[ReducibleBucket], reducer: Reducer, spl: Broadcast[AnyMinSplitter])(spark: SparkSession): Dataset[ReducibleBucket]", "member" : "com.jnpersson.discount.spark.Index.reSplitBuckets", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#reSplitBuckets(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket],reducer:com.jnpersson.discount.bucket.Reducer,spl:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter])(implicitspark:org.apache.spark.sql.SparkSession):org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.ReducibleBucket]", "kind" : "def"}, {"label" : "fromNTSeq", "tail" : "(compatible: Index, read: NTSeq)(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.fromNTSeq", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#fromNTSeq(compatible:com.jnpersson.discount.spark.Index,read:com.jnpersson.discount.NTSeq)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "fromNTSeqs", "tail" : "(compatible: Index, reads: Seq[NTSeq])(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.fromNTSeqs", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#fromNTSeqs(compatible:com.jnpersson.discount.spark.Index,reads:Seq[com.jnpersson.discount.NTSeq])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "fromNTSeqs", "tail" : "(compatible: Index, reads: Dataset[NTSeq])(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.fromNTSeqs", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#fromNTSeqs(compatible:com.jnpersson.discount.spark.Index,reads:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "random", "tail" : ": SplittableRandom", "member" : "com.jnpersson.discount.spark.Index.random", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#random:java.util.SplittableRandom", "kind" : "val"}, {"label" : "getIndexSplitter", "tail" : "(location: String, k: Int)(spark: SparkSession): AnyMinSplitter", "member" : "com.jnpersson.discount.spark.Index.getIndexSplitter", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#getIndexSplitter(location:String,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.AnyMinSplitter", "kind" : "def"}, {"label" : "write", "tail" : "(data: DataFrame, location: String, numBuckets: Int): Unit", "member" : "com.jnpersson.discount.spark.Index.write", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#write(data:org.apache.spark.sql.DataFrame,location:String,numBuckets:Int):Unit", "kind" : "def"}, {"label" : "read", "tail" : "(location: String, knownParams: Option[IndexParams])(spark: SparkSession): Index", "member" : "com.jnpersson.discount.spark.Index.read", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#read(location:String,knownParams:Option[com.jnpersson.discount.spark.IndexParams])(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "randomTableName", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.Index.randomTableName", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#randomTableName:String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Index$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Index$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Index.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.IndexedFastaInput", "shortDescription" : "Input reader for FASTA files containing potentially long sequences, with a .fai indexFAI indexes can be created with tools such as seqkit.", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.IndexedFastaInput.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.IndexedFastaInput.getFragments", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.IndexedFastaInput#", "error" : "unsupported entity"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/IndexedFastaInput.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.IndexParams", "shortDescription" : "", "object" : "com\/jnpersson\/discount\/spark\/IndexParams$.html", "members_object" : [{"label" : "read", "tail" : "(location: String)(spark: SparkSession): IndexParams", "member" : "com.jnpersson.discount.spark.IndexParams.read", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#read(location:String)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.spark.IndexParams", "kind" : "def"}, {"label" : "maxVersion", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.IndexParams.maxVersion", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#maxVersion:Int", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_case class" : [{"label" : "compatibilityCheck", "tail" : "(other: IndexParams, strict: Boolean): Unit", "member" : "com.jnpersson.discount.spark.IndexParams.compatibilityCheck", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#compatibilityCheck(other:com.jnpersson.discount.spark.IndexParams,strict:Boolean):Unit", "kind" : "def"}, {"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.IndexParams.toString", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#toString():String", "kind" : "def"}, {"label" : "write", "tail" : "(location: String, comment: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.IndexParams.write", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#write(location:String,comment:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "properties", "tail" : "(): Properties", "member" : "com.jnpersson.discount.spark.IndexParams.properties", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#properties:java.util.Properties", "kind" : "def"}, {"label" : "m", "tail" : "(): Int", "member" : "com.jnpersson.discount.spark.IndexParams.m", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#m:Int", "kind" : "def"}, {"label" : "k", "tail" : "(): Int", "member" : "com.jnpersson.discount.spark.IndexParams.k", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#k:Int", "kind" : "def"}, {"label" : "splitter", "tail" : "(): AnyMinSplitter", "member" : "com.jnpersson.discount.spark.IndexParams.splitter", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#splitter:com.jnpersson.discount.spark.AnyMinSplitter", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.IndexParams#", "error" : "unsupported entity"}, {"label" : "location", "tail" : ": String", "member" : "com.jnpersson.discount.spark.IndexParams.location", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#location:String", "kind" : "val"}, {"label" : "buckets", "tail" : ": Int", "member" : "com.jnpersson.discount.spark.IndexParams.buckets", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#buckets:Int", "kind" : "val"}, {"label" : "bcSplit", "tail" : ": Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.IndexParams.bcSplit", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#bcSplit:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/IndexParams.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/IndexParams.html", "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.InputReader", "shortDescription" : "A reader that reads input data from one file using a specific Hadoop format", "members_class" : [{"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.InputReader.conf", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"label" : "sc", "tail" : ": SparkContext", "member" : "com.jnpersson.discount.spark.InputReader.sc", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#sc:org.apache.spark.SparkContext", "kind" : "val"}, {"member" : "com.jnpersson.discount.spark.InputReader#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "getFragments", "tail" : "(): RDD[InputFragment]", "member" : "com.jnpersson.discount.spark.InputReader.getFragments", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getFragments():org.apache.spark.rdd.RDD[com.jnpersson.discount.hash.InputFragment]", "kind" : "abstract def"}, {"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.InputReader.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/InputReader.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "abstract def"}], "class" : "com\/jnpersson\/discount\/spark\/InputReader.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.Inputs", "shortDescription" : "A set of input files that can be parsed into com.jnpersson.discount.hash.InputFragment", "members_class" : [{"label" : "getSequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.Inputs.getSequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#getSequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "getInputFragments", "tail" : "(withRC: Boolean, withAmbiguous: Boolean): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Inputs.getInputFragments", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#getInputFragments(withRC:Boolean,withAmbiguous:Boolean):org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "forFile", "tail" : "(file: String): InputReader", "member" : "com.jnpersson.discount.spark.Inputs.forFile", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#forFile(file:String):com.jnpersson.discount.spark.InputReader", "kind" : "def"}, {"label" : "conf", "tail" : ": org.apache.hadoop.conf.Configuration", "member" : "com.jnpersson.discount.spark.Inputs.conf", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#conf:org.apache.hadoop.conf.Configuration", "kind" : "val"}, {"member" : "com.jnpersson.discount.spark.Inputs#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Inputs.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Inputs.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.Kmers", "shortDescription" : "Convenience methods for interacting with k-mers from a set of input files.", "members_class" : [{"label" : "sampledIndex", "tail" : "(fraction: Double): Index", "member" : "com.jnpersson.discount.spark.Kmers.sampledIndex", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#sampledIndex(fraction:Double):com.jnpersson.discount.spark.Index", "kind" : "def"}, {"label" : "index", "tail" : ": Index", "member" : "com.jnpersson.discount.spark.Kmers.index", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#index:com.jnpersson.discount.spark.Index", "kind" : "lazy val"}, {"label" : "segments", "tail" : "(): GroupedSegments", "member" : "com.jnpersson.discount.spark.Kmers.segments", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#segments:com.jnpersson.discount.spark.GroupedSegments", "kind" : "def"}, {"label" : "constructSampledMinimizerOrdering", "tail" : "(writeLocation: String): MinSplitter[_]", "member" : "com.jnpersson.discount.spark.Kmers.constructSampledMinimizerOrdering", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#constructSampledMinimizerOrdering(writeLocation:String):com.jnpersson.discount.hash.MinSplitter[_]", "kind" : "def"}, {"label" : "sequenceTitles", "tail" : "(): Dataset[SeqTitle]", "member" : "com.jnpersson.discount.spark.Kmers.sequenceTitles", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#sequenceTitles:org.apache.spark.sql.Dataset[com.jnpersson.discount.SeqTitle]", "kind" : "def"}, {"label" : "inputFragments", "tail" : "(): Dataset[InputFragment]", "member" : "com.jnpersson.discount.spark.Kmers.inputFragments", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#inputFragments:org.apache.spark.sql.Dataset[com.jnpersson.discount.hash.InputFragment]", "kind" : "def"}, {"label" : "method", "tail" : ": CountMethod", "member" : "com.jnpersson.discount.spark.Kmers.method", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#method:com.jnpersson.discount.spark.CountMethod", "kind" : "lazy val"}, {"label" : "bcSplit", "tail" : ": Broadcast[AnyMinSplitter]", "member" : "com.jnpersson.discount.spark.Kmers.bcSplit", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#bcSplit:org.apache.spark.broadcast.Broadcast[com.jnpersson.discount.spark.AnyMinSplitter]", "kind" : "lazy val"}, {"member" : "com.jnpersson.discount.spark.Kmers#", "error" : "unsupported entity"}, {"label" : "inFiles", "tail" : ": Seq[String]", "member" : "com.jnpersson.discount.spark.Kmers.inFiles", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#inFiles:Seq[String]", "kind" : "val"}, {"label" : "discount", "tail" : ": Discount", "member" : "com.jnpersson.discount.spark.Kmers.discount", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#discount:com.jnpersson.discount.spark.Discount", "kind" : "val"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Kmers.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Kmers.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.MinimizerSource", "members_trait" : [{"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}, {"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.MinimizerSource.load", "link" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "abstract def"}], "shortDescription" : "A method for obtaining a set of minimizers for given values of k and m.", "trait" : "com\/jnpersson\/discount\/spark\/package$$MinimizerSource.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.spark.Output", "shortDescription" : "Output format helper methods", "object" : "com\/jnpersson\/discount\/spark\/Output$.html", "members_object" : [{"label" : "showStats", "tail" : "(stats: Dataset[BucketStats], fileOutput: Option[String])(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.Output.showStats", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#showStats(stats:org.apache.spark.sql.Dataset[com.jnpersson.discount.bucket.BucketStats],fileOutput:Option[String])(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "writeFastaCounts", "tail" : "(allKmers: Dataset[(NTSeq, Abundance)], writeLocation: String)(spark: SparkSession): Unit", "member" : "com.jnpersson.discount.spark.Output.writeFastaCounts", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#writeFastaCounts(allKmers:org.apache.spark.sql.Dataset[(com.jnpersson.discount.NTSeq,com.jnpersson.discount.Abundance)],writeLocation:String)(implicitspark:org.apache.spark.sql.SparkSession):Unit", "kind" : "def"}, {"label" : "writeTSV", "tail" : "(allKmers: Dataset[A], writeLocation: String): Unit", "member" : "com.jnpersson.discount.spark.Output.writeTSV", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#writeTSV[A](allKmers:org.apache.spark.sql.Dataset[A],writeLocation:String):Unit", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Output$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Output$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Path", "shortDescription" : "A file, or a directory containing multiple files with names like minimizers_{k}_{m}.txt,in which case the best file will be selected.", "members_case class" : [{"label" : "load", "tail" : "(k: Int, m: Int)(spark: SparkSession): Seq[NTSeq]", "member" : "com.jnpersson.discount.spark.Path.load", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#load(k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):Seq[com.jnpersson.discount.NTSeq]", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Path#", "error" : "unsupported entity"}, {"label" : "path", "tail" : ": String", "member" : "com.jnpersson.discount.spark.Path.path", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#path:String", "kind" : "val"}, {"label" : "finish", "tail" : "(priorities: MinimizerPriorities, k: Int)(spark: SparkSession): MinSplitter[_ <: MinimizerPriorities]", "member" : "com.jnpersson.discount.spark.MinimizerSource.finish", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#finish(priorities:com.jnpersson.discount.hash.MinimizerPriorities,k:Int)(implicitspark:org.apache.spark.sql.SparkSession):com.jnpersson.discount.hash.MinSplitter[_<:com.jnpersson.discount.hash.MinimizerPriorities]", "kind" : "def"}, {"label" : "theoreticalMax", "tail" : "(m: Int): SeqLocation", "member" : "com.jnpersson.discount.spark.MinimizerSource.theoreticalMax", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#theoreticalMax(m:Int):com.jnpersson.discount.SeqLocation", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#clone():Object", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Path.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "case class" : "com\/jnpersson\/discount\/spark\/package$$Path.html", "kind" : "case class"}, {"name" : "com.jnpersson.discount.spark.Pregrouped", "shortDescription" : "Pregrouped counting: groups and counts identical super-mers before counting k-mers.", "object" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html", "members_object" : [{"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.Pregrouped.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#toString():String", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.Pregrouped.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.CountMethod.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Pregrouped$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}, {"name" : "com.jnpersson.discount.spark.Rule", "members_trait" : [{"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "shortDescription" : "k-mer combination (reduction) rules for combining indexes.", "object" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html", "members_object" : [{"label" : "KmersSubtract", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.KmersSubtract", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#KmersSubtract", "kind" : "object"}, {"label" : "CountersSubtract", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.CountersSubtract", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#CountersSubtract", "kind" : "object"}, {"label" : "Right", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Right", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Right", "kind" : "object"}, {"label" : "Left", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Left", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Left", "kind" : "object"}, {"label" : "Min", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Min", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Min", "kind" : "object"}, {"label" : "Max", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Max", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Max", "kind" : "object"}, {"label" : "Sum", "tail" : "", "member" : "com.jnpersson.discount.spark.Rule.Sum", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#Sum", "kind" : "object"}, {"label" : "cappedLongToInt", "tail" : "(x: Long): Int", "member" : "com.jnpersson.discount.spark.Rule.cappedLongToInt", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#cappedLongToInt(x:Long):Int", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Rule$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "trait" : "com\/jnpersson\/discount\/spark\/package$$Rule.html", "kind" : "trait"}, {"name" : "com.jnpersson.discount.spark.Sampling", "shortDescription" : "Routines for creating and managing frequency sampled minimizer orderings.", "object" : "com\/jnpersson\/discount\/spark\/Sampling$.html", "members_class" : [{"label" : "readMotifList", "tail" : "(location: String): Array[String]", "member" : "com.jnpersson.discount.spark.Sampling.readMotifList", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#readMotifList(location:String):Array[String]", "kind" : "def"}, {"label" : "readMotifList", "tail" : "(location: String, k: Int, m: Int): Array[String]", "member" : "com.jnpersson.discount.spark.Sampling.readMotifList", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#readMotifList(location:String,k:Int,m:Int):Array[String]", "kind" : "def"}, {"label" : "persistMinimizers", "tail" : "(table: MinTable, location: String): Unit", "member" : "com.jnpersson.discount.spark.Sampling.persistMinimizers", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#persistMinimizers(table:com.jnpersson.discount.hash.MinTable,location:String):Unit", "kind" : "def"}, {"label" : "persistMinimizers", "tail" : "(splitter: MinSplitter[_], location: String): Unit", "member" : "com.jnpersson.discount.spark.Sampling.persistMinimizers", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#persistMinimizers(splitter:com.jnpersson.discount.hash.MinSplitter[_],location:String):Unit", "kind" : "def"}, {"label" : "writeFrequencies", "tail" : "(f: SampledFrequencies, location: String): Unit", "member" : "com.jnpersson.discount.spark.Sampling.writeFrequencies", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#writeFrequencies(f:com.jnpersson.discount.hash.SampledFrequencies,location:String):Unit", "kind" : "def"}, {"label" : "createSampledTable", "tail" : "(input: Dataset[NTSeq], template: MinTable, sampledFraction: Double, persistLocation: Option[String]): MinTable", "member" : "com.jnpersson.discount.spark.Sampling.createSampledTable", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#createSampledTable(input:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],template:com.jnpersson.discount.hash.MinTable,sampledFraction:Double,persistLocation:Option[String]):com.jnpersson.discount.hash.MinTable", "kind" : "def"}, {"label" : "countFeatures", "tail" : "(reads: Dataset[NTSeq], table: MinTable, partitions: Int): SampledFrequencies", "member" : "com.jnpersson.discount.spark.Sampling.countFeatures", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#countFeatures(reads:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],table:com.jnpersson.discount.hash.MinTable,partitions:Int):com.jnpersson.discount.hash.SampledFrequencies", "kind" : "def"}, {"label" : "motifCounts", "tail" : "(reads: Dataset[NTSeq], table: MinTable, partitions: Int): DataFrame", "member" : "com.jnpersson.discount.spark.Sampling.motifCounts", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#motifCounts(reads:org.apache.spark.sql.Dataset[com.jnpersson.discount.NTSeq],table:com.jnpersson.discount.hash.MinTable,partitions:Int):org.apache.spark.sql.DataFrame", "kind" : "def"}, {"member" : "com.jnpersson.discount.spark.Sampling#", "error" : "unsupported entity"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "members_object" : [{"label" : "findBestMinimizerFile", "tail" : "(minimizerDir: String, k: Int, m: Int)(spark: SparkSession): String", "member" : "com.jnpersson.discount.spark.Sampling.findBestMinimizerFile", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#findBestMinimizerFile(minimizerDir:String,k:Int,m:Int)(implicitspark:org.apache.spark.sql.SparkSession):String", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#notify():Unit", "kind" : "final def"}, {"label" : "toString", "tail" : "(): String", "member" : "scala.AnyRef.toString", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#toString():String", "kind" : "def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "hashCode", "tail" : "(): Int", "member" : "scala.AnyRef.hashCode", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#hashCode():Int", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/Sampling$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "class" : "com\/jnpersson\/discount\/spark\/Sampling.html", "kind" : "class"}, {"name" : "com.jnpersson.discount.spark.Simple", "shortDescription" : "Non-pregrouped: counts k-mers immediately.", "object" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html", "members_object" : [{"label" : "toString", "tail" : "(): String", "member" : "com.jnpersson.discount.spark.Simple.toString", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#toString():String", "kind" : "def"}, {"label" : "resolve", "tail" : "(priorities: MinimizerPriorities): CountMethod", "member" : "com.jnpersson.discount.spark.CountMethod.resolve", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#resolve(priorities:com.jnpersson.discount.hash.MinimizerPriorities):com.jnpersson.discount.spark.package.CountMethod", "kind" : "def"}, {"label" : "addRCToMainData", "tail" : "(discount: Discount): Boolean", "member" : "com.jnpersson.discount.spark.CountMethod.addRCToMainData", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#addRCToMainData(discount:com.jnpersson.discount.spark.Discount):Boolean", "kind" : "def"}, {"label" : "synchronized", "tail" : "(arg0: ⇒ T0): T0", "member" : "scala.AnyRef.synchronized", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#synchronized[T0](x$1:=>T0):T0", "kind" : "final def"}, {"label" : "##", "tail" : "(): Int", "member" : "scala.AnyRef.##", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html###():Int", "kind" : "final def"}, {"label" : "!=", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.!=", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#!=(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "==", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.==", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#==(x$1:Any):Boolean", "kind" : "final def"}, {"label" : "ne", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.ne", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#ne(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "eq", "tail" : "(arg0: AnyRef): Boolean", "member" : "scala.AnyRef.eq", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#eq(x$1:AnyRef):Boolean", "kind" : "final def"}, {"label" : "finalize", "tail" : "(): Unit", "member" : "scala.AnyRef.finalize", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#finalize():Unit", "kind" : "def"}, {"label" : "wait", "tail" : "(): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#wait():Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long, arg1: Int): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#wait(x$1:Long,x$2:Int):Unit", "kind" : "final def"}, {"label" : "wait", "tail" : "(arg0: Long): Unit", "member" : "scala.AnyRef.wait", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#wait(x$1:Long):Unit", "kind" : "final def"}, {"label" : "notifyAll", "tail" : "(): Unit", "member" : "scala.AnyRef.notifyAll", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#notifyAll():Unit", "kind" : "final def"}, {"label" : "notify", "tail" : "(): Unit", "member" : "scala.AnyRef.notify", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#notify():Unit", "kind" : "final def"}, {"label" : "clone", "tail" : "(): AnyRef", "member" : "scala.AnyRef.clone", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#clone():Object", "kind" : "def"}, {"label" : "equals", "tail" : "(arg0: Any): Boolean", "member" : "scala.AnyRef.equals", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#equals(x$1:Any):Boolean", "kind" : "def"}, {"label" : "getClass", "tail" : "(): Class[_]", "member" : "scala.AnyRef.getClass", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#getClass():Class[_]", "kind" : "final def"}, {"label" : "asInstanceOf", "tail" : "(): T0", "member" : "scala.Any.asInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#asInstanceOf[T0]:T0", "kind" : "final def"}, {"label" : "isInstanceOf", "tail" : "(): Boolean", "member" : "scala.Any.isInstanceOf", "link" : "com\/jnpersson\/discount\/spark\/package$$Simple$.html#isInstanceOf[T0]:Boolean", "kind" : "final def"}], "kind" : "object"}]}; \ No newline at end of file