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
09ec2c71
Commit
09ec2c71
authored
May 15, 2019
by
Thonier Florian
Browse files
clone.js, bug fix in getSegNtSequence (1based variation)
link to
#3488
parent
ed299a22
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/clone.js
View file @
09ec2c71
...
...
@@ -273,7 +273,7 @@ Clone.prototype = {
getSegNtSequence
:
function
(
field_name
)
{
positions
=
this
.
getSegStartStop
(
field_name
)
if
(
positions
!==
null
)
{
return
this
.
sequence
.
substr
(
positions
.
start
-
1
,
positions
.
stop
-
positions
.
start
+
1
)
return
this
.
sequence
.
substr
(
positions
.
start
,
positions
.
stop
-
positions
.
start
+
1
)
}
return
''
;
},
...
...
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