Skip to content

Commit

Permalink
salmon 1.10.1 (#1666)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshitakaMo authored Feb 29, 2024
1 parent 3eb7cbb commit 60e54e4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Formula/salmon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ class Salmon < Formula
# cite Patro_2017: "https://doi.org/10.1038/nmeth.4197"
desc "Transcript-level quantification from RNA-seq reads"
homepage "https://github.com/COMBINE-lab/salmon"
url "https://github.com/COMBINE-lab/salmon/archive/refs/tags/v1.3.0.tar.gz"
sha256 "c105be481630d57e7022bf870eb040857834303abff05fe0e971dda5ed6f0236"
url "https://github.com/COMBINE-lab/salmon/archive/refs/tags/v1.10.1.tar.gz"
sha256 "babd9ccc189cfea07566d8a11d047f25fad5b446b4b69257bc6ad8869f8b7707"
license "GPL-3.0"
head "https://github.com/COMBINE-lab/salmon.git"

Expand All @@ -19,14 +19,18 @@ class Salmon < Formula
depends_on "cmake" => :build
depends_on "tbb"
depends_on "xz"
depends_on "zstd"

uses_from_macos "unzip" => :build
uses_from_macos "bzip2"
uses_from_macos "curl"
uses_from_macos "zlib"

def install
system "cmake", ".", *std_cmake_args
args = *std_cmake_args
# https://github.com/COMBINE-lab/salmon/issues/664
args << "-DNO_IPO=TRUE" if OS.linux?
system "cmake", ".", *args
system "make"
system "make", "install"
end
Expand Down

0 comments on commit 60e54e4

Please sign in to comment.