Skip to content

Commit 2f911ad

Browse files
committed
Bugfix MarkDuplicatesWithMateCigar
1 parent 1a93d3b commit 2f911ad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/PrepareAlignerIndexesTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ private RecordedAction ensureIndexExists() throws PipelineJobException
177177
getHelper().getFileManager().addInput(action, IndexOutputImpl.REFERENCE_DB_FASTA, refFasta);
178178

179179
FastaIndexer indexer = new FastaIndexer(getJob().getLogger());
180-
File refFastaIndex = indexer.getExpectedIndexName(refFasta);
180+
File refFastaIndex = FastaIndexer.getExpectedIndexName(refFasta);
181181
if (!refFastaIndex.exists())
182182
{
183183
indexer.execute(refFasta);

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/bampostprocessing/MarkDuplicatesWithMateCigarStep.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import org.labkey.api.sequenceanalysis.pipeline.ToolParameterDescriptor;
1414
import org.labkey.api.sequenceanalysis.run.AbstractCommandPipelineStep;
1515
import org.labkey.api.util.FileUtil;
16-
import org.labkey.sequenceanalysis.run.util.MarkDuplicatesWrapper;
16+
import org.labkey.sequenceanalysis.run.util.MarkDuplicatesWithMateCigarWrapper;
1717

1818
import java.io.File;
1919
import java.util.Arrays;
@@ -23,11 +23,11 @@
2323
* Date: 6/15/2014
2424
* Time: 4:44 PM
2525
*/
26-
public class MarkDuplicatesWithMateCigarStep extends AbstractCommandPipelineStep<MarkDuplicatesWrapper> implements BamProcessingStep
26+
public class MarkDuplicatesWithMateCigarStep extends AbstractCommandPipelineStep<MarkDuplicatesWithMateCigarWrapper> implements BamProcessingStep
2727
{
2828
public MarkDuplicatesWithMateCigarStep(PipelineStepProvider provider, PipelineContext ctx)
2929
{
30-
super(provider, ctx, new MarkDuplicatesWrapper(ctx.getLogger()));
30+
super(provider, ctx, new MarkDuplicatesWithMateCigarWrapper(ctx.getLogger()));
3131
}
3232

3333
public static class Provider extends AbstractPipelineStepProvider<MarkDuplicatesWithMateCigarStep>

0 commit comments

Comments
 (0)