class Sratoolkit < Formula desc "Data tools for INSDC Sequence Read Archive" homepage "https://github.com/ncbi/sra-tools" url "https://github.com/ncbi/sra-tools/archive/2.9.0.tar.gz" sha256 "fbdbbf69cf95afca311b9759e14a991dafcb95549ffd5e2e21fb0ecc99fa06aa" revision 2 head "https://github.com/ncbi/sra-tools.git" bottle do cellar :any sha256 "87ecc734d48d087d6ead16197d6fa3b9246c8076cb54785e65101a79d902439b" => :high_sierra sha256 "270658aa58569660fc323a4b8430959adb97eaca4edf014e3096a0e51aaea743" => :sierra sha256 "ea2e17f4259da1aba15c211e545eb833f4e9c5472538a6b8e55b7cf236b63780" => :el_capitan end depends_on "hdf5" depends_on "libmagic" resource "ngs-sdk" do url "https://github.com/ncbi/ngs/archive/2.9.0.tar.gz" sha256 "7e4f9e4490309b6fb33ec9370e5202ad446b10b75c323ba8226c29ca364a0857" end resource "ncbi-vdb" do url "https://github.com/ncbi/ncbi-vdb/archive/2.9.0-1.tar.gz" version "2.9.0-1" sha256 "b4099e2fc3349eaf487219fbe798b22124949c89ffa1e7e6fbaa73a5178c8aff" end def install ngs_sdk_prefix = buildpath/"ngs-sdk-prefix" resource("ngs-sdk").stage do cd "ngs-sdk" do system "./configure", "--prefix=#{ngs_sdk_prefix}", "--build=#{buildpath}/ngs-sdk-build" system "make" system "make", "install" end end ncbi_vdb_source = buildpath/"ncbi-vdb-source" ncbi_vdb_build = buildpath/"ncbi-vdb-build" ncbi_vdb_source.install resource("ncbi-vdb") cd ncbi_vdb_source do system "./configure", "--prefix=#{buildpath/"ncbi-vdb-prefix"}", "--with-ngs-sdk-prefix=#{ngs_sdk_prefix}", "--build=#{ncbi_vdb_build}" ENV.deparallelize { system "make" } end # Fix the error: ld: library not found for -lmagic-static # Upstream PR: https://github.com/ncbi/sra-tools/pull/105 inreplace "tools/copycat/Makefile", "-smagic-static", "-smagic" system "./configure", "--prefix=#{prefix}", "--with-ngs-sdk-prefix=#{ngs_sdk_prefix}", "--with-ncbi-vdb-sources=#{ncbi_vdb_source}", "--with-ncbi-vdb-build=#{ncbi_vdb_build}", "--build=#{buildpath}/sra-tools-build" system "make", "install" # Remove non-executable files. rm_r [bin/"magic", bin/"ncbi"] end test do assert_match "Read 1 spots for SRR000001", shell_output("#{bin}/fastq-dump -N 1 -X 1 SRR000001") assert_match "@SRR000001.1 EM7LVYS02FOYNU length=284", File.read("SRR000001.fastq") end end