diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-09-30 01:57:08 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-09-30 01:57:08 +0000 |
commit | f4364c13ef2fe0062e235f1e1f61c6e676e9b195 (patch) | |
tree | 2825f07469a0e3ed7d2008b2167b6c1c00269bb9 /biology/genesplicer/Makefile | |
parent | 36dab1e624b372601d0d8990cc3556a936b97757 (diff) | |
download | pkgsrc-f4364c13ef2fe0062e235f1e1f61c6e676e9b195.tar.gz |
Initial import of genesplicer, one of the many packages provided by
brook at biology dot nmsu dot edu and his team at NMSU.
GeneSplicer is a fast, flexible system for detecting splice sites in the
genomic DNA of various eukaryotes. The system has been trained and tested
successfully on Plasmodium falciparum (malaria), Arabidopsis thaliana, human,
Drosophila, and rice.
Diffstat (limited to 'biology/genesplicer/Makefile')
-rw-r--r-- | biology/genesplicer/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/biology/genesplicer/Makefile b/biology/genesplicer/Makefile new file mode 100644 index 00000000000..04175e10d3e --- /dev/null +++ b/biology/genesplicer/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/09/30 01:57:08 jschauma Exp $ +# + +DISTNAME= GeneSplicer +PKGNAME= genesplicer-20030403 +WRKSRC= ${WRKDIR}/GeneSplicer/sources +CATEGORIES= biology +MASTER_SITES= ftp://ftp.tigr.org/pub/software/GeneSplicer/ + +MAINTAINER= hdp@cs.nmsu.edu +HOMEPAGE= ftp://ftp.tigr.org/pub/software/GeneSplicer/ +COMMENT= Computational Method for Splice Site Prediction + +EXDIR= ${PREFIX}/share/examples/genesplicer +EXAMPLES= arabidopsis drosophila malaria pyoelii human rice \ + training_data_sets/Arabidopsis \ + training_data_sets/Human +MAKEFILE= makefile +USE_BUILDLINK2= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/genesplicer ${PREFIX}/bin + ${INSTALL_DATA_DIR} ${EXDIR} +.for DOC in readme fasta.example fasta.results + ${INSTALL_DATA} ${WRKSRC}/${DOC} ${EXDIR} +.endfor + cd ${WRKSRC}/../ && ${PAX} -rw ${EXAMPLES} ${EXDIR}/ + +.include "../../mk/bsd.pkg.mk" + |