You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,7 @@ For example, the last cycle of Illumina sequencing is uaually with low quality,
163
163
164
164
* For read1 or SE data, the front/tail trimming settings are given with `-f, --trim_front1` and `-t, --trim_tail1`.
165
165
* For read2 of PE data, the front/tail trimming settings are given with `-F, --trim_front2` and `-T, --trim_tail2`. But if these options are not specified, they will be as same as read1 options, which means `trim_front2 = trim_front1` and `trim_tail2 = trim_tail1`.
166
-
* If you want to limit the read length, you can specify `-b, --max_len1` for read1, and `-B, --max_len2` for read2. If `--max_len1` is specified but `--max_len2` is not, `--max_len2` will be same as `--max_len1`. For example, if '--max_len1' is specified and read1 is longer than `--max_len1`, `fastp` will trim read1 at its tail to make it as long as `max_len1`.
166
+
* If you want to limit the read length, you can specify `-b, --max_len1` for read1, and `-B, --max_len2` for read2. If `--max_len1` is specified but `--max_len2` is not, `--max_len2` will be same as `--max_len1`. For example, if `--max_len1` is specified and read1 is longer than `--max_len1`, `fastp` will trim read1 at its tail to make it as long as `--max_len1`.
167
167
168
168
Please note that the trimming for `--max_len` limitation will be applied at the last step. Following are fastp's processing steps that may orderly affect the read lengthes:
169
169
```
@@ -175,7 +175,7 @@ Please note that the trimming for `--max_len` limitation will be applied at the
175
175
6, trim polyG (--trim_poly_g, enabled by default for NovaSeq/NextSeq data)
176
176
7, trim polyX (--trim_poly_x)
177
177
8, trim adapter by overlap analysis (enabled by default for PE data)
178
-
9, trim adapter by adapter sequence (--adapter_sequence, --adapter_sequence_r2)
178
+
9, trim adapter by adapter sequence (--adapter_sequence, --adapter_sequence_r2. For PE data, this step is skipped if last step succeeded)
0 commit comments