forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bamhash.rb
28 lines (23 loc) · 783 Bytes
/
bamhash.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
class Bamhash < Formula
homepage "https://github.com/DecodeGenetics/BamHash"
# doi "10.1101/015867"
# tag "bioinformatics"
url "https://github.com/DecodeGenetics/BamHash/archive/v1.0.tar.gz"
sha1 "1e7f6d31bee0ea66b60150c8ef587a10cb90af26"
head "https://github.com/DecodeGenetics/BamHash.git"
bottle do
cellar :any
sha1 "7b0a924e7d19c6f24c0a3ad3a13cb1623ef2f4c8" => :yosemite
sha1 "e87aab324de4290409cc764eb0ca4cf35b57a7b6" => :mavericks
sha1 "64688eea9d72ea394f705a27aa107ef142236fef" => :mountain_lion
end
depends_on "openssl"
def install
system "make"
bin.install "bamhash_checksum_bam", "bamhash_checksum_fastq"
doc.install "LICENSE", "README.md"
end
test do
system "#{bin}/bamhash_checksum_bam", "--version"
end
end