Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johannesmessner/sequence-alignment
Implementation of the Smith-Waterman and Needleman-Wunsch algortihms for local/global genetic sequence alignment.
https://github.com/johannesmessner/sequence-alignment
Last synced: 6 days ago
JSON representation
Implementation of the Smith-Waterman and Needleman-Wunsch algortihms for local/global genetic sequence alignment.
- Host: GitHub
- URL: https://github.com/johannesmessner/sequence-alignment
- Owner: JohannesMessner
- Created: 2019-10-12T15:00:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-10T16:00:44.000Z (about 5 years ago)
- Last Synced: 2025-01-07T21:48:56.747Z (13 days ago)
- Language: R
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sequence-alignment
Implementation of the Smith-Waterman and Needleman-Wunsch algortihms for local and global genetic sequence alignment.Switching between the Needleman-Wunsch algorithm and the Smith-Waterman algorithm is done through the "local"-flag in the "align"-function.
Scores for matches, mismatches and gaps can be specified by the user.This programming task was given as a biweekly assignment in the class "Computational Biology" by Tanja Stadler, Carsten Magnus and Tim Vaughan at ETH Zurich.
The structure of the code was given, the implementation of the algortihms is my own.