72ea4f5c07
VSEARCH supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, rereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering, conversion and merging of paired-end reads. The aim of this project is to create an alternative to the USEARCH tool developed by Robert C. Edgar (2010).
26 lines
723 B
Makefile
26 lines
723 B
Makefile
# $NetBSD: Makefile,v 1.1 2019/05/10 16:19:22 bacon Exp $
|
|
|
|
DISTNAME= vsearch-2.13.3
|
|
CATEGORIES= biology
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=torognes/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= bacon@NetBSD.org
|
|
HOMEPAGE= https://github.com/torognes/vsearch
|
|
COMMENT= Versatile open-source tool for metagenomics
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
# Works on powerpc64, but only in little endian mode
|
|
ONLY_FOR_PLATFORM= *-*-aarch64 *-*-x86_64
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= autoconf automake autoreconf gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-pdfman
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && autoreconf -fi
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|