annotate SeqSero2S/bin/deinterleave_fastq.sh @ 19:cfc91e1d2c9b draft

planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
author jpayne
date Fri, 15 May 2026 17:50:45 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
1 #!/bin/bash
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
2 # Usage: deinterleave_fastq.sh < interleaved.fastq f.fastq r.fastq [compress]
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
3 #
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
4 # Deinterleaves a FASTQ file of paired reads into two FASTQ
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
5 # files specified on the command line. Optionally GZip compresses the output
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
6 # FASTQ files using pigz if the 3rd command line argument is the word "compress"
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
7 #
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
8 # Can deinterleave 100 million paired reads (200 million total
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
9 # reads; a 43Gbyte file), in memory (/dev/shm), in 4m15s (255s)
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
10 #
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
11 # Latest code: https://gist.github.com/3521724
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
12 # Also see my interleaving script: https://gist.github.com/4544979
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
13 #
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
14 # Inspired by Torsten Seemann's blog post:
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
15 # http://thegenomefactory.blogspot.com.au/2012/05/cool-use-of-unix-paste-with-ngs.html
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
16
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
17 # Set up some defaults
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
18 GZIP_OUTPUT=0
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
19 PIGZ_COMPRESSION_THREADS=10
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
20
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
21 # If the third argument is the word "compress" then we'll compress the output using pigz
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
22 if [[ $3 == "compress" ]]; then
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
23 GZIP_OUTPUT=1
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
24 fi
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
25
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
26 if [[ ${GZIP_OUTPUT} == 0 ]]; then
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
27 paste - - - - - - - - | tee >(cut -f 1-4 | tr "\t" "\n" > $1) | cut -f 5-8 | tr "\t" "\n" > $2
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
28 else
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
29 paste - - - - - - - - | tee >(cut -f 1-4 | tr "\t" "\n" | pigz --best --processes ${PIGZ_COMPRESSION_THREADS} > $1) | cut -f 5-8 | tr "\t" "\n" | pigz --best --processes ${PIGZ_COMPRESSION_THREADS} > $2
cfc91e1d2c9b planemo upload commit 936a627c4fc706080f07ec678f89e8256a7e7895
jpayne
parents:
diff changeset
30 fi