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 fqgrep #36139

Merged
merged 4 commits into from
Jul 31, 2022
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
11 changes: 11 additions & 0 deletions recipes/fqgrep/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash -e

# TODO: Remove the following export when pinning is updated and we use
# {{ compiler('rust') }} in the recipe.
export \
CARGO_NET_GIT_FETCH_WITH_CLI=true \
CARGO_HOME="${BUILD_PREFIX}/.cargo"

export BINDGEN_EXTRA_CLANG_ARGS="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"

cargo install --no-track --verbose --root "${PREFIX}" --path .
36 changes: 36 additions & 0 deletions recipes/fqgrep/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{% set version = "0.1.0" %}

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

build:
number: 0

source:
url: https://github.com/fulcrumgenomics/fqgrep/archive/v{{ version }}.tar.gz
sha256: 662c5e67cebd9e6d266f201ec45548c903b2f194ad1eb4185f6fe75eed36be9a

requirements:
build:
- {{ compiler('cxx') }}
- rust >=1.60
- pkg-config
- make
- cmake
host:
run:

test:
commands:
- fqgrep --help

about:
home: https://github.com/fulcrumgenomics/fqgrep
license: MIT
license_file: LICENSE
summary: Search a pair of fastq files for reads that match a given ref or alt sequence

extra:
recipe-maintainers:
- nh13