system_genetics/rnaseq/step1_fastqc/snippet.sh

6 lines
151 B
Bash

# The command to do a FastQC on a fastq file is
file="file_to_analyse.fq.gz"
fastqc_out="./path/to/fastqc/output/dir"
fastqc -o "$fastqc_out" "$file"