Skip to content

Commit 2bb4aec

Browse files
committed
Correct location of BAM for vireo
1 parent 84bb901 commit 2bb4aec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/src/org/labkey/singlecell/pipeline/singlecell/VireoHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private File getBarcodesFile(File loupe)
102102

103103
private File getBamFile(File loupe)
104104
{
105-
File[] files = loupe.getParentFile().getParentFile().listFiles(f -> f.getName().endsWith(".bam"));
105+
File[] files = loupe.getParentFile().listFiles(f -> f.getName().endsWith(".bam"));
106106
if (files == null || files.length == 0)
107107
{
108108
throw new IllegalArgumentException("Unable to find BAM file for Loupe file");

0 commit comments

Comments
 (0)