homebrew-core/Formula/mmseqs2.rb

62 lines
2.1 KiB
Ruby

class Mmseqs2 < Formula
desc "Software suite for very fast sequence search and clustering"
homepage "https://mmseqs.com/"
url "https://github.com/soedinglab/MMseqs2/archive/11-e1a1c.tar.gz"
version "11-e1a1c"
sha256 "ffe1ae300dbe1a0e3d72fc9e947356a4807f07951cb56316f36974d8d5875cbb"
license "GPL-3.0"
revision 1
head "https://github.com/soedinglab/MMseqs2.git"
bottle do
cellar :any_skip_relocation
sha256 "9bc41128722a0a926cc30fca2cfb29574bb150deb8acc482cd61e7e49e8169fb" => :catalina
sha256 "789fa0f2f9bef66df73de586236dbffb037f8a32794e47768818d1fc732c05e2" => :mojave
sha256 "d3f8b1a3ba35b0af1e80a0a917d915e8c19ea542bde20879c3031f1138af55aa" => :high_sierra
end
depends_on "cmake" => :build
depends_on "libomp"
depends_on "wget"
uses_from_macos "bzip2"
uses_from_macos "zlib"
resource "documentation" do
url "https://github.com/soedinglab/MMseqs2.wiki.git",
revision: "c77918c9cebb24075f3c102a73fb1d413017a1a5"
end
def install
args = *std_cmake_args << "-DHAVE_TESTS=0" << "-DHAVE_MPI=0"
args << "-DVERSION_OVERRIDE=#{version}"
args << "-DHAVE_SSE4_1=1"
libomp = Formula["libomp"]
args << "-DOpenMP_C_FLAGS=-Xpreprocessor\ -fopenmp\ -I#{libomp.opt_include}"
args << "-DOpenMP_C_LIB_NAMES=omp"
args << "-DOpenMP_CXX_FLAGS=-Xpreprocessor\ -fopenmp\ -I#{libomp.opt_include}"
args << "-DOpenMP_CXX_LIB_NAMES=omp"
args << "-DOpenMP_omp_LIBRARY=#{libomp.opt_lib}/libomp.a"
system "cmake", ".", *args
system "make", "install"
resource("documentation").stage { doc.install Dir["*"] }
pkgshare.install "examples"
bash_completion.install "util/bash-completion.sh" => "mmseqs.sh"
end
def caveats
"MMseqs2 requires at least SSE4.1 CPU instruction support." unless Hardware::CPU.sse4?
end
test do
system "#{bin}/mmseqs", "createdb", "#{pkgshare}/examples/QUERY.fasta", "q"
system "#{bin}/mmseqs", "cluster", "q", "res", "tmp", "-s", "1"
system "#{bin}/mmseqs", "createtsv", "q", "q", "res", "res.tsv"
assert_predicate testpath/"res.tsv", :exist?
assert_predicate (testpath/"res.tsv").size, :positive?
end
end