Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Gap open and extend penalties in Needleman-Wunsch algorithm

    Hi guys, I made my own implementation of the Needleman-Wunsch algorithm in Python. This worked pretty well, but then I decided I wanted different penalties for opening a gap and extending a gap, because the algorithm kept opening small gaps in the middle of the alignment.

    This is where I started to struggle and I may need some help:
    I have two arrays, one for the score and another to keep track of the steps through the array. The second one stores three booleans for the directions (diagonal, up and left) for each position. When I calculate the scores for each position to find the max score, I look at the position before the one I'm at to see if there has been a deletion or insertion as well. If yes I only subtract the gap extension penalty, if not then the gap open penalty.

    However this gives me false positive results from time to time.

    Consider this example:



    At position [7,5] the algorithm can branch off in continuing the gap to [6,5] or take the match to [6,4], however when continuing the algorithm the info, that the highest score came from the continuation of the gap was lost. At the end there are two possible ways through the matrix:



    Here I show the two routes, the first number is the score for the next move. The two following numbers are the current coordinates. One of the routes is a false positive, as you can see because when you add up the scores one has the score of 5 and one has a score of 3, but both are viable backtracks through the matrix.

    I hope someone can help me sort this out. Thank you.

Latest Articles

Collapse

  • seqadmin
    Recent Advances in Sequencing Analysis Tools
    by seqadmin


    The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
    05-06-2024, 07:48 AM
  • seqadmin
    Essential Discoveries and Tools in Epitranscriptomics
    by seqadmin




    The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
    04-22-2024, 07:01 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Today, 07:03 AM
0 responses
10 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-10-2024, 06:35 AM
0 responses
31 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-09-2024, 02:46 PM
0 responses
41 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-07-2024, 06:57 AM
0 responses
33 views
0 likes
Last Post seqadmin  
Working...
X