Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titlePossible solution using the -z option
collapsetrue
cat SRR030257_1.fastq | fastx_trimmer -l 34 -Q 30 -z > SRR030257_1.trimmed.fastq.gz
Code Block
titlePossible solution using gzip yourself
collapsetrue
cat SRR030257_1.fastq | fastx_trimmer -l 34 -Q 30 | gzip > SRR030257_1.trimmed.fastq.gz

...