Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bubblegun recipe #51903

Merged
merged 5 commits into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions recipes/bubblegun/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{% set name = "BubbleGun" %}
{% set version = "1.1.9" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: "https://github.com/fawaz-dabbaghieh/bubble_gun/archive/refs/tags/v{{ version }}.tar.gz"
sha256: 005d61a1e5774dfec810e612c1b4c5ce6c8d15f80d131237590ef71f62704c94

build:
number: 0
noarch: python
entry_points:
- BubbleGun=BubbleGun.main:main
script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv
run_exports:
- {{ pin_compatible('BubbleGun', max_pin="x") }}

requirements:
host:
- python >=3.6
- pip
- setuptools
run:
- python >=3.6

test:
commands:
- BubbleGun -h

about:
home: "https://github.com/fawaz-dabbaghieh/bubble_gun"
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'BubbleGun is a tool for detecting bubbles and superbubbles in GFA graphs, and reports them and their nested structures.'
doc_url: "https://github.com/fawaz-dabbaghieh/bubble_gun/blob/v{{ version }}/README.md"
dev_url: "https://github.com/fawaz-dabbaghieh"
Loading