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 recipe for fsm-lite #11209

Merged
merged 3 commits into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions recipes/fsm-lite/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
make depend SDSL_INSTALL_PREFIX=$PREFIX
make SDSL_INSTALL_PREFIX=$PREFIX
install -d $PREFIX/bin
install fsm-lite $PREFIX/bin
40 changes: 40 additions & 0 deletions recipes/fsm-lite/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{% set name = "fsm-lite" %}
{% set version = "1.0" %}

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

source:
url: https://github.com/nvalimak/{{ name|lower }}/archive/v{{ version }}-stable.tar.gz
sha256: f781a9fbab5265bd09b3b5b7e1cba904582ec201c3d30baed36e28a03de3ac61

build:
number: 0
skip: true # [win]

requirements:
build:
- {{ compiler('cxx') }}
host:
- sdsl-lite
run:
- sdsl-lite

test:
commands:
- fsm-lite -h 2>&1 | grep whitespace-separated

about:
home: https://github.com/nvalimak/fsm-lite
license: GPL-3
license_family: GPL
license_file: LICENSE.md
summary: 'Frequency-based String Mining (lite)'
description: |
A single-core implemetation of frequency-based substring mining. Used to
count k-mers in populations of genomes (supplied as fasta files).

extra:
identifiers:
- doi:10.1038/ncomms12797