Skip to content

Commit e23af27

Browse files
committed
Minor usage clarification
Closes github issue #9
1 parent acd2521 commit e23af27

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

docs/usage.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ OPTIONS:
1212
-2, --trim-r2 Trim barcode from R2 read as well as R1. [flag, default OFF]
1313
-b, --barcodes Barcode file. See --help for example. [file]
1414
-f, --fwd-in Input forward read. [file]
15-
-F, --fwd-out Output forward read prefix. [file]
15+
-F, --fwd-out Output forward read prefix. [file prefix or existing directory]
1616
-r, --rev-in Input reverse read. [file]
17-
-R, --rev-out Output reverse read prefix. [file]
17+
-R, --rev-out Output reverse read prefix. [file prefix or existing directory]
1818
-i, --ilfq-in Input interleaved paired reads. [file]
19-
-I, --ilfq-out Output interleaved paired reads prefix. [file]
19+
-I, --ilfq-out Output interleaved paired reads prefix. [file prefix or existing directory]
2020
-t, --table-file Output a summary table of demultiplexing statistics to file. [file]
2121
-h, --help Print this usage plus additional help.
2222
-V, --version Print version string.
2323
-v, --verbose Be more verbose. Additive, -vv is more vebose than -v.
2424
-q, --quiet Be very quiet.
25+

src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ print_usage(FILE *stream)
8181
fprintf(stream, " -2, --trim-r2\tTrim barcode from R2 read as well as R1. [flag, default OFF]\n");
8282
fprintf(stream, " -b, --barcodes\tBarcode file. See --help for example. [file]\n");
8383
fprintf(stream, " -f, --fwd-in\tInput forward read. [file]\n");
84-
fprintf(stream, " -F, --fwd-out\tOutput forward read prefix. [file]\n");
84+
fprintf(stream, " -F, --fwd-out\tOutput forward read prefix. [file prefix or existing directory]\n");
8585
fprintf(stream, " -r, --rev-in\tInput reverse read. [file]\n");
86-
fprintf(stream, " -R, --rev-out\tOutput reverse read prefix. [file]\n");
86+
fprintf(stream, " -R, --rev-out\tOutput reverse read prefix. [file prefix or existing directory]\n");
8787
fprintf(stream, " -i, --ilfq-in\tInput interleaved paired reads. [file]\n");
88-
fprintf(stream, " -I, --ilfq-out\tOutput interleaved paired reads prefix. [file]\n");
88+
fprintf(stream, " -I, --ilfq-out\tOutput interleaved paired reads prefix. [file prefix or existing directory]\n");
8989
fprintf(stream, " -t, --table-file\tOutput a summary table of demultiplexing statistics to file. [file]\n");
9090
fprintf(stream, " -h, --help\t\tPrint this usage plus additional help.\n");
9191
fprintf(stream, " -V, --version\tPrint version string.\n");

0 commit comments

Comments
 (0)