Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Wiki
Manage
Activity
Members
Labels
Plan
Issues
53
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MDM Lab
Wiki
Commits
85db52f0
Commit
85db52f0
authored
10 months ago
by
Remi PLANEL
Browse files
Options
Downloads
Patches
Plain Diff
display exchangeables
parent
4f2ce63e
No related branches found
No related tags found
No related merge requests found
Pipeline
#130580
failed with stages
in 11 minutes and 52 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/OperonStructure.vue
+14
-7
14 additions, 7 deletions
components/OperonStructure.vue
with
14 additions
and
7 deletions
components/OperonStructure.vue
+
14
−
7
View file @
85db52f0
...
...
@@ -354,7 +354,10 @@ function drawLinks(operonGroup: d3.Selection<SVGGElement, any, SVGElement | null
.
attr
(
"
d
"
,
d3
.
link
(
d3
.
curveBumpY
))
}
/**
* Using D3, draw image structure if available
* @param operonGroup
*/
function
drawStructure
(
operonGroup
:
d3
.
Selection
<
SVGGElement
,
any
,
SVGElement
|
null
,
any
>
)
{
const
structureNodeVal
=
toValue
(
structureNodes
)
const
structureSelection
=
operonGroup
...
...
@@ -404,7 +407,10 @@ function drawStructure(operonGroup: d3.Selection<SVGGElement, any, SVGElement |
}
/**
* Using D3, draw each gene within the operon
* @param operonGroup
*/
function
drawGenes
(
operonGroup
:
d3
.
Selection
<
SVGGElement
,
any
,
SVGElement
|
null
,
any
>
)
{
const
genesWithCoordVal
=
toValue
(
geneNodesWithY
)
const
genes
=
genesWithCoordVal
...
...
@@ -430,7 +436,6 @@ function drawGenes(operonGroup: d3.Selection<SVGGElement, any, SVGElement | null
geneToHighlight
.
value
=
null
})
gGene
.
append
(
"
path
"
)
.
classed
(
"
gene
"
,
true
)
...
...
@@ -440,9 +445,6 @@ function drawGenes(operonGroup: d3.Selection<SVGGElement, any, SVGElement | null
.
classed
(
"
gene-label
"
,
true
)
.
attr
(
"
fill
"
,
"
currentColor
"
)
.
attr
(
"
dominant-baseline
"
,
"
middle
"
)
return
gGene
},
update
=>
update
,
...
...
@@ -482,11 +484,16 @@ function operonTitle(d: StructureOperonGeneWithCoordinate) {
function
geneTitle
(
d
:
StructureOperonGeneWithCoordinate
)
{
if
(
d
?.
exchangeables
&&
d
.
exchangeables
?.
length
>
0
)
{
return
`\nExchangeables:
${
d
.
exchangeables
.
map
(
d
=>
d
.
split
(
"
__
"
)[
1
]).
join
(
"
,
"
)}
`
return
`\nExchangeables:
${
d
.
exchangeables
.
join
(
"
,
"
)}
`
}
return
''
}
/**
* using d3, draw the label for each genes within operon
* @param operonGroup
*/
function
drawGenesLabel
(
operonGroup
:
d3
.
Selection
<
SVGGElement
,
any
,
SVGElement
|
null
,
any
>
)
{
const
genes
=
toValue
(
genesLabel
)
const
updateSelection
=
operonGroup
...
...
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