37 lines
1.0 KiB
Ruby
37 lines
1.0 KiB
Ruby
class PicardTools < Formula
|
|
desc "Tools for manipulating HTS data and formats"
|
|
homepage "https://broadinstitute.github.io/picard/"
|
|
url "https://github.com/broadinstitute/picard/releases/download/2.27.4/picard.jar"
|
|
sha256 "1f9da276e5ee657907ee2fb5a86ab4e434cf80b1990f691ee944b99d3ce6bc38"
|
|
license "MIT"
|
|
|
|
livecheck do
|
|
url :stable
|
|
strategy :github_latest
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "2ceb02954ac946ed2a668ea789d5c49d6e6d96aad890cef65fce4c977be0509e"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
libexec.install "picard.jar"
|
|
(bin/"picard").write <<~EOS
|
|
#!/bin/bash
|
|
exec "#{Formula["openjdk"].opt_bin}/java" $JAVA_OPTS -jar "#{libexec}/picard.jar" "$@"
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.fasta").write <<~EOS
|
|
>U00096.2:1-70
|
|
AGCTTTTCATTCTGACTGCAACGGGCAATATGTCT
|
|
CTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC
|
|
EOS
|
|
cmd = "#{bin}/picard NormalizeFasta I=test.fasta O=/dev/stdout"
|
|
assert_match "TCTCTG", shell_output(cmd)
|
|
end
|
|
end
|