"plot"(x, hc = TRUE, labels = x$id, cex.lab = 0.7, xlab = "Alignment index", main = "Sequence Alignment Overview", mar4 = 4, ...)
seqaln
. hclust
can be provided. hclust
. Produces a schematic representation of a multiple sequence alignment.
plot.fasta
is a utility function for producting a schematic
representation of a multiple sequence alignment.
Grant, B.J. et al. (2006) Bioinformatics 22, 2695--2696.
# Read alignment aln <- read.fasta(system.file("examples/kif1a.fa",package="bio3d")) ## alignment plot plot(aln, labels=basename.pdb(aln$id)) ## Works also for a 'pdbs' object attach(transducin) plot(pdbs)detach(transducin) infile <- "http://pfam.xfam.org/family/PF00071/alignment/seed/format?format=fasta" aln <- read.fasta( infile ) plot(aln)