Description Usage Arguments Value Author(s) See Also Examples
Insert a Sequence object into another Sequence object after a specified position.
1 2 | ## S3 method for class 'Sequence'
insertSequence(this, insert, position, process=NA, paranoid=FALSE, ...)
|
this |
The target Sequence object. |
insert |
The Sequence object to be inserted. |
position |
The position after the Sequence object will be inserted. |
process |
The Process object performing the insertion (optional). |
paranoid |
If TRUE, then the consistency of teh target objects is checked more rigurously after insertion. |
... |
Not used. |
The Sequence object (invisible).
Botond Sipos, Gregory Jordan
For more information see Sequence
.
1 2 3 4 5 6 7 8 | # create some sequence objects.
target<-NucleotideSequence(string="AAAAAAAAAAA")
insert<-NucleotideSequence(string="GGGGGGGGGGG")
# insert after position 5
insertSequence(target,insert,5)
# print the target sequence
target
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.