BIO/CSC 295 2009F Bioinformatics
[Skip to Body]
Primary:
[Front Door]
[Schedule]
[Current Outline]
-
[Academic Honesty]
[Instructions]
-
[P'Web]
[ExBioPy]
Groups:
[Assignments]
[EBoards]
[Handouts]
[Labs]
[Outlines]
[Readings]
Misc:
[SamR]
[Textbook]
[NCBI]
[SMS]
Back to Gene Alignments (2). On to Gene Alignments (4).
This outline is also available in PDF.
Held: Tuesday, 22 September 2009
Summary: We consider the Needleman-Wunsch algorithm for optimal alignments.
Related Pages:
Notes:
Overview:
So, where are we going with the topics for chapter 3? Here's our approximate plan of action.
On your ownassignment (based on this algorithm and on the BLAST stuff we did last week)
On your ownassignment
On your ownassignment due
On your ownassignment
def valueOfBestAlignment(seq1,seq2):
valMat = valueOfMatch(last(seq1), last(seq2)) +
valueOfBestAlignment(dropLast(seq1), dropLast(seq2))
valDel = deletionCost +
valueOfBestAlignment(dropLast(seq1), seq2)
valIns = insertionCost +
valueOfBestAlignment(seq, dropLast(seq2))
return max(valMat, valDel, ValIns)
if seq1.isEmpty()
return len(seq2) * values.insertion
elif seq2.isEmpty()
return len(seq1) * values.deletion
else
...
Back to Gene Alignments (2). On to Gene Alignments (4).
[Skip to Body]
Primary:
[Front Door]
[Schedule]
[Current Outline]
-
[Academic Honesty]
[Instructions]
-
[P'Web]
[ExBioPy]
Groups:
[Assignments]
[EBoards]
[Handouts]
[Labs]
[Outlines]
[Readings]
Misc:
[SamR]
[Textbook]
[NCBI]
[SMS]
Disclaimer:
I usually create these pages on the fly
, which means that I rarely
proofread them and they may contain bad grammar and incorrect details.
It also means that I tend to update them regularly (see the history for
more details). Feel free to contact me with any suggestions for changes.
This document was generated by
Siteweaver on Tue Dec 1 09:49:30 2009.
The source to the document was last modified on Tue Aug 25 11:38:51 2009.
This document may be found at http://www.cs.grinnell.edu/~rebelsky/Courses/CSC295/2009F/Outlines/outline.08.html.
You may wish to
validate this document's HTML
;
;
http://creativecommons.org/licenses/by-nc/2.5/
or send a letter to Creative Commons, 543 Howard Street, 5th Floor,
San Francisco, California, 94105, USA.