Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #29 from seqeralabs/fastp
Browse files Browse the repository at this point in the history
Fastp
  • Loading branch information
pabloaledo authored Jul 31, 2023
2 parents 68ea963 + 0539fcc commit 672e14b
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipes/fastp/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
set -eu -o pipefail
mkdir -p $PREFIX/bin

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

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

source:
url: https://github.com/OpenGene/fastp/archive/v{{ version }}.tar.gz
sha256: 4fad6db156e769d46071add8a778a13a5cb5186bc1e1a5f9b1ffd499d84d72b5

build:
number: 2

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

test:
commands:
- fastp --help

about:
home: https://github.com/OpenGene/fastp
license: MIT
license_family: MIT
license_file: LICENSE
summary: A ultra-fast FASTQ preprocessor with full features (QC/adapters/trimming/filtering/splitting...)

0 comments on commit 672e14b

Please sign in to comment.