Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Cosy-Bio
Drugst.One
plugin
Commits
f558e3b6
Commit
f558e3b6
authored
4 years ago
by
Mhaned Oubounyt
Committed by
Julian Späth
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Enhancem
parent
89ab0612
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/components/protein-analysis/protein-analysis.component.html
+2
-2
2 additions, 2 deletions
...mponents/protein-analysis/protein-analysis.component.html
src/app/pages/explorer-page/explorer-page.component.html
+14
-9
14 additions, 9 deletions
src/app/pages/explorer-page/explorer-page.component.html
with
16 additions
and
11 deletions
src/app/components/protein-analysis/protein-analysis.component.html
+
2
−
2
View file @
f558e3b6
...
...
@@ -27,11 +27,11 @@
</table>
</section>
<footer
class=
"modal-card-foot"
>
<button
class=
"button is-
success
"
>
<button
class=
"button is-
primary
"
>
<span
class=
"icon"
><i
class=
"fa fa-play"
></i></span>
<span>
Multi Steiner
</span>
</button>
<button
class=
"button is-
success
"
>
<button
class=
"button is-
primary
"
>
<span
class=
"icon"
><i
class=
"fa fa-play"
></i></span>
<span>
Key Pathway Miner
</span>
</button>
...
...
This diff is collapsed.
Click to expand it.
src/app/pages/explorer-page/explorer-page.component.html
+
14
−
9
View file @
f558e3b6
...
...
@@ -17,13 +17,13 @@
<nav
class=
"level"
*ngIf=
"proteinData"
>
<div
class=
"level-item has-text-centered"
>
<div>
<p
class=
"heading"
>
Effects
</p>
<p
class=
"heading"
>
Viral protein
</p>
<p
class=
"title"
>
{{ proteinData.effects.length }}
</p>
</div>
</div>
<div
class=
"level-item has-text-centered"
>
<div>
<p
class=
"heading"
>
Protein Groups
</p>
<p
class=
"heading"
>
Host protein
</p>
<p
class=
"title"
>
{{ proteinData.proteins.length }}
</p>
</div>
</div>
...
...
@@ -117,7 +117,7 @@
</p>
</header>
<div
class=
"card-content"
>
<button
(click)=
"showAnalysisDialog = true"
class=
"button is-
success
"
[disabled]=
"analysis.getCount() === 0"
>
<button
(click)=
"showAnalysisDialog = true"
class=
"button is-
primary
"
[disabled]=
"analysis.getCount() === 0"
>
<span
class=
"icon"
>
<i
class=
"fa fa-list"
></i>
</span>
...
...
@@ -140,10 +140,11 @@
<div
*ngIf=
"showDetails"
class=
"content"
>
<p><b>
Protein Group:
</b>
{{ currentProteinAc }}
</p>
<p><b>
Gene Name(s):
</b>
<span
*ngFor=
"let geneName of geneNames"
>
{{ geneName }}
</span></p>
<p><b>
Protein Name(s):
</b>
<span
*ngFor=
"let proteinName of proteinNames"
>
{{ proteinName }}
</span></p>
<!--
<p><b>Gene Name(s):</b> <span *ngFor="let geneName of geneNames"> {{ geneName }}</span></p>
-->
<!--
<p><b>Protein Name(s):</b> <span *ngFor="let proteinName of proteinNames"> {{ proteinName }}</span></p>
-->
<p><b>
Protein AC(s):
</b>
<a
href=
"https://www.uniprot.org/uniprot/{{proteinAc}}"
target=
"_blank"
*ngFor=
"let proteinAc of proteinAcs"
>
<a
href=
"https://www.uniprot.org/uniprot/{{proteinAc}}"
target=
"_blank"
*ngFor=
"let proteinAc of proteinAcs"
>
{{ proteinAc }}
</a>
</p>
...
...
@@ -167,10 +168,14 @@
<div
class=
"content"
>
<h2>
Summary
</h2>
<figure
class=
"image"
>
<img
src=
"assets/boxplot.png"
alt=
"Boxplots"
>
<!--
<img src="assets/boxplot.png" alt="Boxplots">
-->
</figure>
<button
class=
"button"
*ngIf=
"!inSelection(currentProteinAc)"
(click)=
"addToSelection(currentProteinAc)"
>
Select for analysis
</button>
<button
class=
"button"
*ngIf=
"inSelection(currentProteinAc)"
(click)=
"removeFromSelection(currentProteinAc)"
>
Remove from analysis
</button>
<button
class=
"button is-primary"
*ngIf=
"!inSelection(currentProteinAc)"
(click)=
"addToSelection(currentProteinAc)"
>
Select for analysis
</button>
<button
class=
"button is-primary"
*ngIf=
"inSelection(currentProteinAc)"
(click)=
"removeFromSelection(currentProteinAc)"
>
Remove from analysis
</button>
</div>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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