pkgsrc/biology/clustalw/Makefile
ben 7bf8866f8c Update to clustalw 1.83. Changes since 1.8 include:
* The FASTA format has been added to the list of alignment output
options.

* It is now possible to save the residue ranges (appended after the
sequence names) when saving a specified range of the alignment.

* The efficiency of  the neighour-joining algorithm has been improved.
This work was done by Tadashi Koike at the Center for Information
Biology and DNA Data Bank of Japan and FUJITSU Limited.

Some example speedups are given below : (timings on a SPARC64 CPU)

No. of sequences        original NJ     new NJ
     200                0' 12"          0.1"
     500                9' 19"          1.4"
     1000               XXXX            0' 31"

* ClustalW now returns error codes for some common errors when exiting.
This may be useful for people who run clustalw automatically from within
a script.
Error codes are:
	1	bad command line option
	2	cannot open sequence file
	3	wrong format in sequence file
	4	sequence file contains only 1 sequence (for multiple
		alignments)

* Alignments can now be saved in Nexus format, for compatibility with
PAUP, MacClade etc. For a description of the Nexus format, see:
Maddison, D. R., D. L. Swofford and W. P. Maddison.  1997.
NEXUS: an extensible file format for systematic information.
Systematic Biology 46:590-621.

* Phylogenetic trees can also be saved in nexus format.

* A ClustalW icon has been designed for MAC and PC systems.
2004-08-16 23:34:58 +00:00

31 lines
949 B
Makefile

# $NetBSD: Makefile,v 1.5 2004/08/16 23:34:58 ben Exp $
DISTNAME= clustalw1.83.UNIX
PKGNAME= clustalw-1.83
CATEGORIES= biology
MASTER_SITES= ftp://ftp-igbmc.u-strasbg.fr/pub/ClustalW/ \
ftp://ftp.ebi.ac.uk/pub/software/unix/clustalw/
MAINTAINER= babafou@babafou.eu.org
HOMEPAGE= http://www-igbmc.u-strasbg.fr/BioInfo/ClustalW/
COMMENT= General purpose multiple alignment program for DNA or proteins
MAKEFILE= makefile
ALL_TARGET= clustalw
WRKSRC= ${WRKDIR}/clustalw1.83
MAKE_FLAGS+= CC="${CC}"
post-patch:
@${SED} -e 's:@PREFIX@:${PREFIX}:' < ${WRKSRC}/clustalw.c \
> ${WRKSRC}/clustalw.c.tmp \
&& ${MV} ${WRKSRC}/clustalw.c.tmp ${WRKSRC}/clustalw.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/clustalw ${PREFIX}/bin
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/clustalw
for f in clustalv.doc clustalw.doc clustalw.ms clustalw_help; do \
${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/clustalw; \
done
.include "../../mk/bsd.pkg.mk"