Skip to content

Commit 8f61e90

Browse files
committed
Allow velocyto mask param to be null
1 parent 799a2f1 commit 8f61e90

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public Provider()
3939
{{
4040
put("extensions", Arrays.asList("gtf"));
4141
put("width", 400);
42-
put("allowBlank", false);
42+
put("allowBlank", true);
4343
}}, null)
4444
)), new LinkedHashSet<>(PageFlowUtil.set("sequenceanalysis/field/GenomeFileSelectorField.js")), null, true, false, ALIGNMENT_MODE.MERGE_THEN_ALIGN);
4545
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public Provider()
4040
{{
4141
put("extensions", Arrays.asList("gtf"));
4242
put("width", 400);
43-
put("allowBlank", false);
43+
put("allowBlank", true);
4444
}}, null)
4545
), new LinkedHashSet<>(PageFlowUtil.set("sequenceanalysis/field/GenomeFileSelectorField.js")), null);
4646
}

0 commit comments

Comments
 (0)