Skip to content

Commit 600cda3

Browse files
committed
Bugfix to NimbleAlignmentStep
1 parent 2253e02 commit 600cda3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/src/org/labkey/singlecell/run/NimbleAlignmentStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private File getCachedBarcodeFile(Readset rs, boolean throwIfNotFound) throws Pi
140140

141141
private File getUmiMapping(File cellbarcodeFile) throws PipelineJobException
142142
{
143-
File ret = new File(cellbarcodeFile.getPath().replaceAll(".cb.txt.gz", ".umi.txt.gz"));
143+
File ret = new File(cellbarcodeFile.getPath().replaceAll("cb.txt.gz", "umi.txt.gz"));
144144
if (ret == null || ! ret.exists())
145145
{
146146
throw new PipelineJobException("Missing cached UMI file: " + ret.getPath());

0 commit comments

Comments
 (0)