Skip to content

Commit c4decc0

Browse files
committed
Fixes #533
1 parent b19b271 commit c4decc0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

EnrichmentMapPlugin/src/main/java/org/baderlab/csplugins/enrichmentmap/parsers/RanksFileReaderTask.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ public void parse(TaskMonitor taskMonitor) throws IOException {
153153
}
154154

155155
String[] tokens = line.split("\t");
156+
if(tokens.length == 0) {
157+
continue;
158+
}
156159

157160
String name = tokens[0].toUpperCase();
158161
double score = 0;

0 commit comments

Comments
 (0)