Skip to content
Snippets Groups Projects
Commit c149ad63 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Merge branch 'develop' into 'master'

Develop

See merge request !28
parents f8af70a6 8fcca0af
2 merge requests!82Master,!28Develop
Pipeline #5774 passed with stages
in 38 seconds
......@@ -12,4 +12,4 @@ current: true
---
<!--Weight: 1=PI 2=Faculty 3=Instructors 4=PostDocs 5=Techs 6=GradStudents 10=Other 15=Interns-->
Gervaise obtained his master's degree at American University in 2015. He joined Dr. Strand's lab in 2015. His previous experience involved the utilization of a diverse set of molecular techniques to investigate cancer biology. He also has a strong background in early-stage drug discovery, including the use of lab robotics. After a very successful fellowship with UT Southwestern Bioinformatics Department's Bioinformatics Core Facility (BICF), he transitioned to a more computational role in the lab. He is responsible for the analysis of sequencing, in particular single-cell RNA-sequencing analysis. He also builds pipelines for automated analysis, and tools for easy data exploration.
\ No newline at end of file
Gervaise obtained his master's degree at American University in 2014. He joined Dr. Strand's lab in 2015. His previous experience involved the utilization of a diverse set of molecular techniques to investigate cancer biology. He also has a strong background in early-stage drug discovery, including the use of lab robotics. After a very successful fellowship with UT Southwestern Bioinformatics Department's Bioinformatics Core Facility (BICF), he transitioned to a more computational role in the lab. He is responsible for the analysis of sequencing, in particular single-cell RNA-sequencing analysis. He also builds pipelines for automated analysis, and tools for easy data exploration.
\ No newline at end of file
......@@ -26,7 +26,7 @@
.columnS {
float: left;
text-align: center;
width: 50%;
width: 33.33%;
}
.columnF {
......@@ -46,7 +46,7 @@
height: auto;
}
@media (max-width: 1000px) {
@media (max-width: 1250px) {
.columnS {
text-align: right;
width: 100%;
......@@ -75,14 +75,25 @@
</label>
<br>
<select name="populations" id="populations">
<option selected="selected" value="Population"> Cell Populations</option>
<option selected="selected" value="Population">Cell Populations</option>
<option>Lineage</option>
<option value="Zone">Prostatic Zone</option>
<option>Patient</option>
</select>
</div>
<div class="columnS">
<label for="group" style="font-size:18px;">
<b>Select a group of cell to display:</b>
</label>
<br>
<select name="group" id="group">
<option selected="selected" value="all">All Cells</option>
<option value="epi">Epithelia Only</option>
<option value="st">Stroma Only</option>
</select>
</div>
<br>
<div style="text-align:center">
<div style="text-align:left">
<button type="submit" id="analysis" class="btn btn-primary">Run Analysis</button>
</div>
<hr>
......@@ -101,6 +112,7 @@
<div align="center">
<h1 id="label.gene">NO GENE SELECTED</h1>
<h2 id="label.populations"></h2>
<h3 id="label.group"></h3>
<div class="columnF">
<h4 id="label.ClusterVis">
</h3>
......@@ -157,6 +169,9 @@
$(function () {
$("#populations").selectmenu({ width: 230 });
});
$(function () {
$("#group").selectmenu({ width: 230 });
});
$(function () {
var genes = {{ index .Site.Data.sc_data.hu_donor_pr_deep.genes }};
var selectedGene = $("#gene").autocomplete({
......@@ -176,15 +191,16 @@
}
document.getElementById("label.gene").innerHTML = _gene
document.getElementById("label.populations").innerHTML = "Separated by " + $("#populations").val().toUpperCase()
document.getElementById("label.group").innerHTML = $("#group").val().toUpperCase() + " CELLS"
document.getElementById("label.ClusterVis").innerHTML = "Cluster Visualization"
var img = document.getElementById("img.ClusterVis");
img.src = "https://s3.us-east-2.amazonaws.com/data.images.gse117403.deep/images/" + $("#populations").val() + "/umap.png"
img.src = "https://s3.us-east-2.amazonaws.com/data.images.gse117403.deep/" + $("#group").val() + "/images/" + $("#populations").val() + "/umap.png"
document.getElementById("label.Feature").innerHTML = "Feature Plot"
var img = document.getElementById("img.Feature");
img.src = "https://s3.us-east-2.amazonaws.com/data.images.gse117403.deep/images/umap/" + "genes/" + _gene + "_1.png"
img.src = "https://s3.us-east-2.amazonaws.com/data.images.gse117403.deep/" + $("#group").val() + "/images/umap/" + "genes/" + _gene + "_1.png"
document.getElementById("label.ViolinBox").innerHTML = "Violin Box Plot"
var img = document.getElementById("img.ViolinBox");
img.src = "https://s3.us-east-2.amazonaws.com/data.images.gse117403.deep/images/ViolinBox/" + $("#populations").val() + "/genes/" + _gene + "_1.png"
img.src = "https://s3.us-east-2.amazonaws.com/data.images.gse117403.deep/" + $("#group").val() + "/images/ViolinBox/" + $("#populations").val() + "/genes/" + _gene + "_1.png"
return (_gene)
});
</script>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment