forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abyss.rb
45 lines (37 loc) · 1.18 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
require 'formula'
class Abyss < Formula
homepage 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
#doi '10.1101/gr.089532.108'
url 'https://github.com/bcgsc/abyss/releases/download/1.5.2/abyss-1.5.2.tar.gz'
sha1 'f28189338efdee0167cf73f92b43181caccd2b1d'
head do
url 'https://github.com/bcgsc/abyss.git'
depends_on :autoconf => :build
depends_on :automake => :build
depends_on 'multimarkdown' => :build
end
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}"]
MAXK.each do |k|
args << "--enable-maxk=#{k}" if build.include? "enable-maxk=#{k}"
end
system "./configure", *args
system "make install"
end
test do
system "#{bin}/ABYSS", "--version"
end
end