You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -39,16 +41,16 @@ public class ConvertToCramHandler extends AbstractParameterizedOutputHandler<Seq
39
41
publicConvertToCramHandler()
40
42
{
41
43
super(ModuleLoader.getInstance().getModule(SequenceAnalysisModule.class), "Convert To Cram", "This will convert a BAM file to CRAM, replacing the original", null, Arrays.asList(
42
-
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", newJSONObject(){{
43
-
put("checked", true);
44
-
}}, true),
45
-
ToolParameterDescriptor.create("doCramArchivalMode", "CRAM Archival Mode", "If selected, the CRAM will undergo additional compression to save space. This is lossy and may not be compatible with all downstream tools. See samtools view --output-fmt-option archive", "checkbox", newJSONObject(){{
46
-
put("checked", false);
47
-
}}, false),
48
-
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", newJSONObject(){{
49
-
put("checked", true);
50
-
}}, true)
51
-
)
44
+
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", newJSONObject(){{
45
+
put("checked", true);
46
+
}}, true),
47
+
ToolParameterDescriptor.create("doCramArchivalMode", "CRAM Archival Mode", "If selected, the CRAM will undergo additional compression to save space. This is lossy and may not be compatible with all downstream tools. See samtools view --output-fmt-option archive", "checkbox", newJSONObject(){{
48
+
put("checked", false);
49
+
}}, false),
50
+
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", newJSONObject(){{
51
+
put("checked", true);
52
+
}}, true)
53
+
)
52
54
);
53
55
}
54
56
@@ -94,7 +96,7 @@ public SequenceOutputProcessor getProcessor()
0 commit comments