The CSF2 has been replaced by the CSF3 - please use that system! This documentation may be out of date. Please read the CSF3 documentation instead. To display this old CSF2 page click here. |
Quast and MetaQuast
Quast is a program to evaluate genome assemblies. QUAST works both with and without a reference genome. The tool accepts multiple assemblies, thus is suitable for comparison. This installation also includes MetaQuast, which evaluates and compares metagenome assemblies based on alignments to close references, and Icarus, a novel genome visualizer for accurate assessment and analysis of genomic draft assemblies.
Version 4.6.3 is installed on the CSF.
Restrictions on use
Version 4.6.3 of QUAST was released under GPL v2 on 6 February 2018. Note that some of build-in third-party tools are not under GPL v2. See LICENSE for details.
Please cite your usage of the various tools using the citation information on the Quast website.
Set up procedure
To access the software you must first load the modulefile:
module load apps/gcc/python-packages/anaconda3-5.1.0/quast/4.6.3
This will automatically load the Anaconda python modulefile for you, which provides python 3.6.4.
Running the application
Please do not run Quast or MetaQuast on the login node. Jobs should be submitted to the compute nodes via batch.
Serial batch job submission
Make sure you have the modulefile loaded then create a batch submission script, for example:
#!/bin/bash #$ -S /bin/bash #$ -cwd # Job will run from the current directory #$ -V # Job will inherit current environment settings # $NSLOTS will be set to 1 in a serial job. # You MUST inform quast how many cores it can use. quast.py -t $NSLOTS contigs_1.fasta contigs_2.fasta -R reference.fasta.gz -G genes.gff # # Use metaquast.py to run MetaQuast
Submit the jobscript using:
qsub scriptname
where scriptname is the name of your jobscript.
Parallel batch job submission
Make sure you have the modulefile loaded then create a batch submission script, for example:
#!/bin/bash #$ -S /bin/bash #$ -cwd # Job will run from the current directory #$ -V # Job will inherit current environment settings #$ -pe smp.pe 8 # Number of cores (2-24) # $NSLOTS will be set to the number given on the -pe line above. # You MUST inform quast how many cores it can use. quast.py -t $NSLOTS contigs_1.fasta contigs_2.fasta -R reference.fasta.gz -G genes.gff # # Use metaquast.py to run MetaQuast
Submit the jobscript using:
qsub scriptname
where scriptname is the name of your jobscript.
Further info
Updates
None.