Skip to content

Commit 1806f8f

Browse files
committed
Allow ConvertToCramHandler to submit jobs to source workbook(s)
1 parent 58c0b67 commit 1806f8f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/ConvertToCramHandler.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ public ConvertToCramHandler()
2929
super(ModuleLoader.getInstance().getModule(SequenceAnalysisModule.class), "Convert To Cram", "This will convert a BAM file to CRAM, replacing the original", null, Arrays.asList(
3030
ToolParameterDescriptor.create("replaceOriginal", "Replace Original File", "If selected, the input BAM will be deleted and the database record will be switched to use this filepath.", "checkbox", new JSONObject(){{
3131
put("checked", true);
32-
}}, true))
32+
}}, true),
33+
ToolParameterDescriptor.create("useOutputFileContainer", "Submit to Source File Workbook", "If checked, each job will be submitted to the same workbook as the input file, as opposed to submitting all jobs to the same workbook. This is primarily useful if submitting a large batch of files to process separately. This only applies if 'Run Separately' is selected.", "checkbox", new JSONObject(){{
34+
put("checked", true);
35+
}}, true)
36+
)
3337
);
3438
}
3539

0 commit comments

Comments
 (0)