Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added examples for use simultaneously use with trimfq of:
a) -e with -E, and 
b) -b with -B.
  • Loading branch information
ndaniel committed Sep 25, 2014
1 parent e5d97e7 commit cbe7863
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,11 @@ Seqtk Examples
* Keep last 50bp from the right end of each read by trimming the left end:

seqtk trimfq -E 50 in.fq > out.fq

* Trim 5bp from left end and keep next 50bp from left end of each read:

seqtk trimfq -B 50 -b 5 in.fq > out.fq

* Trim 5bp from right end and keep the 50bp from right end of each read:

seqtk trimfq -E 50 -e 5 in.fq > out.fq

0 comments on commit cbe7863

Please sign in to comment.