...
Login to ls5 at TACC. Execute these commands to to set up access to the multiqc binary:
Code Block | ||
---|---|---|
| ||
module load python export PATH="/work/projects/BioITeam/ls5/bin/multiqc-1.0:$PATH" export PYTHONPATH="/work/projects/BioITeam/ls5/lib/python2.7/siteannab-packages:$PYTHONPATH" |
Code Block | ||
---|---|---|
| ||
mkdir -p $SCRATCH/byteclub/multiqc |
...
# make sure it is working...
multiqc --help |
Produce a consolidated FastQC report
...
This is where MultiQC's power comes in. You can point MultiQC to a directory where FastQC has been run and it will magically produce a consolidated report.
For example, logged in to ls5 at TACC, first stage a directory where FastQC has been run:
Code Block | ||
---|---|---|
| ||
mkdir -p $SCRATCH/byteclub/multiqc/01_fastq
cd $SCRATCH/byteclub/multiqc/01_fastq
ln -s -f /work/01063/abattenh/projects/byteclub/multiqc/fastqc
ln -s -f $SCRATCH ~/scratch |
Now this is all it takes to produce a basic MultiQC report:
Code Block | ||
---|---|---|
| ||
cd $SCRATCH/byteclub/multiqc/01_fastq multiqc . |