Description Usage Arguments Value Author(s) See Also Examples
Assotiate an Alphabet object with a Process object.
1 2  | ## S3 method for class 'Process'
setAlphabet(this, new.alphabet, ...)
 | 
this | 
 A Process object.  | 
new.alphabet | 
 A valid Alphabet object.  | 
... | 
 Not used.  | 
The Alphabet object (invisible).
Botond Sipos, Gregory Jordan
For more information see Process.
1 2 3 4 5 6 7 8 9 10  | 	# create objects
	a<-AminoAcidAlphabet()
	p<-Process()
	# assotiate p with Alphabet object a
	setAlphabet(p,a)
	p$alphabet
	# assotiate p with a new NucleotideAlphabet via virtual field
	p$alphabet<-NucleotideAlphabet()
	p$alphabet
 
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.