add bash loop to get the number of reads in order to create another "downstream" plot of the total reads ```bash for i in ${fastqs} do zcat $i | grep -c "@" done ```
add bash loop to get the number of reads in order to create another "downstream" plot of the total reads