Skip to content

Commit 757eb8c

Browse files
committed
set version to v0.3.0
1 parent 5347293 commit 757eb8c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ options:
5454
-t, --trim_tail1 trimming how many bases in tail for read1, default is 0 (int [=0])
5555
-F, --trim_front2 trimming how many bases in front for read2. If it's not specified, it will follow read1's settings (int [=0])
5656
-T, --trim_tail2 trimming how many bases in tail for read2. If it's not specified, it will follow read1's settings (int [=0])
57+
-5, --cut_by_quality5 enable per read cutting by quality in front (5'), default is disabled (WARNING: this will interfere deduplication for both PE/SE data)
58+
-3, --cut_by_quality3 enable per read cutting by quality in tail (3'), default is disabled (WARNING: this will interfere deduplication for SE data)
59+
-W, --cut_window_size the size of the sliding window for sliding window trimming, default is 4 (int [=4])
60+
-M, --cut_mean_quality the bases in the sliding window with mean quality below cutting_quality will be cut, default is Q20 (int [=20])
5761
-Q, --disable_quality_filtering quality filtering is enabled by default. If this option is enabled, quality filtering is disabled
5862
-q, --qualified_quality_phred the quality value that a base is qualified. Default 15 means phred quality >=Q15 is qualified. (int [=15])
5963
-u, --unqualified_percent_limit how many percents of bases are allowed to be unqualified (0~100). Default 40 means 40% (int [=40])
@@ -64,5 +68,5 @@ options:
6468
-w, --thread worker thread number, default is 3 (int [=3])
6569
-s, --split if this option is specified, the output will be split to multiple (--split) files (i.e. 0001.out.fq, 0002.out.fq...). (int [=0])
6670
-d, --split_prefix_digits the digits for the slice number padding (1~10), default is 4, so the filename will be padded as 0001.xxx, 0 to disable padding (int [=4])
67-
-?, --help print this message print this message
71+
-?, --help print this message
6872
```

src/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef COMMON_H
22
#define COMMON_H
33

4-
#define FASTP_VER "0.2.0"
4+
#define FASTP_VER "0.3.0"
55

66
#define _DEBUG false
77

0 commit comments

Comments
 (0)