Skip to content

Commit 7ac1e68

Browse files
committed
fix a typo of split
1 parent e780193 commit 7ac1e68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This tool is designed to provide fast all-in-one preprocessing for FastQ files.
77
* correct mismatched base pairs in overlapped regions of paired end reads, if one base is with high quality while the other is with ultra low quality
88
* report JSON format result for further interpreting.
99
* visualize quality control and filtering results on a single HTML page (like FASTQC but faster and more informative).
10-
* split the output to multiple files (0001.R1.gz, 0002.R1.gz...) to support parallel processing. Two modes can be used, limiting the total splitted file number, or limitting the lines of each splitted file.
10+
* split the output to multiple files (0001.R1.gz, 0002.R1.gz...) to support parallel processing. Two modes can be used, limiting the total split file number, or limitting the lines of each split file.
1111
* support long reads (data from PacBio / Nanopore devices).
1212
* ...
1313

@@ -97,7 +97,7 @@ options:
9797
-w, --thread worker thread number, default is 3 (int [=3])
9898

9999
# output splitting options
100-
-s, --split split output by limiting total splitted file number with this option (2~999), a sequential number prefix will be added to output name ( 0001.out.fq, 0002.out.fq...), disabled by default (int [=0])
100+
-s, --split split output by limiting total split file number with this option (2~999), a sequential number prefix will be added to output name ( 0001.out.fq, 0002.out.fq...), disabled by default (int [=0])
101101
-S, --split_by_lines split output by limiting lines of each file with this option(>=1000), a sequential number prefix will be added to output name ( 0001.out.fq, 0002.out.fq...), disabled by default (long [=0])
102102
-d, --split_prefix_digits the digits for the sequential number padding (1~10), default is 4, so the filename will be padded as 0001.xxx, 0 to disable padding (int [=4])
103103

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int main(int argc, char* argv[]){
6767
cmd.add<int>("thread", 'w', "worker thread number, default is 3", false, 3);
6868

6969
// split the output
70-
cmd.add<int>("split", 's', "split output by limiting total splitted file number with this option (2~999), a sequential number prefix will be added to output name ( 0001.out.fq, 0002.out.fq...), disabled by default", false, 0);
70+
cmd.add<int>("split", 's', "split output by limiting total split file number with this option (2~999), a sequential number prefix will be added to output name ( 0001.out.fq, 0002.out.fq...), disabled by default", false, 0);
7171
cmd.add<long>("split_by_lines", 'S', "split output by limiting lines of each file with this option(>=1000), a sequential number prefix will be added to output name ( 0001.out.fq, 0002.out.fq...), disabled by default", false, 0);
7272
cmd.add<int>("split_prefix_digits", 'd', "the digits for the sequential number padding (1~10), default is 4, so the filename will be padded as 0001.xxx, 0 to disable padding", false, 4);
7373

0 commit comments

Comments
 (0)