Title: | Multiple Sequence Alignment with MUSCLE |
---|---|
Description: | MUSCLE performs multiple sequence alignments of nucleotide or amino acid sequences. |
Authors: | Algorithm by Robert C. Edgar. R port by Alex T. Kalinka. |
Maintainer: | Alex T. Kalinka <[email protected]> |
License: | Unlimited |
Version: | 3.49.0 |
Built: | 2024-11-19 03:55:25 UTC |
Source: | https://github.com/bioc/muscle |
MUSCLE performs multiple sequence alignments of nucleotide and amino acid sequences.
Details about the algorithm can be found on the MUSCLE website:
http://www.drive5.com/muscle/
Algorithm: Robert C. Edgar
R port: Alex T. Kalinka [email protected]
Edgar, R.C. (2004) MUSCLE: multiple sequence alignment with high accuracy and high throughput. Nucleic Acids Res 32, 1792-1797.
## Align sequences in an XStringSet object. ## Not run: aln <- muscle(stringset = umax) ## End(Not run)
## Align sequences in an XStringSet object. ## Not run: aln <- muscle(stringset = umax) ## End(Not run)
MUSCLE performs multiple sequence alignments of nucleotide or amino acid sequences.
muscle(stringset, quiet = FALSE, ...)
muscle(stringset, quiet = FALSE, ...)
stringset |
An object of class |
quiet |
Logical, whether to prevent printing of the progress of the algorithm to the screen. Defaults to FALSE. |
... |
Arguments (options and flags) for the MUSCLE algorithm (see Details). |
Arguments for the MUSCLE algorithm are either options or flags. Options take a variety of values, but flags are always logicals (TRUE or FALSE). All options and flags are explained in detail on the MUSCLE website: http://www.drive5.com/muscle/muscle_userguide3.8.html
Output is an object of class MultipleAlignment
: DNAMultipleAlignment
, RNAMultipleAlignment
, or AAMultipleAlignment
.
For further details see the MUSCLE website: http://www.drive5.com/muscle/
Algorithm by Robert C. Edgar. Ported into R by Alex T. Kalinka [email protected]
Edgar, R.C. (2004) MUSCLE: multiple sequence alignment with high accuracy and high throughput. Nucleic Acids Res 32, 1792-1797.
## Align sequences in an XStringSet object. aln <- muscle(stringset = umax) ## Switch on the diags flag. aln <- muscle(stringset = umax, diags = TRUE)
## Align sequences in an XStringSet object. aln <- muscle(stringset = umax) ## Switch on the diags flag. aln <- muscle(stringset = umax, diags = TRUE)
Unaligned DNA sequences of the MAX gene for 31 mammalian species.
umax
umax
An object of class DNAStringSet
.
An object of class DNAStringSet
.
http://www.ensembl.org/index.html
Wagner, AJ et al. (1992) Expression, regulation, and chromosomal localization of the Max gene. Proc Natl Acad Sci USA 89: 3111-3115.