#!/usr/bin/env bash

for file in *.fastq; do fastqc --threads 8 $file; done
