seqinsertgaps
Insert gaps into nucleotide or amino acid sequence
Syntax
NewSeq
= seqinsertgaps(Seq
, Positions
)
NewSeq
= seqinsertgaps(Seq
, GappedSeq
)
NewSeq
= seqinsertgaps(Seq
, GappedSeq
, Relationship
)
Input Arguments
Seq | Either of the following:
|
Positions | Vector of integers to specify the positions in Seq before
which to insert a gap. |
GappedSeq | Either of the following:
|
Relationship | Integer specifying the relationship between Seq and GappedSeq .
Choices are:
|
Output Arguments
NewSeq | Sequence with gaps inserted, represented by a character vector specifying a nucleotide or amino acid sequence. |
Description
inserts
gaps in the sequence NewSeq
= seqinsertgaps(Seq
, Positions
)Seq
before the positions
specified by the integers in the vector Positions
.
finds
the gap positions in the sequence NewSeq
= seqinsertgaps(Seq
, GappedSeq
)GappedSeq
,
then inserts gaps in the corresponding positions in the sequence Seq
.
specifies
the relationship between NewSeq
= seqinsertgaps(Seq
, GappedSeq
, Relationship
)Seq
and GappedSeq
.
Enter 1
for Relationship
when
both sequences use the same alphabet, that is both are nucleotide
sequences or both are amino acid sequences. Enter 3
for Relationship
when Seq
contains
nucleotides representing codons and GappedSeq
contains
amino acids. Default is 3
.
Examples
Retrieve two nucleotide sequences from the GenBank® database for the neuraminidase (NA) protein of two strains of the Influenza A virus (H5N1).
hk01 = getgenbank('AF509094'); vt04 = getgenbank('DQ094287');
Extract the coding region from the two nucleotide sequences.
hk01_cds = featureparse(hk01,'feature','CDS','Sequence',true); vt04_cds = featureparse(vt04,'feature','CDS','Sequence',true);
Align the amino acids sequences converted from the nucleotide sequences.
[sc,al]=nwalign(nt2aa(hk01_cds),nt2aa(vt04_cds),'extendgap',1);
Use the
seqinsertgaps
function to copy the gaps from the aligned amino acid sequences to their corresponding nucleotide sequences, thus codon-aligning them.hk01_aligned = seqinsertgaps(hk01_cds,al(1,:)) vt04_aligned = seqinsertgaps(vt04_cds,al(3,:))
Once you have code aligned the two sequences, you can use them as input to other functions such as
dnds
, which calculates the synonymous and nonsynonymous substitutions rates of the codon-aligned nucleotide sequences. By settingVerbose
totrue
, you can also display the codons considered in the computations and their amino acid translations.[dn,ds] = dnds(hk01_aligned,vt04_aligned,'verbose',true)
Version History
Introduced in R2007a
See Also
featureparse
| dnds
| dndsml
| int2aa
| int2nt