unipept-heatmap
Advanced tools
Comparing version 1.0.11 to 1.0.12
{ | ||
"name": "unipept-heatmap", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "HeatMap built for the Unipept project. See http://unipept.ugent.be for more information. This HeatMap supports UPGMA-clustering and MOLO-reordering.", | ||
@@ -5,0 +5,0 @@ "main": "dist/bundle.js", |
@@ -11,3 +11,3 @@ import * as d3 from "d3"; | ||
class Heatmap { | ||
export class Heatmap { | ||
private element: HTMLElement; | ||
@@ -91,3 +91,2 @@ private settings: HeatmapSettings; | ||
// Create a new ClusterElement for every column that exists. | ||
@@ -94,0 +93,0 @@ let columnElements: ClusterElement[] = this.columns.map((el, idx) => new ClusterElement(this.values.map(col => col[idx].value), el.id!)); |
@@ -63,3 +63,3 @@ import Reorderer from "./reorderer"; | ||
if (!leftMin || !rightMin) { | ||
if (leftMin === undefined || rightMin === undefined) { | ||
throw "One of the recursive calls to sort a subtree did not yield a minimum value."; | ||
@@ -66,0 +66,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2443885
40