Normalizes an RDD that contains a double value and an interval by the width of the interval.
Normalizes an RDD that contains a double value and an interval by the width of the interval.
Datatype of additional value parameter to maintain.
An RDD containing (a value to be normalized, an interval, and an additional data value), for normalization.
Returns an RDD containing (the double normalized by the interval length, the original interval, the original data value) after normalization.
pkn
Normalizes an RDD that contains a double value and an interval by the width of the interval and the total aggregate value of all values.
Normalizes an RDD that contains a double value and an interval by the width of the interval and the total aggregate value of all values. This is useful for calculating entities like reads/fragments per kilobase of transcript per million reads (RPKM/FPKM).
Datatype of additional value parameter to maintain.
An RDD containing (a value to be normalized, an interval, and an additional data value), for normalization.
Global normalization factor. E.g., for RPKM, n = 1,000,000 (reads per kilobase transcript per _million_ reads).
Returns an RDD containing (the double normalized by the interval length, the original interval, the original data value) after normalization.
apply