[ Launch: fastqc tests donuts ] 5332322 by olgabot
[ Launch: fastqc tests donuts ] 5332310 by olgabot
[ Launch: fastqc tests 2 ] 5293726 by olgabot
[ Launch: fastqc tests 2 ] 5190843 by olgabot
[ Launch: fastqc tests 2 ] 5190287 by enjalot
[ Launch: Tributary inlet ] 5188696 by olgabot
-
-
Save olgabot/5332322 to your computer and use it in GitHub Desktop.
fastqc tests heatmap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"description":"fastqc tests heatmap","endpoint":"","display":"div","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"metadata.csv":{"default":true,"vim":false,"emacs":false,"fontSize":12},"fastqc_tests.css":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#display { | |
font: 10px sans-serif; | |
overflow: scroll; | |
background-color: #fff; | |
} | |
svg { | |
padding: 10px 0 0 10px; | |
} | |
.arc { | |
stroke: #fff; | |
} | |
text.active { | |
fill: red; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var radius = 40, | |
padding = 10; | |
// Derived from "Sequential YlGnBu" set of ColorBrewer | |
var r2Colors = d3.scale.ordinal() | |
.domain(['PASS', 'WARN', 'FAIL', 'no_experiment', 'PASS', 'WARN', 'FAIL', 'no_experiment']) | |
.range(['#2C7FB8', '#7FCDBB', '#EDF8B1', '#fff', '#2C7FB8', '#7FCDBB', '#EDF8B1', '#fff']); | |
var r1Colors = r2Colors; | |
var i = 0; | |
var test = ''; | |
var color = r2Colors; | |
var test_names = { | |
R1: [], | |
R2: [] | |
}; | |
var test_names_array = []; | |
//var sample_names_array = []; | |
//document.write(color) | |
var arc = d3.svg.arc() | |
.outerRadius(radius) | |
.innerRadius(radius - radius / 2); | |
// stolen from StackOverflow | |
// http://stackoverflow.com/questions/4049847/initializing-an-array-with-a-single-value | |
function initArray(length, value) { | |
var arr = [], | |
i = 0; | |
arr.length = length; | |
while (i < length) { | |
arr[i++] = value; | |
} | |
return arr; | |
} | |
var slices = initArray(22, 100); | |
//console.log('slices', slices) | |
var pie = d3.layout.pie() | |
.sort(null) | |
.value(function (d) { | |
return d.slice; | |
}); | |
var data = tributary.metadata; | |
//d3.csv("metadata.csv", function (data) { | |
// console.log(JSON.stringify(data)) | |
d3.select("#display").selectAll("p") | |
.data(data) | |
.enter(); | |
short_ids = []; | |
var matrix = []; | |
data.forEach(function (d) { | |
short_ids.push(d.short_id); | |
// Initialize the test_names variable by looping over the keys | |
// if this is the first iteration of the loop | |
if (test_names['R1'].length === 0) { | |
for (var key in d) { | |
if (/read\d_test\d+_/.test(key)) { | |
if (/read1/.test(key)) { | |
test_names.R1.push(key); | |
} else { | |
test_names.R2.push(key); | |
} | |
} | |
} | |
// console.log("created test_names") | |
// console.log('test_names.R1', test_names.R1) | |
test_names_array = [].concat(test_names.R1, test_names.R2); | |
// Initialize data matrix | |
// It doesn't matter that we use the length of the array vs | |
// The two arrays in the object test_names since we just | |
// need the number | |
for( i = 0; i < test_names_array.length; i++ ){ | |
matrix[i] = [] | |
} | |
} | |
// console.log('test_names_array', test_names_array); | |
if (d.read1_fastqc_report != "no_experiment") { | |
d.read_colors = { | |
"R2": r1Colors, | |
'R1': r1Colors | |
}; | |
d.links = { | |
"R2": d.read2_fastqc_report, | |
'R1': d.read1_fastqc_report | |
}; | |
d.if_experiment = true; | |
d.test_results = {}; | |
d.test_colors = []; | |
d.tests = []; | |
// var test = ''; | |
// for (var read in test_names) { | |
// The following prints, so the error must be after this | |
// console.log('read', read) | |
// for( var read_ind in [0,1]){ | |
// read = ['R2', 'R1'][read_ind]; | |
// console.log('read', read); | |
for( i = 0; i < test_names.R2.length; i++ ){ | |
// for (var i = 0; i < test_names[read].length; i++) { | |
test = test_names.R2[i]; | |
// console.log(test); | |
d.test_results[test] = d[test]; | |
d.test_colors.push(r1Colors(d[test])); | |
d.tests.push({color: r1Colors(d[test]), result: d[test], | |
slice:100, test_name: test}); | |
} | |
i = test_names.R1.length; | |
while(i--){ | |
//for( i = 0; i < test_names[read].length; i++ ){ | |
// for (var i = 0; i < test_names[read].length; i++) { | |
test = test_names.R1[i]; | |
// console.log(test); | |
d.test_results[test] = d[test]; | |
d.test_colors.push(r1Colors(d[test])); | |
d.tests.push({color: r1Colors(d[test]), result: d[test], | |
slice:100, test_name: test, links:d.links}); | |
} | |
} else { | |
d.read_colors = { | |
"R1": '#FFFFFF', | |
"R2": '#FFFFFF' | |
}; | |
d.links = { | |
"R2": "#", | |
'R1': "#" | |
}; | |
d.if_experiment = false; | |
// 22 is the number of FASTQC tests ... this should probably NOT be hard coded | |
d.test_colors = initArray(test_names_array.length, '#FFFFFF'); | |
d.test_results = initArray(test_names_array.length, 'no_experiment'); | |
d.tests = initArray(test_names_array.length, {color: '#FFFFFF', result: 'no_experiment', | |
slice:100, test_name:'no_experiment', links:d.links}); | |
} | |
for( i = 0; i < test_names.R1.length ; i++){ | |
test = test_names.R1[i]; | |
matrix[i].push(d[test]); | |
} | |
for( i = 0; i < test_names.R2.length ; i++){ | |
j =i+test_names.R1.length | |
test = test_names.R2[i]; | |
matrix[j].push(d[test]); | |
} | |
d.slices = slices; | |
}); | |
var column_names = short_ids, | |
ncol = column_names.length, | |
row_names = test_names, | |
nrow = row_names.length; | |
// Begin heatmap code! | |
var margin = {top: 10, right: 0, bottom: 10, left: 80}, | |
cell_size = 25, | |
width = short_ids.length*cell_size, | |
height = test_names_array.length*cell_size; | |
var legendR1 = d3.select("#display").append("svg") | |
.attr("class", "legend") | |
.attr("width", radius * 3) | |
.attr("height", radius * 2.5) | |
.style("margin-left", +margin.left + "px") | |
.selectAll("g") | |
.data(r1Colors.domain().slice()) | |
.enter().append("g") | |
.attr("transform", function (d, i) { | |
return "translate(1," + (10 + i * 20) + ")"; | |
}); | |
legendR1.append("rect") | |
.attr("width", 18) | |
.attr("height", 18) | |
.style("fill", r1Colors); | |
legendR1.append("text") | |
.attr("x", 24) | |
.attr("y", 9) | |
.attr("dy", ".35em") | |
.text(function (d) { | |
return d; | |
}); | |
//d3.select("#display").append("p").text(""); | |
var svg = d3.select('#display').append('svg') | |
.attr('width', width+margin.left + margin.right) | |
.attr("height", height + margin.top + margin.bottom) | |
.style("margin-left", +0 + "px") | |
.append("g") | |
.attr("transform", "translate(" + margin.left + "," + margin.top + ")"); | |
// Hack to make this work in Tributary | |
//var svg = d3.select("#display").append("rect") | |
svg.append("rect") | |
.attr("class", "background") | |
.attr("width", width) | |
.attr("height", height); | |
var x = d3.scale.ordinal().domain(short_ids).rangeBands([0, width]), | |
y = d3.scale.ordinal().domain(test_names_array).rangeBands([0, height]), | |
z = d3.scale.linear().domain([0, 4]).clamp(true); | |
// c = d3.scale.category10().domain(d3.range(10)); | |
c = r1Colors; | |
//console.log('c',c); | |
//console.log(x('read1_test3_sequence_quality')); | |
var row = svg.selectAll(".row") | |
.data(matrix) | |
.enter().append("g") | |
.attr("class", "row") | |
.attr("transform", function(d, i) { | |
// console.log('in transform d', d); | |
// console.log('in transform x(test_names_array[i])', x(test_names_array[i])); | |
return "translate(0," + x(test_names_array[i]) + ")"; }) | |
.each(row); | |
row.append("line") | |
.attr("x2", width); | |
//console.log('c',c); | |
//console.log(short_ids[0]); | |
// Along the left | |
row.append("text") | |
.attr("x", 0) | |
.attr("y", x.rangeBand() / 2) | |
.attr("dy", ".32em") | |
.attr("text-anchor", "start") | |
.style('position','dynamic') | |
.text(function(d, i) { return test_names_array[i]; }) | |
.on('scroll', function(d,x){ | |
console.log(d) | |
}); | |
//console.log('c',c); | |
var column = svg.selectAll(".column") | |
.data(short_ids) | |
.enter().append("g") | |
.attr("class", "column") | |
.attr("transform", function(d, i) { | |
return "translate(" + x(short_ids[i]) + ", -30)"; }); | |
column.append("line") | |
.attr("x1", -width); | |
// Along the left | |
column.append("text") | |
.attr("x", x.rangeBand()/2) | |
.attr("y", x.rangeBand()) | |
.attr("dy", ".32em") | |
.attr("text-anchor", "middle") | |
.style('position','fixed') | |
.text(function(d, i) { | |
// a = i*12; | |
// b = i*12 + 12; | |
return d; | |
// console.log('column', d.length, i); | |
// return short_ids[i]; | |
}); | |
//console.log('c',c); | |
function row(row) { | |
var cell = d3.select(this).selectAll(".cell") | |
.data(function(d) { | |
// console.log('in function row, data, row.filter, d', d.length); | |
return d; }) | |
.enter().append("rect") | |
.attr("class", "cell") | |
.attr("x", function(d,i) { | |
// console.log('in function row, attr x, d', d) | |
return x(short_ids[i]); }) | |
.attr("width", x.rangeBand()) | |
.attr("height", x.rangeBand()) | |
// .style("fill-opacity", function(d) { return z(d); }) | |
.style("fill", function(d,i) | |
{ | |
// console.log(d,i); | |
// console.log(c(d)); | |
return c(d); }) | |
.on("mouseover", mouseover) | |
.on("mouseout", mouseout); | |
} | |
function mouseover(p) { | |
d3.selectAll(".row text").classed("active", function(d, i) { | |
// console.log('p', p) | |
return i == p.y; }); | |
d3.selectAll(".column text").classed("active", function(d, i) { return i == p.x; }); | |
} | |
function mouseout() { | |
d3.selectAll("text").classed("active", false); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
short_id | full_id | read1_fastqc_report | read2_fastqc_report | read1_test1_basic_stats | read1_test2_base_quality | read1_test3_sequence_quality | read1_test4_base_sequence_content | read1_test5_base_gc | read1_test6_seq_gc | read1_test7_base_n | read1_test8_seq_len | read1_test9_seq_dup | read1_test10_overrep_seq | read1_test11_kmer_content | read2_test1_basic_stats | read2_test2_base_quality | read2_test3_sequence_quality | read2_test4_base_sequence_content | read2_test5_base_gc | read2_test6_seq_gc | read2_test7_base_n | read2_test8_seq_len | read2_test9_seq_dup | read2_test10_overrep_seq | read2_test11_kmer_content | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A1 | Sample_A1 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
A2 | Sample_A2 | Sample_A2/R1_fastqc/fastqc_report.html | Sample_A2/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
A3 | Sample_A3 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
A4 | Sample_A4 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
A5 | Sample_A5 | Sample_A5/R1_fastqc/fastqc_report.html | Sample_A5/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
A6 | Sample_A6 | Sample_A6/R1_fastqc/fastqc_report.html | Sample_A6/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
A7 | Sample_A7 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
A8 | Sample_A8 | Sample_A8/R1_fastqc/fastqc_report.html | Sample_A8/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
A9 | Sample_A9 | Sample_A9/R1_fastqc/fastqc_report.html | Sample_A9/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
A10 | Sample_A10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
A11 | Sample_A11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
A12 | Sample_A12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
B1 | Sample_B1 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
B2 | Sample_B2 | Sample_B2/R1_fastqc/fastqc_report.html | Sample_B2/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
B3 | Sample_B3 | Sample_B3/R1_fastqc/fastqc_report.html | Sample_B3/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
B4 | Sample_B4 | Sample_B4/R1_fastqc/fastqc_report.html | Sample_B4/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
B5 | Sample_B5 | Sample_B5/R1_fastqc/fastqc_report.html | Sample_B5/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
B6 | Sample_B6 | Sample_B6/R1_fastqc/fastqc_report.html | Sample_B6/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
B7 | Sample_B7 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
B8 | Sample_B8 | Sample_B8/R1_fastqc/fastqc_report.html | Sample_B8/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
B9 | Sample_B9 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
B10 | Sample_B10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
B11 | Sample_B11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
B12 | Sample_B12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C1 | Sample_C1 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C2 | Sample_C2 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C3 | Sample_C3 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C4 | Sample_C4 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C5 | Sample_C5 | Sample_C5/R1_fastqc/fastqc_report.html | Sample_C5/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
C6 | Sample_C6 | Sample_C6/R1_fastqc/fastqc_report.html | Sample_C6/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | PASS | WARN | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | PASS | FAIL | |
C7 | Sample_C7 | Sample_C7/R1_fastqc/fastqc_report.html | Sample_C7/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
C8 | Sample_C8 | Sample_C8/R1_fastqc/fastqc_report.html | Sample_C8/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
C9 | Sample_C9 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C10 | Sample_C10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C11 | Sample_C11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
C12 | Sample_C12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
D1 | Sample_D1 | Sample_D1/R1_fastqc/fastqc_report.html | Sample_D1/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
D2 | Sample_D2 | Sample_D2/R1_fastqc/fastqc_report.html | Sample_D2/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
D3 | Sample_D3 | Sample_D3/R1_fastqc/fastqc_report.html | Sample_D3/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
D4 | Sample_D4 | Sample_D4/R1_fastqc/fastqc_report.html | Sample_D4/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | PASS | WARN | PASS | FAIL | PASS | FAIL | FAIL | PASS | PASS | PASS | PASS | PASS | WARN | |
D5 | Sample_D5 | Sample_D5/R1_fastqc/fastqc_report.html | Sample_D5/R2_fastqc/fastqc_report.html | PASS | FAIL | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
D6 | Sample_D6 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
D7 | Sample_D7 | Sample_D7/R1_fastqc/fastqc_report.html | Sample_D7/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
D8 | Sample_D8 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
D9 | Sample_D9 | Sample_D9/R1_fastqc/fastqc_report.html | Sample_D9/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
D10 | Sample_D10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
D11 | Sample_D11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
D12 | Sample_D12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
E1 | Sample_E1 | Sample_E1/R1_fastqc/fastqc_report.html | Sample_E1/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
E2 | Sample_E2 | Sample_E2/R1_fastqc/fastqc_report.html | Sample_E2/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
E3 | Sample_E3 | Sample_E3/R1_fastqc/fastqc_report.html | Sample_E3/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
E4 | Sample_E4 | Sample_E4/R1_fastqc/fastqc_report.html | Sample_E4/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
E5 | Sample_E5 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
E6 | Sample_E6 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
E7 | Sample_E7 | Sample_E7/R1_fastqc/fastqc_report.html | Sample_E7/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | PASS | WARN | PASS | FAIL | PASS | FAIL | FAIL | PASS | PASS | PASS | PASS | PASS | WARN | |
E8 | Sample_E8 | Sample_E8/R1_fastqc/fastqc_report.html | Sample_E8/R2_fastqc/fastqc_report.html | PASS | FAIL | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
E9 | Sample_E9 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
E10 | Sample_E10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
E11 | Sample_E11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
E12 | Sample_E12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
F1 | Sample_F1 | Sample_F1/R1_fastqc/fastqc_report.html | Sample_F1/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
F2 | Sample_F2 | Sample_F2/R1_fastqc/fastqc_report.html | Sample_F2/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | PASS | WARN | FAIL | |
F3 | Sample_F3 | Sample_F3/R1_fastqc/fastqc_report.html | Sample_F3/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
F4 | Sample_F4 | Sample_F4/R1_fastqc/fastqc_report.html | Sample_F4/R2_fastqc/fastqc_report.html | PASS | FAIL | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
F5 | Sample_F5 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
F6 | Sample_F6 | Sample_F6/R1_fastqc/fastqc_report.html | Sample_F6/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
F7 | Sample_F7 | Sample_F7/R1_fastqc/fastqc_report.html | Sample_F7/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
F8 | Sample_F8 | Sample_F8/R1_fastqc/fastqc_report.html | Sample_F8/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
F9 | Sample_F9 | Sample_F9/R1_fastqc/fastqc_report.html | Sample_F9/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
F10 | Sample_F10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
F11 | Sample_F11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
F12 | Sample_F12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
G1 | Sample_G1 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
G2 | Sample_G2 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
G3 | Sample_G3 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
G4 | Sample_G4 | Sample_G4/R1_fastqc/fastqc_report.html | Sample_G4/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
G5 | Sample_G5 | Sample_G5/R1_fastqc/fastqc_report.html | Sample_G5/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
G6 | Sample_G6 | Sample_G6/R1_fastqc/fastqc_report.html | Sample_G6/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
G7 | Sample_G7 | Sample_G7/R1_fastqc/fastqc_report.html | Sample_G7/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
G8 | Sample_G8 | Sample_G8/R1_fastqc/fastqc_report.html | Sample_G8/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
G9 | Sample_G9 | Sample_G9/R1_fastqc/fastqc_report.html | Sample_G9/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
G10 | Sample_G10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
G11 | Sample_G11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
G12 | Sample_G12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
H1 | Sample_H1 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
H2 | Sample_H2 | Sample_H2/R1_fastqc/fastqc_report.html | Sample_H2/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
H3 | Sample_H3 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
H4 | Sample_H4 | Sample_H4/R1_fastqc/fastqc_report.html | Sample_H4/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
H5 | Sample_H5 | Sample_H5/R1_fastqc/fastqc_report.html | Sample_H5/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
H6 | Sample_H6 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
H7 | Sample_H7 | Sample_H7/R1_fastqc/fastqc_report.html | Sample_H7/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | FAIL | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
H8 | Sample_H8 | Sample_H8/R1_fastqc/fastqc_report.html | Sample_H8/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
H9 | Sample_H9 | Sample_H9/R1_fastqc/fastqc_report.html | Sample_H9/R2_fastqc/fastqc_report.html | PASS | PASS | PASS | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | PASS | FAIL | FAIL | FAIL | FAIL | PASS | PASS | PASS | WARN | WARN | FAIL | |
H10 | Sample_H10 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
H11 | Sample_H11 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | |
H12 | Sample_H12 | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment | no_experiment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment