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:
d28fba7
)
JAL-2157 bugfix for regression from commit 82a6c8e2e25b7534168b68b2c89b9cf195f815a5
author
tcofoegbu
<tcnofoegbu@dundee.ac.uk>
Mon, 25 Jul 2016 14:05:01 +0000
(15:05 +0100)
committer
tcofoegbu
<tcnofoegbu@dundee.ac.uk>
Mon, 25 Jul 2016 14:05:01 +0000
(15:05 +0100)
src/jalview/io/AppletFormatAdapter.java
patch
|
blob
|
history
diff --git
a/src/jalview/io/AppletFormatAdapter.java
b/src/jalview/io/AppletFormatAdapter.java
index
2243a5c
..
d62de27
100755
(executable)
--- a/
src/jalview/io/AppletFormatAdapter.java
+++ b/
src/jalview/io/AppletFormatAdapter.java
@@
-303,7
+303,7
@@
public class AppletFormatAdapter
}
((StructureFile) alignFile).setDbRefType(format);
}
- else if (format.equals("mmCIF"))
+ else if (format.equalsIgnoreCase("mmCIF"))
{
StructureImportSettings.addSettings(annotFromStructure,
localSecondaryStruct, serviceSecondaryStruct);
@@
-453,7
+453,7
@@
public class AppletFormatAdapter
}
((StructureFile) alignFile).setDbRefType(Type.PDB);
}
- else if (format.equals("mmCIF"))
+ else if (format.equalsIgnoreCase("mmCIF"))
{
StructureImportSettings.addSettings(annotFromStructure,
localSecondaryStruct, serviceSecondaryStruct);