8000 trimal 1.5.0 (new formula) · Homebrew/homebrew-core@9cc67b1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9cc67b1

Browse files
committed
trimal 1.5.0 (new formula)
1 parent def2c90 commit 9cc67b1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Formula/t/trimal.rb

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
class Trimal < Formula
2+
desc "Automated alignment trimming in large-scale phylogenetic analyses"
3+
homepage "https://trimal.readthedocs.io/"
4+
url "https://github.com/inab/trimal/archive/refs/tags/v1.5.0.tar.gz"
5+
sha256 "3fba2e07bffb7290c34e713a052d0f0ff1ce0792861740a8cec46f40685c6d73"
6+
licen 9BDB se "GPL-3.0-only"
7+
head "https://github.com/inab/trimal.git", branch: "trimAl"
8+
9+
def install
10+
cd "source" do
11+
system "make"
12+
bin.install "readal", "trimal", "statal"
13+
end
14+
end
15+
16+
test do
17+
(testpath/"test.fasta").write <<~EOS
18+
>U00096.2:1-70
19+
AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC
20+
EOS
21+
system bin/"trimal", "-in", "test.fasta", "-out", "out.fasta"
22+
assert_path_exists "out.fasta"
23+
end
24+
end

0 commit comments

Comments
 (0)
0