forked from Lainports/freebsd-ports
assembly Consed is a tool for viewing, editing, and finishing sequence assemblies. The port is constituted of 4 parts: biology/phred: base caller with quality evaluation biology/phrap: sequence assembler for shotgun sequencing biology/consed: workbench biology/phd2fasta: small utility All these can be used separately; however, most function of consed depends on the others. Although these programs are licensed freely for academic and nonprofit purposes, users have to contact the authors to get the softwares. Phred (including phd2fasta) and phrap are emailed, and consed can be downloaded to a restricted IP address. For commercial users, the licensing fee is ca. $10,000 at the time of writing. PR: ports/118548 Submitted by: Motomichi Matsuzaki <mzaki@biol.s.u-tokyo.ac.jp>
27 lines
779 B
Text
27 lines
779 B
Text
--- makefile.orig 1999-03-11 15:13:20.000000000 +0900
|
|
+++ makefile 2007-12-11 13:19:39.000000000 +0900
|
|
@@ -23,8 +23,8 @@
|
|
#*****************************************************************************/
|
|
|
|
# Makefile for swat, phrap, cross_match, phrapview; also swprobs (currently inactivated)
|
|
-CC= cc
|
|
-CFLAGS= -O2
|
|
+CC?= cc
|
|
+#CFLAGS= -O2
|
|
LFLAGS= -lm
|
|
|
|
SWATOBJS= swat.o weibull.o
|
|
@@ -55,11 +55,11 @@
|
|
|
|
manyreads:
|
|
touch swat.h;
|
|
- make CFLAGS="-O2 -DMANYREADS" phrap cross_match;
|
|
+ make CFLAGS="$(CFLAGS) -DMANYREADS" phrap cross_match;
|
|
mv phrap phrap.manyreads;
|
|
mv cross_match cross_match.manyreads;
|
|
touch swat.h;
|
|
- make CFLAGS="-O2 -DLONGREADS" phrap;
|
|
+ make CFLAGS="$(CFLAGS) -DLONGREADS" phrap;
|
|
mv phrap phrap.longreads;
|
|
touch swat.h;
|
|
make phrap cross_match;
|