lmiller1990 / bioinfomatics

Various code I am writing as I learn bioinformatics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I am learning bioinformatics, this is the code I am writing.

Requirements

  • Python 3

Install

pip install -r requirements.txt

Lint

black *.py

Algorithms

# Basic
python needleman_wunsch.py "GTCGACGCA" "GGATACA"

# Custom weights
python needleman_wunsch.py "GTCGACGCA" "GGATACA" --gap -1 --mismatch 0 --match 3

About

Various code I am writing as I learn bioinformatics


Languages

Language:Python 100.0%