From owner-svn-ports-head@freebsd.org Tue Mar 23 16:32:30 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8115D5B3A2B; Tue, 23 Mar 2021 16:32:30 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F4cNG3JjSz3Lh4; Tue, 23 Mar 2021 16:32:30 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5B1CC2423A; Tue, 23 Mar 2021 16:32:30 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12NGWUW1040310; Tue, 23 Mar 2021 16:32:30 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12NGWTv1040307; Tue, 23 Mar 2021 16:32:29 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <202103231632.12NGWTv1040307@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Tue, 23 Mar 2021 16:32:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r569036 - in head/biology: . vcf2hap X-SVN-Group: ports-head X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in head/biology: . vcf2hap X-SVN-Commit-Revision: 569036 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Mar 2021 16:32:30 -0000 Author: jwb Date: Tue Mar 23 16:32:29 2021 New Revision: 569036 URL: https://svnweb.freebsd.org/changeset/ports/569036 Log: biology/vcf2hap: Generate .hap file from VCF for haplohseq vcf2hap is a simple tool for generating a .hap file from a VCF. The .hap file is required by haplohseq. vcf2hap is extremely fast and requires a trivial amount of memory regardless of the size of the VCF file. Added: head/biology/vcf2hap/ head/biology/vcf2hap/Makefile (contents, props changed) head/biology/vcf2hap/distinfo (contents, props changed) head/biology/vcf2hap/pkg-descr (contents, props changed) Modified: head/biology/Makefile Modified: head/biology/Makefile ============================================================================== --- head/biology/Makefile Tue Mar 23 16:07:47 2021 (r569035) +++ head/biology/Makefile Tue Mar 23 16:32:29 2021 (r569036) @@ -181,6 +181,7 @@ SUBDIR += trimmomatic SUBDIR += ugene SUBDIR += vcf-split + SUBDIR += vcf2hap SUBDIR += vcflib SUBDIR += vcftools SUBDIR += velvet Added: head/biology/vcf2hap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/vcf2hap/Makefile Tue Mar 23 16:32:29 2021 (r569036) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= vcf2hap +DISTVERSION= 0.1.2 +CATEGORIES= biology + +MAINTAINER= jwb@FreeBSD.org +COMMENT= Generate .hap file from VCF for haplohseq + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= biolibc>=0.1.1:biology/biolibc + +USE_GITHUB= yes +GH_ACCOUNT= auerlab + +PLIST_FILES= bin/vcf2hap man/man1/vcf2hap.1.gz + +pre-build: + (cd ${WRKSRC} && ${MAKE} LOCALBASE=${LOCALBASE} depend) + +do-test: + (cd ${WRKSRC}/Test && ./run-test.sh) + +.include Added: head/biology/vcf2hap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/vcf2hap/distinfo Tue Mar 23 16:32:29 2021 (r569036) @@ -0,0 +1,3 @@ +TIMESTAMP = 1616515046 +SHA256 (auerlab-vcf2hap-0.1.2_GH0.tar.gz) = 69804e605bdf646582cbc33bb2839387da5cb2e8a3f83a8a03b5a464d01348f1 +SIZE (auerlab-vcf2hap-0.1.2_GH0.tar.gz) = 197782 Added: head/biology/vcf2hap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/vcf2hap/pkg-descr Tue Mar 23 16:32:29 2021 (r569036) @@ -0,0 +1,5 @@ +vcf2hap is a simple tool for generating a .hap file from a VCF. The .hap file +is required by haplohseq. vcf2hap is extremely fast and requires a trivial +amount of memory regardless of the size of the VCF file. + +WWW: https://github.com/auerlab/vcf2hap