Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 426 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 426 Bytes

conk

Cython Smith-Waterman aligner for C3POa

Requirements:

  • Cython
  • setuptools
  • wheel

These packages should be pip installed:

python3 -m pip install --user --upgrade Cython setuptools wheel

To build the module and install, run make. To clean up this directory, run make clean.

Usage in python:

from conk import conk

seq = 'AAAAA'
penalty = 20

scores = conk.conk(seq, seq, penalty)