rvolden / conk

Cython Smith-Waterman aligner for C3POa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

Cython Smith-Waterman aligner for C3POa

License:MIT License


Languages

Language:Python 93.6%Language:Makefile 6.4%