forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seqdb.rb
29 lines (24 loc) · 992 Bytes
/
seqdb.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
class Seqdb < Formula
desc "High-throughput compression of FASTQ data"
homepage "https://bitbucket.org/mhowison/seqdb"
url "https://bitbucket.org/mhowison/seqdb/downloads/seqdb-0.2.1.tar.gz"
sha256 "44d1ca6a40701de75fb86936346ef843d3180ea8b9d7591739bdafa7415c484b"
# doi "10.1109/TCBB.2012.160"
# tag "bioinformatics"
bottle do
cellar :any
sha256 "8c4b878ffc024f683bfad217172fbd112981acf8bc73e7df1332d57058ec1f39" => :sierra
sha256 "5ff9b6b160d8adf93d7b4f9c7d89db573efdda3f0b2f2709502b44b6356eb6ae" => :el_capitan
sha256 "d22d3781870d9ab168fd93f2f5ffc00a993c1e88a76374f159e310097687cf9b" => :yosemite
sha256 "ca97c2370d40f13865df25729a5c1d84ac2d136668dfc5ab4a1ffd1e2f036813" => :x86_64_linux
end
needs :openmp
depends_on "hdf5"
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install"
end
test do
assert_match "Howison", shell_output("#{bin}/seqdb cite 2>&1", 0)
end
end