pkgsrc/biology/bcftools/Makefile
adam 1d7a39df12 bcftools: added version 1.9
BCFtools is a program for variant calling and manipulating files in the Variant
Call Format (VCF) and its binary counterpart BCF. All commands work
transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed.
In order to avoid tedious repetion, throughout this document we will use "VCF"
and "BCF" interchangeably, unless specifically noted.

Most commands accept VCF, bgzipped VCF and BCF with filetype detected
automatically even when streaming from a pipe. Indexed VCF and BCF work in all
situations. Unindexed VCF and BCF and streams work in most, but not all
situations. In general, whenever multiple VCFs are read simultaneously, they
must be indexed and therefore also compressed.
2018-11-15 09:21:24 +00:00

28 lines
776 B
Makefile

# $NetBSD: Makefile,v 1.1 2018/11/15 09:21:24 adam Exp $
DISTNAME= bcftools-1.9
CATEGORIES= biology
MASTER_SITES= ${MASTER_SITE_GITHUB:=samtools/}
EXTRACT_SUFX= .tar.bz2
GITHUB_RELEASE= ${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://samtools.github.io/bcftools/
COMMENT= Calling and manipulating files VCF and BCF formats
LICENSE= mit
USE_TOOLS+= gmake perl
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-htslib=system
TEST_TARGET= test
BUILDLINK_TRANSFORM+= opt:-ldl:${BUILDLINK_LDADD.dl:M*}
REPLACE_PERL+= misc/*.pl
REPLACE_PERL+= misc/plot-vcfstats
REPLACE_PYTHON+= misc/*.py
.include "../../biology/htslib/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../mk/dlopen.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"