Skip to content

Commit 60e4081

Browse files
committed
Update TagPcr to match new argument name
1 parent 9b83698 commit 60e4081

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/preprocessing/TagPcrSummaryStep.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ public Provider()
7272
ToolParameterDescriptor.create(OUTPUT_GENBANK, "Create Genbank Output", "If selected, this will output a genbank file summarizing amplicons and primers", "checkbox", new JSONObject(){{
7373
put("checked", true);
7474
}}, true),
75-
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--insert-type"), "insertType", "Insert Type", "The type of insert to detect.", "ldk-simplecombo", new JSONObject(){{
75+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--insert-name"), "insertType", "Insert Type", "The type of insert to detect.", "ldk-simplecombo", new JSONObject(){{
7676
put("storeValues", "PiggyBac;Lentivirus");
7777
put("allowBlank", false);
7878
}}, "PiggyBac"),
7979
ToolParameterDescriptor.create(DESIGN_PRIMERS, "Design Primers", "If selected, Primer3 will be used to design primers to flank integration sites", "checkbox", new JSONObject(){{
80-
put("checked", true);
81-
}}, true),
80+
put("checked", false);
81+
}}, false),
8282
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--reads-to-output"), "readsToOutput", "Reads To Output Per Site", "If this is non-zero, up to this many reads per integration site will be written to a FASTA file. This can serve as a way to verify the actual junction border.", "ldk-integerfield", new JSONObject(){{
8383
put("minValue", 0);
8484
}}, null),

0 commit comments

Comments
 (0)