5a2a6eb329
Classify ChIP/ATAC-Seq peaks based on features provided in a GFF Peaks are provided in a BED file sorted by chromosome and position. The GFF must be sorted by chromosome and position, with gene-level features separated by ### tags and each gene organized into subfeatures such as transcripts and exons. This is the default for common data sources.
24 lines
600 B
Makefile
24 lines
600 B
Makefile
PORTNAME= peak-classifier
|
|
DISTVERSION= 0.1.1
|
|
CATEGORIES= biology
|
|
|
|
MAINTAINER= jwb@FreeBSD.org
|
|
COMMENT= Classify ChIP/ATAC-Seq peaks based on features provided in a GFF
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libxtend.so:devel/libxtend libbiolibc.so:biology/biolibc
|
|
RUN_DEPENDS= bedtools:biology/bedtools \
|
|
${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR}
|
|
|
|
USES= localbase python:3.7+ shebangfix
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= auerlab
|
|
SHEBANG_FILES= feature-view.py
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && make depend LOCALBASE=${LOCALBASE}
|
|
|
|
.include <bsd.port.mk>
|