Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
StrandLab2.net
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Strand Lab
StrandLab2.net
Commits
99200f3f
Commit
99200f3f
authored
5 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Plain Diff
Merge branch '1-lineage.data' into 'develop'
Add cell group filter for Pd deep Closes
#1
See merge request
!27
parents
9548413c
0c68ad89
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!28
Develop
,
!27
Add cell group filter for Pd deep
Pipeline
#5767
passed with stages
in 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
layouts/custom/hu.donor.deep.html
+23
-7
23 additions, 7 deletions
layouts/custom/hu.donor.deep.html
with
23 additions
and
7 deletions
layouts/custom/hu.donor.deep.html
+
23
−
7
View file @
99200f3f
...
...
@@ -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
:
1
00
0px
)
{
@media
(
max-width
:
1
25
0px
)
{
.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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment