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
683c17fe
Commit
683c17fe
authored
Mar 01, 2017
by
Mathieu Giraud
Browse files
model.js: defines c
parent
ef0fe1d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/model.js
View file @
683c17fe
...
...
@@ -1078,12 +1078,13 @@ changeCloneNotation: function(cloneNotationType) {
// compute size for each germlines of newOthers
virtual_clones
=
[];
for
(
var
pos
=
0
;
pos
<
this
.
clones
.
length
;
pos
++
)
{
if
(
this
.
clone
(
pos
).
isVirtual
())
{
var
c
=
this
.
clone
(
pos
)
if
(
c
.
isVirtual
())
{
virtual_clones
.
push
(
pos
);
}
else
if
(
this
.
clone
(
pos
)
.
isActive
())
{
}
else
if
(
c
.
isActive
())
{
for
(
var
sample
=
0
;
sample
<
this
.
samples
.
number
;
sample
++
)
{
for
(
var
k
=
0
;
k
<
this
.
clusters
[
pos
].
length
;
k
++
)
{
newOthers
[
this
.
clone
(
pos
)
.
germline
][
sample
]
-=
this
.
clone
(
this
.
clusters
[
pos
][
k
]).
get
(
'
reads
'
,
sample
);
newOthers
[
c
.
germline
][
sample
]
-=
this
.
clone
(
this
.
clusters
[
pos
][
k
]).
get
(
'
reads
'
,
sample
);
}
}
}
...
...
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