8000 flye 2.9.6 (new formula) · Homebrew/homebrew-core@af0867a · GitHub
[go: up one dir, main page]

Skip to content

Commit af0867a

Browse files
committed
flye 2.9.6 (new formula)
1 parent e95018d commit af0867a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Formula/f/flye.rb

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
class Flye < Formula
2+
include Language::Python::Virtualenv
3+
4+
desc "De novo assembler for single molecule sequencing reads using repeat graphs"
5+
homepage "https://github.com/mikolmogorov/Flye"
6+
url "https://github.com/mikolmogorov/Flye/archive/refs/tags/2.9.6.tar.gz"
7+
sha256 "f05a3889b1c7aafed4cc0ed1adc1f19c22618c1c7b97ab5f80d388c8192bd32a"
8+
license all_of: ["BSD-3-Clause", "Apache-2.0", "BSD-2-Clause", "BSL-1.0", "MIT"]
9+
head "https://github.com/mikolmogorov/Flye.git", branch: "flye"
10+
11+
depends_on "python@3.13"
12+
13+
uses_from_macos "zlib"
14+
15+
def install
16+
ENV.deparallelize
17+
virtualenv_install_with_resources
18+
pkgshare.install "flye/tests/data"
19+
end
20+
21+
test do
22+
assert_match version.to_s, shell_output("#{bin}/flye --version")
23+
cp_r pkgshare/"data/.", testpath
24+
system bin/"flye", "--pacbio-corr", "ecoli_500kb_reads_hifi.fastq.gz", "-o", testpath
25+
assert_path_exists "assembly.fasta"
26+
end
27+
end

0 commit comments

Comments
 (0)
0