Questions tagged [smith-waterman]

2 questions
0
votes
1 answer

Smith-Waterman algorithm traceback part in R

Goodmorning everyone, I am trying to implement my own Smith-Waterman algorithm using R programming, but I am having some trouble in the traceback part, that is, given a matrix m storing the scores, I have to select the cell with the maximum value…
-1
votes
2 answers

How to save the swalign library output (Local Alignment - Smith-Waterman Algorithm)?

I have used the below code to get the local alignment score between two strings using Smith-Waterman Algorithm. However, I'm getting the required output, I'm finding it difficult to save the result into some variable for further analysis. import…