Skip to content

Commit 799a2f1

Browse files
committed
Drop redundant param
1 parent 4816383 commit 799a2f1

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@ public static class Provider extends AbstractAlignmentStepProvider<AlignmentStep
3535
public Provider()
3636
{
3737
super("velocyto", "This will run velocyto to generate a supplemental feature count matrix", getCellRangerGexParams(Arrays.asList(
38-
ToolParameterDescriptor.createExpDataParam("gtf", "Gene File", "This is the ID of a GTF file containing genes from this genome.", "sequenceanalysis-genomefileselectorfield", new JSONObject()
39-
{{
40-
put("extensions", Arrays.asList("gtf"));
41-
put("width", 400);
42-
put("allowBlank", false);
43-
}}, null),
4438
ToolParameterDescriptor.createExpDataParam("mask", "Mask File", "This is the ID of an optional GTF file containing repetitive regions to mask.", "sequenceanalysis-genomefileselectorfield", new JSONObject()
4539
{{
4640
put("extensions", Arrays.asList("gtf"));
@@ -63,7 +57,7 @@ public AlignmentOutput performAlignment(Readset rs, List<File> inputFastqs1, @Nu
6357
AlignmentOutputImpl output = new AlignmentOutputImpl();
6458
File localBam = runCellRanger(output, rs, inputFastqs1, inputFastqs2, outputDirectory, referenceGenome, basename, readGroupId, platformUnit);
6559

66-
File gtf = getPipelineCtx().getSequenceSupport().getCachedData(getProvider().getParameterByName("gtf").extractValue(getPipelineCtx().getJob(), getProvider(), getStepIdx(), Integer.class));
60+
File gtf = getPipelineCtx().getSequenceSupport().getCachedData(getProvider().getParameterByName("gtfFile").extractValue(getPipelineCtx().getJob(), getProvider(), getStepIdx(), Integer.class));
6761
if (gtf == null)
6862
{
6963
throw new PipelineJobException("Missing GTF file param");

0 commit comments

Comments
 (0)