ANIclustermap is easy-to-use tool for drawing ANI(Average Nucleotide Identity) clustermap between all-vs-all microbial genomes. ANI between all-vs-all genomes are calculated by fastANI and clustermap is drawn using seaborn.
Fig1. ANI clustermap between all-vs-all 33 genomes.
Fig2. ANI clustermap between all-vs-all 18 genomes. If no similarity detected by fastANI, filled in gray.
ANIclustermap is implemented in Python3. fastANI is required to calculate ANI.
Install bioconda package:
conda install -c bioconda -c conda-forge aniclustermap
Install PyPI stable package:
pip install aniclustermap
Install latest development package:
pip install git+https://github.com/moshi4/ANIclustermap.git
Description of ANIclustermap's automated workflow.
- Calculate ANI between all-vs-all microbial genomes by fastANI.
If no similarity detected by fastANI, NA is output. In that case, NA is replaced by 0.0.
If previous result available at the time of re-run, reuse previous result. - Clustering ANI matrix by scipy's UPGMA method.
- Using clustered matrix, draw ANI clustermap by seaborn.
ANIclustermap -i [Genome fasta directory] -o [output directory]
-h, --help show this help message and exit
-i I, --indir I Input genome fasta directory (*.fa|*.fna[.gz]|*.fasta)
-o O, --outdir O Output directory
-t , --thread_num fastANI thread number parameter (Default: MaxThread - 1)
--fig_width Figure width (Default: 10)
--fig_height Figure height (Default: 10)
--dendrogram_ratio Dendrogram ratio to figsize (Default: 0.15)
--cmap_colors cmap interpolation colors parameter (Default: 'lime,yellow,red')
--cmap_gamma cmap gamma parameter (Default: 1.0)
--cmap_ranges Range values (e.g. 80,90,95,100) for discrete cmap (Default: None)
--annotation Show ANI value annotation (Default: OFF)
-v, --version Print version information
7 genomes minimal dataset. Click here to download dataset (Size=3.6MB).
ANIclustermap -i ./minimal_dataset/ -o ./ANIclustermap_result
ANIclustermap outputs 3 types of files.
-
ANIclustermap.[png|svg]
(example1, example2)
ANI clustermap result figure. -
ANIclustermap_matrix.tsv
(example)
Clustered all-vs-all ANI matrix. -
ANIclustermap_dendrogram.nwk
(example)
Newick format clustering dendrogram.
Example gallery of 33 genomes normal dataset.
If you want to try it for yourself, click here to donwload dataset (Size=63.5MB).
Normal parameter:
ANIclustermap -i ./normal_dataset -o ./ANIclustermap_result \
--fig_width 15
Change cmap_gamma parameter:
ANIclustermap -i ./normal_dataset -o ./ANIclustermap_result \
--fig_width 15 --cmap_gamma 0.5
Change cmap_colors(=white,orange,red) paramter:
ANIclustermap -i ./normal_dataset -o ./ANIclustermap_result \
--fig_width 15 --cmap_colors white,orange,red
Change cmap_ranges paramter:
ANIclustermap -i ./normal_dataset -o ./ANIclustermap_result \
--fig_width 15 --cmap_ranges 80,85,90,92.5,95,97.5,100
See this issue for more details.
Add ANI value annotation parameter:
ANIclustermap -i ./normal_dataset -o ./ANIclustermap_result \
--fig_width 20 --fig_height 15 --annotation