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

Skip to content

Commit 003b1d8

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

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Formula/f/flye.rb

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
cp_r pkgshare/"data/.", testpath
23+
system bin/"flye", "--pacbio-corr", "ecoli_500kb_reads_hifi.fastq.gz", "-o", testpath
24+
assert_path_exists "assembly.fasta"
25+
end
26+
end

0 commit comments

Comments
 (0)
0