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 a recipe for nanopack. #52963

Merged
merged 4 commits into from
Dec 27, 2024
Merged
Changes from 1 commit
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
58 changes: 58 additions & 0 deletions recipes/nanopack/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{% set name = "nanopack" %}
{% set version = "1.1.1" %}

package:
name: {{ name }}
version: {{ version }}

build:
number: 0
noarch: generic
run_exports:
- {{ pin_subpackage(name, max_pin='x') }}

source:
git_url: https://github.com/kehrlab/PopIns2
martin-g marked this conversation as resolved.
Show resolved Hide resolved
git_rev: 4059a0afa4e51220fd0107750ebc2d818996de97

requirements:
run:
- nanoplot
- nanostat
- nanofilt
- nanolyse
- nanoget
- nanomath
- nanocomp
- nanogc
martin-g marked this conversation as resolved.
Show resolved Hide resolved
- cramino

test:
imports:
- nanoplot
- nanostat
- nanofilt
- nanolyse
- nanoget
- nanomath
- nanocomp
commands:
- NanoPlot --help
- NanoStat --help
- NanoFilt --help
- NanoLyse --help
- NanoComp --help
- cramino --help

about:
home: https://github.com/wdecoster/nanopack
license: GPL-3.0-only
license_family: GPL3
license_file: LICENSE
summary: A meta package for several long read processing and analysis tools.
dev_url: https://github.com/wdecoster/nanopack

extra:
skip-lints:
- missing_hash
- uses_vcs_url
Loading