Use when performing multiple sequence alignments on protein or nucleotide sequences, generating phylogenetic trees, or producing alignment output in various formats.
clustalw -infile=seqs.fa -align/home/vimalinx/miniforge3/envs/bio/bin/clustalwreferences/help.md# 1) Align FASTA sequences and write a CLUSTAL alignment
clustalw \
-infile=seqs.fa \
-align \
-outfile=seqs.aln \
-output=clustal
# 2) Align DNA sequences and write a PHYLIP tree
clustalw \
-infile=markers.fa \
-type=dna \
-align \
-tree \
-outputtree=phylip
# 3) Merge two existing alignments by profile alignment
clustalw \
-profile \
-profile1=alignment1.aln \
-profile2=alignment2.aln \
-outfile=merged.aln
-type=protein or -type=dna explicitly when auto-detection would be ambiguous..dnd.clustalw expects its classic long-option style such as -infile=...; bare GNU-style --help, --version, and -h are not valid help invocations.-help, -fullhelp, or -options to inspect available parameters.clustalw with no arguments in automation; it can drop into its legacy interactive behavior instead of doing useful batch work.