vibbits / gentle-hands-on-python

Course materials for the 'Gentle hands-on introduction to Python programming'.
Other
9 stars 8 forks source link

Sequence assembly using a greedy algorithm - a new project exercise #38

Closed tmuylder closed 3 years ago

tmuylder commented 3 years ago

Given a set of sequence fragments, the object is to find a longer sequence that contains all the fragments.

Сalculate pairwise alignments of all fragments. Choose two fragments with the largest overlap. Merge chosen fragments. Repeat step 2 and 3 until only one fragment is left. The result need not be an optimal solution to the problem.

MaybeJustJames commented 3 years ago

Project links: