We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528f706 commit 0a39d66Copy full SHA for 0a39d66
singlecell/src/org/labkey/singlecell/pipeline/singlecell/AvgExpression.java
@@ -7,6 +7,9 @@
7
import org.labkey.api.singlecell.pipeline.SingleCellStep;
8
9
import java.util.Arrays;
10
+import java.util.Collection;
11
+import java.util.HashSet;
12
+import java.util.Set;
13
14
public class AvgExpression extends AbstractRDiscvrStep
15
{
@@ -49,5 +52,17 @@ public boolean createsSeuratObjects()
49
52
50
53
return true;
51
54
}
55
+
56
+ @Override
57
+ public Collection<String> getRLibraries()
58
+ {
59
+ Set<String> ret = new HashSet<>();
60
+ ret.add("Seurat");
61
+ ret.add("dplyr");
62
+ ret.addAll(super.getRLibraries());
63
64
+ return ret;
65
+ }
66
67
68
0 commit comments