Skip to content

Instantly share code, notes, and snippets.

@attractivechaos
Created February 20, 2018 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save attractivechaos/15a61b2517c253bb31bffcde3e45c6e8 to your computer and use it in GitHub Desktop.
Save attractivechaos/15a61b2517c253bb31bffcde3e45c6e8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import random
import timeit
import string
import sys
import seqpy
global complement
complement = {'A': 'T', 'C': 'G', 'G': 'C', 'T': 'A'}
DNAlength, num_strings = 17, 500000
#randomly generate 100k bases
int_to_basemap = {1: 'A', 2: 'C', 3: 'G', 4: 'T'}
random.seed(90210)
DNAstrings = ["".join([int_to_basemap[random.randint(1,4)] for i in range(DNAlength)])
for j in range(num_strings)]
#get an idea of what the DNAstrings look like
print(DNAstrings[0:5])
def reverse_complement_naive(seq):
this_complement = {'A': 'T', 'C': 'G', 'G': 'C', 'T': 'A'}
return "".join(this_complement.get(base, base) for base in reversed(seq))
if sys.version_info[0] < 3:
tab = string.maketrans("WSATUGCYRKMBDHVNwsatugcyrkmbdhvn", "WSTAACGRYMKVHDBNwstaacgrymkvhdbn")
else:
tab = "WSATUGCYRKMBDHVNwsatugcyrkmbdhvn".maketrans("WSATUGCYRKMBDHVNwsatugcyrkmbdhvn", "WSTAACGRYMKVHDBNwstaacgrymkvhdbn")
def reverse_complement_string(seq):
return seq.translate(tab)[::-1]
tic=timeit.default_timer()
rcs = [reverse_complement_naive(seq) for seq in DNAstrings]
toc=timeit.default_timer()
baseline = toc - tic
namefunc = {"string": reverse_complement_string,
"seqpy": seqpy.revcomp}
for function_name in namefunc:
func = namefunc[function_name]
tic=timeit.default_timer()
rcs = [func(seq) for seq in DNAstrings]
toc=timeit.default_timer()
walltime = toc-tic
print("""{}
{:.5f}s total,
{:.1f} strings per second
{:.1f}% increase over baseline""".format(
function_name,
walltime,
num_strings/walltime,
100- ((walltime/baseline)*100) ))
#include <stdlib.h>
#include <stdint.h>
#include <Python.h>
static unsigned char seq_comp_table[256] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
64, 'T', 'V', 'G', 'H', 'E', 'F', 'C', 'D', 'I', 'J', 'M', 'L', 'K', 'N', 'O',
'P', 'Q', 'Y', 'S', 'A', 'A', 'B', 'W', 'X', 'R', 'Z', 91, 92, 93, 94, 95,
64, 't', 'v', 'g', 'h', 'e', 'f', 'c', 'd', 'i', 'j', 'm', 'l', 'k', 'n', 'o',
'p', 'q', 'y', 's', 'a', 'a', 'b', 'w', 'x', 'r', 'z', 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143,
144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175,
176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207,
208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223,
224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,
240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255
};
static PyObject *seqpy_revcomp(PyObject *self, PyObject *args)
{
PyObject *r;
char *seq, *rev;
int i, len;
PyArg_ParseTuple(args, "s#", &seq, &len);
rev = (char*)malloc(len);
for (i = 0; i < len; ++i)
rev[len - i - 1] = seq_comp_table[(uint8_t)seq[i]];
r = Py_BuildValue("s#", rev, len);
free(rev);
return r;
}
static PyMethodDef seqpy_methods[] = {
{"revcomp", seqpy_revcomp, METH_VARARGS, "Reverse complement a DNA sequence"},
{NULL, NULL, 0, NULL}
};
#if PY_MAJOR_VERSION >= 3
static struct PyModuleDef seqpy_module = { PyModuleDef_HEAD_INIT, "seqpy", NULL, -1, seqpy_methods };
PyMODINIT_FUNC PyInit_seqpy(void) { return PyModule_Create(&seqpy_module); }
#else
PyMODINIT_FUNC initseqpy(void) { Py_InitModule3("seqpy", seqpy_methods, NULL); }
#endif
from setuptools import setup, Extension
seqpy_module = Extension('seqpy', sources = ["seqpy.c"])
setup(
name = "seqpy",
description = "seqpy",
ext_modules = [seqpy_module])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment