Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Labels:None
Description
- Load h_sapiens
- chr1
- Data Access tab selected
- select top 3 icons (forward strand) at 145,413,190 (see attached)
- select Selection Info tab
- select Sliced View tab
it throws a NPE. I fixed it in two places
GileTypeHolder.java
public FileTypeHandler getFileTypeHandlerForURI(String uri) {
if (uri == null)
// code
. . .
and
GeneralUtils.java
public static String stripEndings(String name) {
for (int i=0; i<compression_endings.length; i++) {
String ending = compression_endings[i].toLowerCase();
if (name != null && name.toLowerCase().endsWith(ending)) { // "name != null && " added
when I make these changes, then try again, the Alt Splice View loops
Attachments
Issue Links
- relates to
-
BUG-661 Sliced View
-
- Closed
-