skbio.alignment.
local_pairwise_align_ssw
(sequence1, sequence2, **kwargs)[source]¶Align query and target sequences with Striped Smith-Waterman.
State: Experimental as of 0.4.0.
Parameters: | sequence1 : DNA, RNA, or Protein
sequence2 : DNA, RNA, or Protein
|
---|---|
Returns: | tuple
|
See also
Notes
This is a wrapper for the SSW package [R223223].
For a complete list of optional keyword-arguments that can be provided,
see skbio.alignment.StripedSmithWaterman
.
The following kwargs will not have any effect: suppress_sequences, zero_index, and protein
If an alignment does not meet a provided filter, None will be returned.
References
[R223223] | (1, 2) Zhao, Mengyao, Wan-Ping Lee, Erik P. Garrison, & Gabor T. Marth. “SSW Library: An SIMD Smith-Waterman C/C++ Library for Applications”. PLOS ONE (2013). Web. 11 July 2014. http://www.plosone.org/article/info:doi/10.1371/journal.pone.0082138 |