-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update psa.py docstring and README.md to document the addition of str…
…etcher implementation
- Loading branch information
Showing
3 changed files
with
21 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
"""Global and local pairwise alignments between nucleotide/protein sequences. | ||
The module uses needle/water from the EMBOSS package to compute an optimal | ||
global/local alignment between a pair of sequences (query and subject). | ||
The module uses needle/strecher and water from the EMBOSS package to compute | ||
an optimal global and local alignment between a pair of sequences (query and | ||
subject). | ||
Copyright 2022 Andrzej Zielezinski ([email protected]) | ||
https://github.com/aziele/pairwise-sequence-alignment | ||
Adapted to also use stretcher based on needle. | ||
""" | ||
|
||
from __future__ import annotations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters