Skip to content

Commit e224958

Browse files
committed
Add assayName param to CiteSeqWnn
1 parent fddaca3 commit e224958

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package org.labkey.singlecell.pipeline.singlecell;
22

3+
import org.json.JSONObject;
34
import org.labkey.api.sequenceanalysis.pipeline.AbstractPipelineStepProvider;
45
import org.labkey.api.sequenceanalysis.pipeline.PipelineContext;
6+
import org.labkey.api.singlecell.pipeline.SeuratToolParameter;
57
import org.labkey.api.singlecell.pipeline.SingleCellStep;
68

7-
import java.util.Arrays;
89
import java.util.List;
910

1011
public class CiteSeqWnn extends AbstractCellMembraneStep
@@ -18,7 +19,11 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
1819
{
1920
public Provider()
2021
{
21-
super("CiteSeqWnn", "Seurat WNN", "Seurat", "This will run DimRedux steps on the ADT data.", List.of(), null, null);
22+
super("CiteSeqWnn", "Seurat WNN", "Seurat", "This will run DimRedux steps on the ADT data.", List.of(
23+
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textfield", new JSONObject(){{
24+
25+
}}, "ADT")
26+
), null, null);
2227
}
2328

2429
@Override

0 commit comments

Comments
 (0)