Skip to content

Commit

Permalink
Add ntStat (#51884)
Browse files Browse the repository at this point in the history
* Create meta.yaml

* Create build.sh

* Update meta.yaml
  • Loading branch information
parham-k authored Nov 3, 2024
1 parent 92c334d commit 0d6fa8c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ntstat/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env bash

meson setup --buildtype release --prefix=$PREFIX build
meson install -C build
48 changes: 48 additions & 0 deletions ntstat/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set version = "1.0.0" %}

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

source:
url: https://github.com/bcgsc/ntStat/archive/refs/tags/v{{ version }}.tar.gz
sha256: 262dc58ab6f781a6816a5d4fc129659c7fa2c3364871320eafb45bfa822fab6a

build:
number: 0
run_exports:
- {{ pin_subpackage('ntstat', max_pin="x") }}

requirements:
build:
- {{ compiler('cxx') }}
- meson
- meson-python
- cmake
host:
- python
- llvm-openmp # [osx]
- libgomp # [linux]
- btllib >=1.7.2
- cpp-argparse
- cpp-tabulate
- indicators
- pybind11
run:
- python
- ntcard
- matplotlib
- numpy
- scipy
- tabulate

test:
commands:
- ntstat --version
- ntstat count --help

about:
home: https://github.com/bcgsc/ntStat
license: GPL-3.0-or-later
license_file: LICENSE
summary: 'a toolkit for statistical analysis of k-mer frequency and depth'

0 comments on commit 0d6fa8c

Please sign in to comment.