forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bedtools.rb
29 lines (24 loc) · 905 Bytes
/
bedtools.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 Bedtools < Formula
homepage "https://github.com/arq5x/bedtools2"
desc "bedtools: A powerful toolset for genome arithmetic"
# doi "10.1093/bioinformatics/btq033"
# tag "bioinformatics"
url "https://github.com/arq5x/bedtools2/archive/v2.24.0.tar.gz"
sha256 "74dd9dbbdf47ef055a1fb8fc9f2f400d0a381e0f4f4d5d1759d5daa1b7ccdd52"
head "https://github.com/arq5x/bedtools2.git"
bottle do
cellar :any_skip_relocation
revision 1
sha256 "80327fefdeb4e62c8c8ca63a952280770d18ee13dcda3cdbaa7d665ac22fdf3d" => :el_capitan
sha256 "ac21a1867ba547bac8f920289e26184115a0b0171b4e3ff3d7aada4fee5c8006" => :yosemite
sha256 "c11b62597d927e97a3e66875519cc1f28f39afb31fd68a423498282bb357583e" => :mavericks
end
def install
system "make"
prefix.install "bin"
doc.install %w[README.md RELEASE_HISTORY]
end
test do
system "#{bin}/bedtools", "--version"
end
end