forked from GRIAC/system_genetics
6 lines
151 B
Bash
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"
|