forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abyss.rb
46 lines (38 loc) · 1.29 KB
/
abyss.rb
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
require 'formula'
class Abyss < Formula
homepage 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
url 'http://www.bcgsc.ca/platform/bioinfo/software/abyss/releases/1.3.7/abyss-1.3.7.tar.gz'
sha1 '3d0831b1b7fd0601ded7c2d01938a24b3fc1931a'
head do
url 'https://github.com/bcgsc/abyss.git'
depends_on :autoconf => :build
depends_on :automake => :build
depends_on 'multimarkdown' => :build
end
option 'disable-popcnt', 'do not use the POPCNT instruction'
MAXK = [32, 64, 96, 128, 256, 512]
MAXK.each do |k|
option "enable-maxk=#{k}", "set the maximum k-mer length to #{k}"
end
# Only header files are used from these packages, so :build is appropriate
depends_on 'boost' => :build
depends_on 'google-sparsehash' => :build
depends_on :mpi => [:cc, :recommended]
# strip breaks the ability to read compressed files.
skip_clean 'bin'
def install
system "./autogen.sh" if build.head?
args = [
'--disable-dependency-tracking',
"--prefix=#{prefix}"]
args << '--disable-popcnt' if build.include? 'disable-popcnt'
MAXK.each do |k|
args << "--enable-maxk=#{k}" if build.include? "enable-maxk=#{k}"
end
system "./configure", *args
system "make install"
end
def test
system "#{bin}/ABYSS", "--version"
end
end