git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9439f3
)
JAL-2038 fix to enable case-insensitive file name <--> sequence id matching during...
author
tcofoegbu
<tcnofoegbu@dundee.ac.uk>
Mon, 30 May 2016 16:01:16 +0000
(17:01 +0100)
committer
tcofoegbu
<tcnofoegbu@dundee.ac.uk>
Mon, 30 May 2016 16:01:16 +0000
(17:01 +0100)
src/jalview/analysis/SequenceIdMatcher.java
patch
|
blob
|
history
diff --git
a/src/jalview/analysis/SequenceIdMatcher.java
b/src/jalview/analysis/SequenceIdMatcher.java
index
70defb0
..
f744ed1
100755
(executable)
--- a/
src/jalview/analysis/SequenceIdMatcher.java
+++ b/
src/jalview/analysis/SequenceIdMatcher.java
@@
-290,7
+290,7
@@
public class SequenceIdMatcher
{
if (s != null)
{
- id = new String(s);
+ id = new String(s.toLowerCase());
}
else
{