From 9676926025f5dbf313d52aa40069f9393d02b122 Mon Sep 17 00:00:00 2001 From: Colin Megill Date: Mon, 16 Oct 2017 10:54:57 -0700 Subject: [PATCH] remove create ranges, now done on server --- .../continuous/createContinuousRanges.js | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/components/continuous/createContinuousRanges.js diff --git a/src/components/continuous/createContinuousRanges.js b/src/components/continuous/createContinuousRanges.js deleted file mode 100644 index adf26524..00000000 --- a/src/components/continuous/createContinuousRanges.js +++ /dev/null @@ -1,25 +0,0 @@ -import * as globals from "../../globals.js" - -/* - end result: - - ranges: { - Total_reads: { - min: 11111, - max: 33333 - }, - Genes_detected: { - min: 444, - max: 555 - } - } - -*/ - -const createContinuousRanges = (cells) => { - const ranges = {}; - - return ranges; -} - -export default createContinuousRanges;