## read sequences
filepath <- system.file("examples", "exampleAA.fasta", package="msa")
mySeqs <- readAAStringSet(filepath)
## simple call with default values
myAlignment <- msaClustalOmega(mySeqs)
## show the algorithm version with which the results were created
version(myAlignment)
## show the results
show(myAlignment)
## print the results
print(myAlignment, show="alignment")
print(myAlignment, show="alignment", showConsensus=FALSE)
print(myAlignment, show="complete")
print(myAlignment, show=c("alignment", "version"))
print(myAlignment, show="standardParams")
print(myAlignment, show="algParams")
print(myAlignment, show=c("call", "version"))
## show the params
params(myAlignment)
Run the code above in your browser using DataLab