-
Notifications
You must be signed in to change notification settings - Fork 5
/
gyeet.scm
55 lines (53 loc) · 1.93 KB
/
gyeet.scm
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
(define-module (gyeet)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system cmake)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages base)
#:use-module (gnu packages gcc)
#:use-module (gnu packages cmake)
#:use-module (gnu packages version-control)
#:use-module (gnu packages python)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages wget)
#:use-module (gnu packages curl)
#:use-module (gnu packages bash)
#:use-module (gnu packages compression))
(define-public gyeet
(let ((version "0.0.0")
(commit "7965dd0a193ac32aa30e2bb079cee3a2b1a43f3b")
(package-revision "1"))
(package
(name "gyeet")
(version (string-append version "+" (string-take commit 7) "-" package-revision))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ekg/gyeet.git")
(commit commit)
(recursive? #t)))
(file-name (git-file-name name version))
(sha256
(base32
"1kygg3j733ys1i3rabvmdqxjxiq2qakxfgpz3q9j9gwni4893307"))))
(build-system cmake-build-system)
(arguments
`(#:phases
(modify-phases
%standard-phases
(delete 'check))
#:make-flags (list "CC=gcc")))
(native-inputs
`(("cmake" ,cmake)
("glibc" ,glibc)
("gcc" ,gcc-9)
("zlib" ,zlib)))
(synopsis "gyeet sequence to graph hacked mapper")
(description
"gyeet maps sequences to a graph using a linearization trick. Locally,
if the graph is partially ordered, then standard alignment with Myers'
bit-parallel model will result in an approximately correct alignment.
By scoring in graph space, we avoid additional bias from using a linear
model.")
(home-page "https://github.com/ekg/freebayes")
(license license:expat))))