Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
65aad1a6
Commit
65aad1a6
authored
Mar 01, 2017
by
Mathieu Giraud
Browse files
model.js: rename to 'other_quantifiable_clone' to avoid confusion with isVirtual()
parent
683c17fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/model.js
View file @
65aad1a6
...
...
@@ -1076,11 +1076,11 @@ changeCloneNotation: function(cloneNotationType) {
}
// compute size for each germlines of newOthers
virtual
_clones
=
[];
other_quantifiable
_clones
=
[];
for
(
var
pos
=
0
;
pos
<
this
.
clones
.
length
;
pos
++
)
{
var
c
=
this
.
clone
(
pos
)
if
(
c
.
isVirtual
())
{
virtual
_clones
.
push
(
pos
);
other_quantifiable
_clones
.
push
(
pos
);
}
else
if
(
c
.
isActive
())
{
for
(
var
sample
=
0
;
sample
<
this
.
samples
.
number
;
sample
++
)
{
for
(
var
k
=
0
;
k
<
this
.
clusters
[
pos
].
length
;
k
++
)
{
...
...
@@ -1093,7 +1093,7 @@ changeCloneNotation: function(cloneNotationType) {
// values assignation of other
//for (var pos = this.clones.length -lenSA; pos < this.clones.length ; pos++) {
var
self
=
this
;
virtual
_clones
.
forEach
(
function
(
pos
)
{
other_quantifiable
_clones
.
forEach
(
function
(
pos
)
{
var
c
=
self
.
clone
(
pos
);
c
.
reads
=
newOthers
[
c
.
germline
];
c
.
name
=
c
.
germline
+
"
smaller clones
"
;
...
...
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment