From owner-svn-ports-all@freebsd.org Fri Jun 5 01:55:53 2020 Return-Path: Delivered-To: svn-ports-all@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 87EC333B132; Fri, 5 Jun 2020 01:55:53 +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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49dQj53TJpz4cg5; Fri, 5 Jun 2020 01:55:53 +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 5911A9612; Fri, 5 Jun 2020 01:55:53 +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 0551tr3p075280; Fri, 5 Jun 2020 01:55:53 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0551tnSD075259; Fri, 5 Jun 2020 01:55:49 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <202006050155.0551tnSD075259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Fri, 5 Jun 2020 01:55:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537982 - in head/biology: . subread subread/files X-SVN-Group: ports-head X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in head/biology: . subread subread/files X-SVN-Commit-Revision: 537982 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2020 01:55:53 -0000 Author: jwb Date: Fri Jun 5 01:55:49 2020 New Revision: 537982 URL: https://svnweb.freebsd.org/changeset/ports/537982 Log: biology/subread: Read alignment, quantification and mutation discovery The Subread package comprises a suite of software programs for processing next-gen sequencing read data including: Subread: a general-purpose read aligner Subjunc: a read aligner developed for aligning RNA-seq reads featureCounts: a software program developed for counting reads to genomic features such as genes, exons, promoters and genomic bins. Sublong: a long-read aligner that is designed based on seed-and-vote. exactSNP: discovers SNPs by testing signals against local background noise. Added: head/biology/subread/ head/biology/subread/Makefile (contents, props changed) head/biology/subread/distinfo (contents, props changed) head/biology/subread/files/ head/biology/subread/files/Makefile.pkg (contents, props changed) head/biology/subread/files/patch-HelperFunctions.c (contents, props changed) head/biology/subread/files/patch-core-junction.c (contents, props changed) head/biology/subread/files/patch-gene-algorithms.c (contents, props changed) head/biology/subread/files/patch-input-files.c (contents, props changed) head/biology/subread/files/patch-long-hashtable.c (contents, props changed) head/biology/subread/files/patch-longread-one_LRMsorted-hashtable.c (contents, props changed) head/biology/subread/files/patch-longread-one_Makefile (contents, props changed) head/biology/subread/files/patch-longread-one_longread-mapping.c (contents, props changed) head/biology/subread/files/patch-read-repair.c (contents, props changed) head/biology/subread/files/patch-sambam-file.c (contents, props changed) head/biology/subread/files/patch-sorted-hashtable.c (contents, props changed) head/biology/subread/files/patch-subread.h (contents, props changed) head/biology/subread/pkg-descr (contents, props changed) head/biology/subread/pkg-plist (contents, props changed) Modified: head/biology/Makefile Modified: head/biology/Makefile ============================================================================== --- head/biology/Makefile Thu Jun 4 23:51:51 2020 (r537981) +++ head/biology/Makefile Fri Jun 5 01:55:49 2020 (r537982) @@ -160,6 +160,7 @@ SUBDIR += stacks SUBDIR += star SUBDIR += stringtie + SUBDIR += subread SUBDIR += tRNAscan-SE SUBDIR += tabixpp SUBDIR += tophat Added: head/biology/subread/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/Makefile Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= subread +DISTVERSION= 2.0.1 +DISTVERSIONSUFFIX= -source +CATEGORIES= biology +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION} + +MAINTAINER= jwb@FreeBSD.org +COMMENT= High-performance read alignment, quantification and mutation discovery + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKDIR}/${DISTNAME}/LICENSE + +LIB_DEPENDS= libsysinfo.so:devel/libsysinfo + +USES= gmake localbase:ldflags + +MAKEFILE= ${FILESDIR}/Makefile.pkg +WRKSRC_SUBDIR= src +INSTALL_TARGET= install-strip + +.include Added: head/biology/subread/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/distinfo Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,3 @@ +TIMESTAMP = 1591305316 +SHA256 (subread-2.0.1-source.tar.gz) = d808eb5b1823c572cb45a97c95a3c5acb3d8e29aa47ec74e3ca1eb345787c17b +SIZE (subread-2.0.1-source.tar.gz) = 23260381 Added: head/biology/subread/files/Makefile.pkg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/Makefile.pkg Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,104 @@ + + +include makefile.version + +CCFLAGS = -DMAKE_FOR_EXON -DMAKE_STANDALONE \ + -DSUBREAD_VERSION=\"${SUBREAD_VERSION}\" -D_FILE_OFFSET_BITS=64 +LDFLAGS += -DMAKE_FOR_EXON -DMAKE_STANDALONE -pthread -lsysinfo -lz -lm +CC ?= gcc +CC += ${CCFLAGS} + +BINS = detectionCall sublong repair txUnique featureCounts removeDup \ + exactSNP subread-buildindex subindel subread-align subjunc \ + qualityScores subread-fullscan propmapped flattenGTF \ + +MKDIR ?= mkdir -p +INSTALL ?= install +DESTDIR ?= . +PREFIX ?= local +STRIP ?= strip + +ALL_LIBS= core core-junction core-indel sambam-file sublog gene-algorithms hashtable input-files sorted-hashtable gene-value-index exon-algorithms HelperFunctions interval_merge long-hashtable core-bigtable seek-zlib input-blc +ALL_OBJECTS=$(addsuffix .o, ${ALL_LIBS}) +ALL_H=$(addsuffix .h, ${ALL_LIBS}) +ALL_C=$(addsuffix .c, ${ALL_LIBS}) + +all: genRandomReads detectionCall sublong repair txUnique featureCounts removeDup exactSNP subread-buildindex subindel subread-align subjunc qualityScores subread-fullscan propmapped flattenGTF # samMappedBases mergeVCF testZlib + mkdir -p ../bin/utilities + mv longread-one/LRM longread-one/sublong + mv longread-one/sublong subread-align subjunc featureCounts subindel exactSNP subread-buildindex ../bin/ + mv detectionCall genRandomReads repair propmapped qualityScores removeDup subread-fullscan txUnique flattenGTF ../bin/utilities + +sublong: longread-one/longread-mapping.c ${ALL_OBJECTS} + echo " " > longread-one/make.version + rm -f longread-one/*.o + cd longread-one && $(MAKE) + +genRandomReads: gen_rand_reads.c ${ALL_OBJECTS} + ${CC} -o genRandomReads gen_rand_reads.c ${ALL_OBJECTS} ${LDFLAGS} + +flattenGTF: flattenAnnotations.c ${ALL_OBJECTS} + ${CC} -o flattenGTF flattenAnnotations.c ${ALL_OBJECTS} ${LDFLAGS} + +detectionCall: detection-calls.c ${ALL_OBJECTS} + ${CC} -o detectionCall detection-calls.c ${ALL_OBJECTS} ${LDFLAGS} + +repair: read-repair.c ${ALL_OBJECTS} + ${CC} -o repair read-repair.c ${ALL_OBJECTS} ${LDFLAGS} + +txUnique: tx-unique.c tx-unique.h ${ALL_OBJECTS} + ${CC} -o txUnique tx-unique.c ${ALL_OBJECTS} ${LDFLAGS} + +globalReassembly: global-reassembly.c ${ALL_OBJECTS} + ${CC} -o globalReassembly global-reassembly.c ${ALL_OBJECTS} ${LDFLAGS} + +propmapped: propmapped.c ${ALL_OBJECTS} + ${CC} -o propmapped propmapped.c ${ALL_OBJECTS} ${LDFLAGS} + +exactSNP: SNPCalling.c SNPCalling.h ${ALL_OBJECTS} + ${CC} -o exactSNP SNPCalling.c ${ALL_OBJECTS} ${LDFLAGS} + +subread-buildindex: index-builder.c subread.h ${ALL_OBJECTS} + ${CC} -o subread-buildindex index-builder.c ${ALL_OBJECTS} ${LDFLAGS} + +removeDup: removeDupReads.c removeDupReads.h subread.h ${ALL_OBJECTS} + ${CC} -o removeDup removeDupReads.c ${ALL_OBJECTS} ${LDFLAGS} + +subindel: SUBindel.c core.h subread.h ${ALL_OBJECTS} + ${CC} -o subindel SUBindel.c ${ALL_OBJECTS} ${LDFLAGS} + +featureCounts: readSummary.c subread.h ${ALL_OBJECTS} + ${CC} -o featureCounts readSummary.c ${ALL_OBJECTS} ${LDFLAGS} + +subread-align: core-interface-aligner.c ${ALL_OBJECTS} + ${CC} -o subread-align core-interface-aligner.c ${ALL_OBJECTS} ${LDFLAGS} + +subjunc: core-interface-subjunc.c ${ALL_OBJECTS} + ${CC} -o subjunc core-interface-subjunc.c ${ALL_OBJECTS} ${LDFLAGS} + +subtools: subtools.c ${ALL_OBJECTS} + ${CC} -o subtools subtools.c ${ALL_OBJECTS} ${LDFLAGS} + +qualityScores: qualityScores.c ${ALL_OBJECTS} + ${CC} -o qualityScores qualityScores.c ${ALL_OBJECTS} ${LDFLAGS} + +subread-fullscan: fullscan.c ${ALL_OBJECTS} + ${CC} -o subread-fullscan fullscan.c ${ALL_OBJECTS} ${LDFLAGS} + +.PHONY: clean install install-strip + +install-strip: install + ${STRIP} ${DESTDIR}${PREFIX}/bin/* + +install: + ${MKDIR} ${DESTDIR}${PREFIX}/bin + ${INSTALL} -c \ + ../bin/exactSNP \ + ../bin/featureCounts \ + ../bin/sub* \ + ../bin/utilities/* \ + ${DESTDIR}${PREFIX}/bin + +clean: + rm -f core featureCounts exactSNP removeDup subread-buildindex \ + ${ALL_OBJECTS} Added: head/biology/subread/files/patch-HelperFunctions.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-HelperFunctions.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,20 @@ +--- HelperFunctions.c.orig 2020-06-04 23:58:40 UTC ++++ HelperFunctions.c +@@ -845,7 +845,7 @@ int strcmp_number(char * s1, char * s2) + + int mac_str(char * str_buff) + { +-#if defined(FREEBSD) || defined(__MINGW32__) ++#if defined(__FreeBSD__) || defined(__MINGW32__) + return 1; + #else + #ifdef MACOS +@@ -2703,7 +2703,7 @@ void main(){ + + int get_free_total_mem(size_t * total, size_t * free_mem){ + +-#ifdef FREEBSD ++#ifdef __FreeBSD__ + return -1; + #endif + Added: head/biology/subread/files/patch-core-junction.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-core-junction.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,10 @@ +--- core-junction.c.orig 2018-11-08 15:19:02 UTC ++++ core-junction.c +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + #include "subread.h" + #include "sublog.h" + #include "gene-value-index.h" Added: head/biology/subread/files/patch-gene-algorithms.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-gene-algorithms.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,20 @@ +--- gene-algorithms.c.orig 2020-06-04 23:57:31 UTC ++++ gene-algorithms.c +@@ -28,7 +28,7 @@ + #include + #include + +-#ifndef FREEBSD ++#ifndef __FreeBSD__ + #include + #endif + +@@ -1563,7 +1563,7 @@ int load_offsets(gene_offset_t* offsets , const char i + + double miltime(){ + double ret; +- #ifdef FREEBSD ++ #ifdef __FreeBSD__ + struct timeval tp; + struct timezone tz; + tz.tz_minuteswest=0; Added: head/biology/subread/files/patch-input-files.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-input-files.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,11 @@ +--- input-files.c.orig 2020-06-05 00:33:03 UTC ++++ input-files.c +@@ -48,7 +48,7 @@ FILE * f_subr_open(const char * fname, const char * mo + #ifdef __MINGW32__ + return fopen64(fname, mode); + #else +-#if defined(__LP64__) || defined(_LP64) || defined(MACOS) ++#if defined(__LP64__) || defined(_LP64) || defined(MACOS) || defined(__FreeBSD__) + return fopen(fname, mode); + #else + return fopen64(fname, mode); Added: head/biology/subread/files/patch-long-hashtable.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-long-hashtable.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,11 @@ +--- long-hashtable.c.orig 2020-06-04 23:59:33 UTC ++++ long-hashtable.c +@@ -22,7 +22,7 @@ + #include + + #ifndef MACOS +-#ifndef FREEBSD ++#ifndef __FreeBSD__ + #include + #endif + #endif Added: head/biology/subread/files/patch-longread-one_LRMsorted-hashtable.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-longread-one_LRMsorted-hashtable.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,15 @@ +--- longread-one/LRMsorted-hashtable.c.orig 2018-11-08 14:47:43 UTC ++++ longread-one/LRMsorted-hashtable.c +@@ -22,11 +22,9 @@ + #include + #include "LRMsorted-hashtable.h" + +-#ifndef MACOS +-#ifndef FREEBSD ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + #include + #endif +-#endif + + #include + #include "LRMfile-io.h" Added: head/biology/subread/files/patch-longread-one_Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-longread-one_Makefile Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,30 @@ +--- longread-one/Makefile.orig 2019-09-04 04:22:49 UTC ++++ longread-one/Makefile +@@ -1,12 +1,12 @@ +-CC_EXEC = gcc + OPT_LEVEL = 3 + + include ../makefile.version + include make.version + +-CCFLAGS = -mtune=core2 ${MACOS} -O${OPT_LEVEL} -Wall -DMAKE_FOR_EXON -D MAKE_STANDALONE -D_FILE_OFFSET_BITS=64 -DSUBREAD_VERSION=\"${SUBREAD_VERSION}\" ${WARNING_LEVEL} ${MINGW32} +-LDFLAGS = -lpthread -lz -lm -O${OPT_LEVEL} -DMAKE_FOR_EXON -D MAKE_STANDALONE # -DREPORT_ALL_THE_BEST +-CC = ${CC_EXEC} ${CCFLAGS} -fmessage-length=0 -ggdb ++CC ?= gcc ++CFLAGS += -DMAKE_FOR_EXON -D MAKE_STANDALONE -D_FILE_OFFSET_BITS=64 \ ++ -DSUBREAD_VERSION=\"${SUBREAD_VERSION}\" ${WARNING_LEVEL} ${MINGW32} ++LDFLAGS += -lpthread -lz -lm -O${OPT_LEVEL} -DMAKE_FOR_EXON -D MAKE_STANDALONE # -DREPORT_ALL_THE_BEST + + ALL_LIBS=LRMsorted-hashtable LRMbase-index LRMchro-event LRMhelper LRMseek-zlib LRMfile-io LRMhashtable + ALL_OBJECTS=$(addsuffix .o, ${ALL_LIBS}) +@@ -20,8 +20,8 @@ clean: + rm -f *.o LRM + + LRM: longread-mapping.c ${ALL_OBJECTS} +- ${CC} -o LRM longread-mapping.c ${ALL_OBJECTS} ${LDFLAGS} ++ ${CC} -o LRM ${CFLAGS} longread-mapping.c ${ALL_OBJECTS} ${LDFLAGS} + + $(ALL_OBJECTS): $(ALL_C) $(ALL_H) +- $(CC) -o $@ -c $(subst .o,.c,$@) ++ $(CC) -o $@ -c ${CFLAGS} $(subst .o,.c,$@) + Added: head/biology/subread/files/patch-longread-one_longread-mapping.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-longread-one_longread-mapping.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,37 @@ +--- longread-one/longread-mapping.c.orig 2019-09-04 04:22:49 UTC ++++ longread-one/longread-mapping.c +@@ -30,7 +30,9 @@ + #ifndef __MINGW32__ + #include + #endif ++#ifndef __FreeBSD__ // Deprecated on FreeBSD + #include ++#endif + #include + #include + #include +@@ -223,9 +225,24 @@ int LRMvalidate_and_init_context(LRMcontext_t ** conte + + double LRMmiltime(){ + double ret; ++ ++/* Why not use gettimeofday() on all platforms? */ ++#ifdef __FreeBSD__ ++ ++ struct timeval tp; ++ struct timezone tz; ++ tz.tz_minuteswest=0; ++ tz.tz_dsttime=0; ++ gettimeofday(&tp,&tz); ++ ret = tp.tv_sec+ 0.001*0.001* tp.tv_usec; ++ ++#else ++ + struct timeb trp; + ftime(&trp); + ret = trp.time*1.0+(trp.millitm*1.0/1000.0); ++ ++#endif + return ret; + } + Added: head/biology/subread/files/patch-read-repair.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-read-repair.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,10 @@ +--- read-repair.c.orig 2018-11-08 15:20:06 UTC ++++ read-repair.c +@@ -3,6 +3,7 @@ + #include + #include + #include ++#include + #include "subread.h" + #include "core.h" + #include "input-files.h" Added: head/biology/subread/files/patch-sambam-file.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-sambam-file.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,10 @@ +--- sambam-file.c.orig 2018-11-08 15:20:35 UTC ++++ sambam-file.c +@@ -30,6 +30,7 @@ + #include + #include + #include ++#include + #include "subread.h" + #include "core.h" + #include "gene-algorithms.h" Added: head/biology/subread/files/patch-sorted-hashtable.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-sorted-hashtable.c Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,15 @@ +--- sorted-hashtable.c.orig 2018-11-08 03:33:50 UTC ++++ sorted-hashtable.c +@@ -23,11 +23,9 @@ + #include + #include + +-#ifndef MACOS +-#ifndef FREEBSD ++#if !defined(__FreeBSD__) && !defined(__APPLE__) + #include + #endif +-#endif + + #include + #include"core.h" Added: head/biology/subread/files/patch-subread.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/files/patch-subread.h Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,11 @@ +--- subread.h.orig 2018-11-08 14:46:06 UTC ++++ subread.h +@@ -102,7 +102,7 @@ + + #define USE_POSIX_MUTEX_LOCK + +-#if defined(MACOS) || defined(FREEBSD) || defined(USE_POSIX_MUTEX_LOCK) ++#if defined(__APPLE__) || defined(__FreeBSD__) || defined(USE_POSIX_MUTEX_LOCK) + typedef pthread_mutex_t subread_lock_t; + #define pthread_spinlock_t pthread_mutex_t + #define pthread_spin_lock pthread_mutex_lock Added: head/biology/subread/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/pkg-descr Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,20 @@ +The Subread package comprises a suite of software programs for processing +next-gen sequencing read data including: + + Subread: a general-purpose read aligner which can align both genomic + DNA-seq and RNA-seq reads. It can also be used to discover genomic + mutations including short indels and structural variants. + + Subjunc: a read aligner developed for aligning RNA-seq reads and for the + detection of exon-exon junctions. Gene fusion events can be detected as + well. + + featureCounts: a software program developed for counting reads to genomic + features such as genes, exons, promoters and genomic bins. + + Sublong: a long-read aligner that is designed based on seed-and-vote. + + exactSNP: a SNP caller that discovers SNPs by testing signals against local + background noises. + +WWW: http://bioinf.wehi.edu.au/subread-package/ Added: head/biology/subread/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/subread/pkg-plist Fri Jun 5 01:55:49 2020 (r537982) @@ -0,0 +1,16 @@ +bin/detectionCall +bin/exactSNP +bin/featureCounts +bin/flattenGTF +bin/genRandomReads +bin/propmapped +bin/qualityScores +bin/removeDup +bin/repair +bin/subindel +bin/subjunc +bin/sublong +bin/subread-align +bin/subread-buildindex +bin/subread-fullscan +bin/txUnique