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
1f47e380
Commit
1f47e380
authored
Apr 14, 2016
by
Mathieu Giraud
Browse files
js/list.js: search also looks for CDR3 AA sequence
parent
0b8fd342
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/js/list.js
View file @
1f47e380
...
...
@@ -722,6 +722,7 @@ List.prototype = {
var
c
=
this
.
m
.
clone
(
i
)
if
(
c
.
getName
().
toUpperCase
().
indexOf
(
str
.
toUpperCase
())
!=-
1
)
c
.
isFiltered
=
false
if
(
c
.
getSequence
().
toUpperCase
().
indexOf
(
str
.
toUpperCase
())
!=-
1
)
c
.
isFiltered
=
false
if
(
c
.
getSegAASequence
(
'
cdr3
'
).
toUpperCase
().
indexOf
(
str
.
toUpperCase
())
!=-
1
)
c
.
isFiltered
=
false
if
(
c
.
getRevCompSequence
().
toUpperCase
().
indexOf
(
str
.
toUpperCase
())
!=-
1
)
c
.
isFiltered
=
false
if
(
c
.
getSequenceName
().
toUpperCase
().
indexOf
(
str
.
toUpperCase
())
!=-
1
)
c
.
isFiltered
=
false
}
...
...
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