system_genetics/rnaseq/step1_fastqc/snippet.sh

6 lines
151 B
Bash
Raw Normal View History

# The command to do a FastQC on a fastq file is
file="file_to_analyse.fq.gz"
fastqc_out="./path/to/fastqc/output/dir"
2021-02-09 12:52:44 +01:00
fastqc -o "$fastqc_out" "$file"