Skip to content

Commit

Permalink
Add fastplong
Browse files Browse the repository at this point in the history
fastplong is a tool for ultra-fast preprocessing and quality control for long-read sequencing data
  • Loading branch information
sfchen committed Oct 19, 2024
1 parent 300aead commit 0556d83
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipes/fastplong/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
set -xeu -o pipefail
mkdir -p $PREFIX/bin

make -j ${CPU_COUNT} INCLUDE_DIRS="$PREFIX/include" LIBRARY_DIRS="$PREFIX/lib"
make install
42 changes: 42 additions & 0 deletions recipes/fastplong/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{% set version="0.2.0" %}

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

source:
url: https://github.com/OpenGene/fastplong/archive/v{{ version }}.tar.gz
sha256: 563970cb2c89c8092e4a2ce4f3e5ac73e039a9aa025845defd9d93c8cf6b0303

build:
number: 5
run_exports:
- {{ pin_subpackage("fastplong", max_pin="x.x") }}

requirements:
build:
- make
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- isa-l
- libdeflate
run:
- isa-l
- libdeflate

test:
commands:
- fastplong --help

extra:
additional-platforms:
- linux-aarch64
- osx-arm64

about:
home: https://github.com/OpenGene/fastplong
license: MIT
license_family: MIT
license_file: LICENSE
summary: Ultra-fast preprocessing and quality control for long-read sequencing data

0 comments on commit 0556d83

Please sign in to comment.