Skip to content

Commit

Permalink
Exclude Metagenome from goal calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicjar committed Apr 1, 2014
1 parent 6dda38d commit 8ee43be
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions goals.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,13 @@ function generateStandardRunchartDataset (jsonview, dateRangeStart, dateRangeEnd
var pf = keys[3]; // platform
//var sid = keys[4]; // sample id
if(type != "Production") { continue; }
if (appl != "Exome capture" &&
appl != "RNA-seq (total RNA)" &&
appl != "WG re-seq" &&
appl != "Metagenome") {
if (appl != "Exome capture"
&& appl != "RNA-seq (total RNA)"
&& appl != "WG re-seq"
) {
continue;
}



var sampleDateFrom = values[dateFromKey];
var sampleDateTo = values[dateToKey];
var numSamples = values["Samples"];
Expand Down

0 comments on commit 8ee43be

Please sign in to comment.