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
Copy file name to clipboardExpand all lines: mGAP/src/org/labkey/mgap/pipeline/GenerateMgapTracksStep.java
+3-12Lines changed: 3 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -75,8 +75,9 @@ public static class Provider extends AbstractVariantProcessingStepProvider<Gener
75
75
publicProvider()
76
76
{
77
77
super("GenerateMgapTracksStep", "Generate mGAP Tracks", "GenerateMgapTracksStep", "This will use the set of sample IDs from the table mgap.releaseTrackSubsets to subset the input VCF and produce one VCF per track. It will perform basic validation and also update mgap.releaseTracks.", Arrays.asList(
78
-
ToolParameterDescriptor.create("releaseVersion", "mGAP Version", "This is the string that was used to annotate novel variants.", "textfield", newJSONObject(){{
78
+
ToolParameterDescriptor.create("releaseVersion", "mGAP Version", "This is the string that was used to annotate novel variants.", "ldk-numberfield", newJSONObject(){{
Copy file name to clipboardExpand all lines: mGAP/src/org/labkey/mgap/pipeline/mGapReleaseGenerator.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -99,8 +99,10 @@ public class mGapReleaseGenerator extends AbstractParameterizedOutputHandler<Seq
99
99
publicmGapReleaseGenerator()
100
100
{
101
101
super(ModuleLoader.getInstance().getModule(mGAPModule.class), "Create mGAP Release", "This will prepare an input VCF for use as an mGAP public release. This will optionally include: removing excess annotations and program records, limiting to SNVs (optional) and removing genotype data (optional). If genotypes are retained, the subject names will be checked for mGAP aliases and replaced as needed.", newLinkedHashSet<>(PageFlowUtil.set("sequenceanalysis/field/GenomeFileSelectorField.js")), Arrays.asList(
102
-
ToolParameterDescriptor.create("releaseVersion", "Version", "This string will be used as the version when published.", "textfield", newJSONObject(){{
102
+
ToolParameterDescriptor.create("releaseVersion", "Version", "This value will be used as the version when published.", "ldk-numberfield", newJSONObject(){{
103
103
put("allowBlank", false);
104
+
put("decimalPrecision", 1);
105
+
put("doNotIncludeInTemplates", true);
104
106
}}, null),
105
107
ToolParameterDescriptor.createExpDataParam("gtfFile", "GTF File", "The gene file used to create these annotations.", "sequenceanalysis-genomefileselectorfield", newJSONObject()
0 commit comments