Skip to content

Commit c5631fd

Browse files
committed
STAR output is also TSV
1 parent f02d95f commit c5631fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/analysis/CombineStarGeneCountsHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected void processOutputFiles(CountResults results, List<SequenceOutputFile>
6262
while ((line = reader.readLine()) != null)
6363
{
6464
line = line.trim();
65-
String[] cells = line.split("\\s+");
65+
String[] cells = line.split("\t");
6666
String geneId = cells[0];
6767
if (OTHER_IDS.contains(geneId))
6868
{

0 commit comments

Comments
 (0)