proteinortho 6.0 (new formula)
This commit is contained in:
parent
a3c565ddf0
commit
16064b3090
1 changed files with 20 additions and 0 deletions
20
Formula/proteinortho.rb
Normal file
20
Formula/proteinortho.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
class Proteinortho < Formula
|
||||
desc "Detecting orthologous genes within different species"
|
||||
homepage "https://gitlab.com/paulklemm_PHD/proteinortho"
|
||||
url "https://gitlab.com/paulklemm_PHD/proteinortho/-/archive/v6.0/proteinortho-v6.0.tar.gz"
|
||||
sha256 "c49337f8b737408deaa04a391595cce892415fd1aa8623eb3c88507b1b8ed3b1"
|
||||
|
||||
depends_on "diamond"
|
||||
depends_on "openblas"
|
||||
|
||||
def install
|
||||
bin.mkpath
|
||||
system "make", "install", "PREFIX=#{bin}"
|
||||
doc.install "manual.html"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/proteinortho", "-test"
|
||||
system "#{bin}/proteinortho_clustering", "-test"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue