Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
frontend-vue-2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bioinformatics
frontend-vue-2
Merge requests
!9
Resolve "Implement CpG isladns analysis"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Implement CpG isladns analysis"
9-implement-cpg-isladns-analysis
into
main
Overview
0
Commits
3
Pipelines
2
Changes
9
Merged
Michal Petrovič
requested to merge
9-implement-cpg-isladns-analysis
into
main
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
1
Expand
Closes
#9 (closed)
0
0
Merge request reports
Viewing commit
a584ef26
Prev
Next
Show latest version
1 file
+
6
−
6
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a584ef26
Rename y axis
· a584ef26
xpetrov4
authored
1 year ago
src/components/cpg/cpg-results.vue
+
6
−
6
Options
@@ -8,11 +8,11 @@
</h2>
<!-- overview -->
<div
v-show=
"
zdna
List"
>
<div
v-show=
"
cpg
List"
>
<heatchart
v-if=
"heatmapData"
:data=
"heatmapData"
y-axis-title=
"Count (
Z-DNA
)"
y-axis-title=
"Count (
CpG
)"
@
dataPointClick=
"showSegment"
@
onZoom=
"zoomHeatchart"
></heatchart>
@@ -91,7 +91,7 @@
<sort-toggle
@
sort=
"sortSequences"
crit=
"length"
:current=
"currentSort"
>
Length
</sort-toggle>
</th>
</tr>
<template
v-for=
"zdna in
zdna
List"
>
<template
v-for=
"zdna in
cpg
List"
>
<tr>
<td>
{{
zdna
.
position
|
number
(
0
)
}}
@@ -114,7 +114,7 @@
</table>
</pagination>
<div
v-show=
"
zdna
List &&
zdna
List.length === 0"
>
<div
v-show=
"
cpg
List &&
cpg
List.length === 0"
>
<p
class=
"alert alert-warning"
>
No CpG islands found.
</p>
@@ -141,7 +141,7 @@ export default {
data
()
{
return
{
sequence
:
null
,
zdna
List
:
null
,
cpg
List
:
null
,
avgZdnaLen
:
null
,
totalZdnaLenM1
:
null
,
totalZdnaLenM2
:
null
,
@@ -181,7 +181,7 @@ export default {
.
then
(
response
=>
{
this
.
$refs
.
pagination
.
setPageCount
(
response
.
data
.
page
.
totalElements
)
Helpers
.
setUIState
(
response
.
data
.
items
,
'
showDetails
'
,
false
)
this
.
zdna
List
=
response
.
data
.
items
this
.
cpg
List
=
response
.
data
.
items
this
.
countNucleic
()
})
},