forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glimmer3.rb
62 lines (50 loc) · 1.83 KB
/
glimmer3.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
require 'formula'
class Glimmer3 < Formula
homepage 'http://www.cbcb.umd.edu/software/glimmer/'
url 'http://www.cbcb.umd.edu/software/glimmer/glimmer302a.tar.gz'
version "3.02"
sha1 '27fbd2498f997e0a47026b348b2fc95b073b712a'
depends_on "elph"
def install
cd 'src' do
system 'make'
end
cd 'bin' do
# Lots of binaries with kind of common names. We put these in
# libexec and not in bin. The shell scripts (see below)
# know how to call these, because we set the $glimmerpath.
libexec.install %w[window-acgt start-codon-distrib long-orfs
entropy-score build-fixed uncovered score-fixed glimmer3
entropy-profile anomaly multi-extract extract build-icm]
end
Dir.glob('scripts/*.awk').each do |script|
inreplace script, '/bin/awk', '/usr/bin/awk'
libexec.install script
end
(share/"#{name}").install Dir.glob('sample-run/*.predict')
(share/"#{name}").install 'sample-run/tpall.fna'
inreplace 'scripts/g3-iterated.csh', '/nfshomes/adelcher', HOMEBREW_PREFIX
inreplace 'scripts/g3-from-training.csh', '/nfshomes/adelcher', HOMEBREW_PREFIX
Dir.glob('scripts/*.csh').each do |script|
inreplace script, '/fs/szgenefinding/Glimmer3/scripts', libexec
inreplace script, '/fs/szgenefinding/Glimmer3', HOMEBREW_PREFIX
inreplace script, '$glimmerpath', libexec
bin.install script
end
end
def caveats
<<-EOS.undent
Glimmer3 is mostly used by calling the .csh scripts but if you need the
supporting binaries, they are in
#{libexec}
EOS
end
test do
system "g3-from-scratch.csh #{share}/#{name}/tpall.fna test"
if FileTest.exists? 'test.predict'
%x(diff test.predict #{share}/#{name}/from-scratch.predict).empty? ? true : false
else
false
end
end
end