Challenge: Score Sequence Alignments
Compito
Swipe to start coding
Write a Python function that takes two DNA sequences of equal length and returns a tuple with the number of matches, mismatches, and gaps in the alignment.
- Compare the characters of
seq1andseq2at each position. - Count a match when the characters are the same and not a gap.
- Count a mismatch when the characters are different and neither is a gap.
- Count a gap whenever either character is
'-'. - Return a tuple in the form
(matches, mismatches, gaps).
Soluzione
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 2
single
Chieda ad AI
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione
Fantastico!
Completion tasso migliorato a 6.25
Challenge: Score Sequence Alignments
Scorri per mostrare il menu
Compito
Swipe to start coding
Write a Python function that takes two DNA sequences of equal length and returns a tuple with the number of matches, mismatches, and gaps in the alignment.
- Compare the characters of
seq1andseq2at each position. - Count a match when the characters are the same and not a gap.
- Count a mismatch when the characters are different and neither is a gap.
- Count a gap whenever either character is
'-'. - Return a tuple in the form
(matches, mismatches, gaps).
Soluzione
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 2
single