Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alienzj/c34f2891b2b6581b6b531d33121df5de to your computer and use it in GitHub Desktop.
Save alienzj/c34f2891b2b6581b6b531d33121df5de to your computer and use it in GitHub Desktop.
HARD TRIM
pigz -d -c in.fastq.gz |
| awk 'BEGIN {LN=0; } { if (LN == 1 || LN == 3) { print substr($0, 0, 26) } else { print $0 } ; if (LN == 3) { LN = 0 } else { LN++ } }' \
| pigz -c - > out.fastq.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment