Skip to content

Commit 36f1f77

Browse files
committed
2prev
1 parent b01104f commit 36f1f77

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/main/groovy/com/milaboratory/migec/Assemble.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ cli.h("usage")
3434
cli.q(args: 1, argName: "read quality (phred)",
3535
"barcode region quality threshold. Default: $Util.DEFAULT_UMI_QUAL_THRESHOLD")
3636
cli._(longOpt: "mask", args: 1, argName: "X:Y, X=0/1, Y=0/1",
37-
"Mask for read(s) in pair that should be assembled. Default: \"$DEFAULT_ASSEMBLE_MASK\".")
37+
"Mask for read(s) in pair that should be assembled. Default: $DEFAULT_ASSEMBLE_MASK.")
3838
cli.p(args: 1,
3939
"number of threads to use. Default: all available processors")
4040
cli.c("compressed output")

src/main/groovy/com/milaboratory/migec/AssembleBatch.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ def DEFAULT_ASSEMBLE_MASK = "1:1", DEFAULT_PARENT_CHILD_RATIO = "0.1",
2323
def cli = new CliBuilder(usage: 'AssembleBatch [options] checkout_dir/ histogram_dir/ output_dir/')
2424
cli.h("usage")
2525
cli.p(args: 1, 'number of threads to use')
26-
cli._(longOpt: 'default-mask', args: 1, "Mask, default for all samples, see --sample-metadata")
26+
cli._(longOpt: 'default-mask', args: 1, "Mask, default for all samples, see --sample-metadata. " +
27+
"Default: $DEFAULT_ASSEMBLE_MASK.")
2728
cli._(longOpt: 'sample-metadata', args: 1, argName: 'file name',
2829
"A tab-delimited file indicating which samples to process and containing three columns:\n" +
2930
"sample_name (tab) file_type (tab) mask\n" +

0 commit comments

Comments
 (0)