Skip to content

Instantly share code, notes, and snippets.

View TransGirlCodes's full-sized avatar
💭
*maniacal cackling*

TRΛNS-GIRL.C0DΞS TransGirlCodes

💭
*maniacal cackling*
View GitHub Profile
@TransGirlCodes
TransGirlCodes / example.jl
Last active March 15, 2017 14:38
Parameterising MinHashSketch
# From this:
type MinHashSketch
sketch::Vector{UInt64}
kmersize::Int
function MinHashSketch(sketch::Vector, kmersize::Int)
length(sketch) > 0 || error("Sketch cannot be empty")
kmersize > 0 || error("Kmersize must be greater than 0")
new(sketch, kmersize)
end
@TransGirlCodes
TransGirlCodes / _config.yml
Last active August 29, 2015 14:26 — forked from ravasthi/_config.yml
Multiple authors on Jekyll
authors:
hanzou:
name: Hanzou Hattori
display_name: Hanzou
gravatar: c66919cb194f96c696c1da0c47354a6a
email: hanzou@company.com
web: http://company.com
twitter: company
github: hhattori
jorgen:
@TransGirlCodes
TransGirlCodes / dstat.R
Last active August 29, 2015 14:13 — forked from coleoguy/dstat.R
## ABBA BABA tests
## Heath Blackmon
## coleoguy@gmail.com
## 28 July 2013
## This file has algorithms found in:
## Durand, Eric Y., et al. "Testing for ancient admixture between
## closely related populations." Molecular biology and evolution
## 28.8 (2011): 2239-2252.