Skip to content

Commit

Permalink
oarfish 0.6.2 (new formula) (#1854)
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshitakaMo authored Aug 31, 2024
1 parent f4255df commit 3def657
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Formula/oarfish.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
class Oarfish < Formula
# cite Gleeson_2022: "https://doi.org/10.1093/nar/gkab1129"
# cite Zare_2024: "https://doi.org/10.1101/2024.02.28.582591"
desc "Long read RNA-seq quantification"
homepage "https://github.com/COMBINE-lab/oarfish"
url "https://github.com/COMBINE-lab/oarfish/archive/refs/tags/v0.6.2.tar.gz"
sha256 "78b523fc459fec5ae3680395925862b4d367bd56d051120f28c689dd387e1758"
license "BSD-3-Clause"
head "https://github.com/COMBINE-lab/oarfish.git", branch: "main"

depends_on "rust" => :build
uses_from_macos "xz"
uses_from_macos "zlib"

def install
system "cargo", "install", *std_cargo_args
end

test do
assert_match "oarfish #{version}", shell_output("#{bin}/oarfish --version")
end
end

0 comments on commit 3def657

Please sign in to comment.