Pinned Loading
-
solving the alignment problem one st...
solving the alignment problem one step at a time 1import os
2import json
3import time
4import random
5import requests
-
Smith Waterman affine local sequence...
Smith Waterman affine local sequence alignment on DNA 12def align(s1, s2, gap_penalty, match_score = 1, mismatch_penalty = -1):
3m, n = len(s1), len(s2)
45H = [[0] * (n + 1) for _ in range(m + 1)]
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.