forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcgap.rb
30 lines (24 loc) · 723 Bytes
/
cgap.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
require 'formula'
class Cgap < Formula
homepage 'http://www.herbbol.org:8000/chloroplast/default/index'
#doi '10.1186/1471-2105-14-95'
url 'http://www.herbbol.org:8000/chloroplast/static/AllSourceCode.rar'
sha1 'e85b9205f32341347ee97e898f7e734fea0918bf'
version '20130314'
depends_on 'matplotlib' => :python
depends_on 'scipy' => :python
depends_on LanguageModuleRequirement.new :python, 'biopython', 'Bio'
depends_on 'Bio::Perl' => :perl
depends_on 'blast'
depends_on 'circos'
depends_on 'imagemagick'
depends_on 'mummer'
depends_on 'ogdraw'
depends_on 'phylip'
def install
libexec.install Dir['web2py/*']
end
test do
system "python #{libexec}/web2py.py --help"
end
end