Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
35e51d4e
Commit
35e51d4e
authored
Dec 13, 2016
by
Mathieu Giraud
Browse files
js/scatterPlot.js, js/clone.js: new axis 'productivity'
parent
d5d58650
Changes
2
Hide whitespace changes
Inline
Side-by-side
browser/js/clone.js
View file @
35e51d4e
...
...
@@ -664,6 +664,12 @@ Clone.prototype = {
return
this
.
m
.
tag
[
this
.
getTag
()].
name
},
getProductivityName
:
function
()
{
if
(
typeof
this
.
seg
.
junction
==
"
undefined
"
)
return
"
no CDR3
"
return
(
this
.
seg
.
junction
.
productive
?
"
productive
"
:
"
not productive
"
)
},
/* compute clone color
*
...
...
browser/js/scatterPlot.js
View file @
35e51d4e
...
...
@@ -147,6 +147,11 @@ function ScatterPlot(id, model, database) {
label
:
"
CDR3 length
"
,
fct
:
function
(
cloneID
)
{
return
self
.
m
.
clone
(
cloneID
).
getSegLength
(
'
cdr3
'
)}
},
"
productivity
"
:
{
label
:
"
productivity
"
,
fct
:
function
(
cloneID
)
{
return
self
.
m
.
clone
(
cloneID
).
getProductivityName
()},
output
:
"
string-sorted
"
},
"
coverage
"
:
{
label
:
"
clone consensus coverage
"
,
fct
:
function
(
cloneID
){
return
self
.
m
.
clone
(
cloneID
).
coverage
},
...
...
Mathieu Giraud
@magiraud
mentioned in issue
#2054 (closed)
·
Dec 13, 2016
mentioned in issue
#2054 (closed)
mentioned in issue #2054
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment