Skip to content

Commit e1ae2ea

Browse files
committed
Add ManageVersion: false to modules
1 parent 9334676 commit e1ae2ea

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

discvrcore/module.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ Description: This is the base module for the DISCVR familiy of modules. It conta
44
URL: https://github.com/BimberLab/DiscvrLabKeyModules
55
License: Apache 2.0
66
LicenseURL: http://www.apache.org/licenses/LICENSE-2.0
7+
ManageVersion: false

singlecell/module.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ Description: A module for analysis of single-cell sequencing data.
44
URL: https://github.com/BimberLab/DiscvrLabKeyModules
55
License: Apache 2.0
66
LicenseURL: http://www.apache.org/licenses/LICENSE-2.0
7+
ManageVersion: false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package org.labkey.singlecell.pipeline.singlecell;
2+
3+
public class Downsample
4+
{
5+
}

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ public interface SingleCellStep extends PipelineStep
1010
{
1111
public Collection<String> getLibraries();
1212

13-
public Output appendToMarkdown(PrintWriter writer, List<String> seuratVariables, SeuratContext ctx);
13+
public void writeComments(PrintWriter writer, List<String> seuratVariables, SeuratContext ctx);
1414

15+
public Output appendToMarkdown(PrintWriter writer, List<String> seuratVariables, SeuratContext ctx);
1516

1617
public interface Output
1718
{

0 commit comments

Comments
 (0)