skbio.alignment.local_pairwise_align(seq1, seq2, gap_open_penalty, gap_extend_penalty, substitution_matrix)[source]¶Locally align exactly two seqs with Smith-Waterman
State: Experimental as of 0.4.0.
| Parameters: | seq1 : IUPACSequence
seq2 : IUPACSequence
gap_open_penalty : int or float
gap_extend_penalty : int or float
substitution_matrix: 2D dict (or similar)
|
|---|---|
| Returns: | tuple
|
See also
local_pairwise_align_protein, local_pairwise_align_nucleotide, skbio.alignment.local_pairwise_align_ssw, global_pairwise_align, global_pairwise_align_protein, global_pairwise_align_nucelotide
Notes
This algorithm was originally described in [R102]. The scikit-bio implementation was validated against the EMBOSS water web server [R103].
References
| [R102] | (1, 2) Identification of common molecular subsequences. Smith TF, Waterman MS. J Mol Biol. 1981 Mar 25;147(1):195-7. |
| [R103] | (1, 2) http://www.ebi.ac.uk/Tools/psa/emboss_water/ |