Created
February 6, 2020 14:36
-
-
Save endrebak/6b3dd0ae97be3fc13e49869962cfc0ee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
#cython: language_level=3, boundscheck=False, wraparound=False, initializedcheck=False, cdivision=True | |
import sys, math, gzip | |
import numpy as np | |
import pandas as pd | |
from time import time | |
from libc.math cimport exp, fabs | |
from libc.stdint cimport int32_t, int8_t | |
cimport cython | |
@cython.boundscheck(False) | |
@cython.wraparound(False) | |
@cython.initializedcheck(False) | |
@cython.cdivision(True) | |
cpdef calc_autocovar(haps, double theta): | |
cdef: | |
int i, j, k, pos1, pos2, len_haps, n11, n10, n01, len_g1_int | |
double len_g1, f11, f1, f2, Ds2, D, nind, thetas, thetas2 | |
records = [] | |
len_g1_int = haps.shape[1] | |
len_g1 = float(haps.shape[1]) | |
len_haps = len(haps) | |
thetas = (1-theta)*(1-theta) | |
thetas2 = (theta/2.0)*(1-theta/2.0) | |
# cdef long[:] allpos_view | |
cdef long[:] g1_view, g2_view | |
cdef int8_t[:, :] haps_view | |
# allpos_view = allpos.values | |
haps_view = haps | |
outvec = np.zeros(len_haps) | |
cdef double[::1] outvec_view | |
outvec_view = outvec | |
for i in range(len_haps): | |
n11, n01, n10 = 0, 0, 0 | |
for k in range(len_g1_int): | |
if haps_view[i][k] == 1 and haps_view[i][k] == 1: | |
n11 += 1 | |
f11 = n11/len_g1 | |
D = f11 | |
Ds2 = thetas*D | |
outvec_view[i] = Ds2 + thetas2 | |
return outvec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment