Skip to content

Commit 8b76773

Browse files
author
Andres Varon
committed
[svn] Initial branch of version 4.1 development.
0 parents  commit 8b76773

File tree

491 files changed

+177267
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

491 files changed

+177267
-0
lines changed

AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Andr�s Var�n <[email protected]>
2+
Le Sy Vinh <[email protected]>
3+
Illya Bomash
4+
Ward Wheeler <[email protected]>

COPYING

+340
Large diffs are not rendered by default.

INSTALL

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
In order to compile POY, the minimal requirements are:
2+
3+
- Objective Caml version 3.10.0, which can be found in
4+
http://www.ocaml.org.
5+
6+
- An ISO 99 C compiler.
7+
8+
- The GNU Make toolbox (version 3.80).
9+
10+
- Readline or ncurses
11+
12+
To compile the program, first modify the relevant paths and options in config
13+
(there is a brief description on each group of options or you can see the
14+
program's documentation), and then simply:
15+
16+
./configure
17+
make
18+
make install
19+
20+
The last command should probably be run as superuser. Check the configuration
21+
options with ./configure --help.
22+
23+
Enjoy!

LICENSE

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
POY 4.0 Beta. A phylogenetic analysis program using Dynamic Homologies.
2+
Copyright (C) 2007 Andr�s Var�n, Le Sy Vinh, Illya Bomash, Ward Wheeler,
3+
and the American Museum of Natural History.
4+
5+
This program is free software; you can redistribute it and/or modify
6+
it under the terms of the GNU General Public License as published by
7+
the Free Software Foundation; either version 2 of the License, or
8+
(at your option) any later version.
9+
10+
This program is distributed in the hope that it will be useful,
11+
but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
GNU General Public License for more details.
14+
15+
You should have received a copy of the GNU General Public License
16+
along with this program; if not, write to the Free Software
17+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
18+
USA

Makefile.in

+171
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
# $Id: Makefile 1485 2007-01-04 23:08:52Z andres $
2+
# Compilers
3+
SHELL = /bin/sh
4+
VPATH = @srcdir@
5+
6+
subdirs=@subdirs@
7+
top_srcdir = @top_srcdir@
8+
srcdir = @srcdir@
9+
prefix = @prefix@
10+
exec_prefix = @exec_prefix@
11+
bindir = $(exec_prefix)/bin
12+
infodir = $(prefix)/info
13+
libdir = $(prefix)/lib/gnudl
14+
mandir = $(prefix)/man/man1
15+
16+
CC = @CC@
17+
CPPFLAGS = @CPPFLAGS@
18+
CFLAGS = $(CPPFLAGS) @CFLAGS@
19+
LDFLAGS = @LDFLAGS@
20+
LIBS = @LIBS@
21+
INSTALL = @INSTALL@
22+
USEPARALLEL := @USEPARALLEL@
23+
24+
SUBDIRS = ocamlmpi src doc
25+
26+
all:
27+
ifeq ($(USEPARALLEL), true)
28+
cd ocamlmpi; $(MAKE)
29+
$(MAKE) depend
30+
cd ../src/; $(MAKE) poy
31+
else
32+
$(MAKE) depend
33+
cd ./src/; $(MAKE) poy
34+
endif
35+
36+
.PHONY: subdirs $(SUBDIRS) clean driver install
37+
subdirs: $(SUBDIRS)
38+
39+
transform = @program_transform_name@
40+
41+
install:
42+
$(INSTALL) ./src/poy $(bindir)/`echo poy | sed -e '$(transform)'`
43+
44+
uninstall:
45+
rm -f $(bindir)/`echo poy | sed '$(transform)'`
46+
47+
MAKEOCAMLMPI :=
48+
ifeq ($(USEPARALLEL), true)
49+
MAKEOCAMLMPI := ocamlmpi
50+
endif
51+
52+
binaries: mpoy-single mpoy-dual
53+
54+
mac_panther:
55+
cp -f config myconfig
56+
cp -f config.panther config
57+
$(MAKE) clean; $(MAKE) depend; $(MAKE) mpoy.opt
58+
cp -f myconfig config
59+
cp src/mpoy.opt ./panther/poy
60+
61+
mac_ppc:
62+
cp -f config myconfig
63+
cp -f config.ppc_seq config
64+
$(MAKE) clean; $(MAKE) depend; $(MAKE) mpoy.opt
65+
cp -f myconfig config
66+
67+
mac_ppc_parallel_flat:
68+
cp -f config myconfig
69+
cp -f config.ppc_par_ncurses config
70+
$(MAKE) ocamlmpi
71+
$(MAKE) clean; $(MAKE) depend; $(MAKE) mpoy.opt
72+
cp -f myconfig config
73+
74+
mac_ppc_parallel_ncurses:
75+
cp -f config myconfig
76+
cp -f config.ppc_par config
77+
$(MAKE) ocamlmpi
78+
$(MAKE) clean; $(MAKE) depend; $(MAKE) mpoy.opt
79+
cp -f myconfig config
80+
81+
mac_ppc_parallel:
82+
$(MAKE) mac_ppc_parallel_ncurses
83+
cp src/mpoy.opt ./universal_parallel/mppoy_ppc
84+
$(MAKE) mac_ppc_parallel_flat
85+
cp src/mpoy.opt ./universal_parallel/ppoy_ppc
86+
87+
mac_intel:
88+
cp -f config myconfig
89+
cp -f config.intel_seq config
90+
$(MAKE) clean; $(MAKE) depend; $(MAKE) mpoy.opt
91+
cp -f myconfig config
92+
93+
mac_intel_parallel_flat:
94+
cp -f config myconfig
95+
cp -f config.intel_par config
96+
$(MAKE) ocamlmpi
97+
$(MAKE) clean; $(MAKE) depend; $(MAKE) mpoy.opt
98+
cp -f myconfig config
99+
100+
mac_intel_parallel_ncurses:
101+
cp -f config myconfig
102+
cp -f config.intel_par_ncurses config
103+
$(MAKE) ocamlmpi
104+
$(MAKE) clean; $(MAKE) depend; $(MAKE) mpoy.opt
105+
cp -f myconfig config
106+
107+
mac_intel_parallel:
108+
$(MAKE) mac_intel_parallel_ncurses
109+
cp src/mpoy.opt ./universal_parallel/mppoy_intel
110+
$(MAKE) mac_intel_parallel_flat
111+
cp src/mpoy.opt ./universal_parallel/ppoy_intel
112+
113+
mac_universal:
114+
$(MAKE) mac_intel
115+
cp -f ./src/mpoy.opt ./universal_sequential//poy_intel
116+
$(MAKE) mac_ppc
117+
cp -f ./src/mpoy.opt ./universal_sequential/poy_ppc
118+
lipo -create ./universal_sequential/poy_ppc ./universal_sequential/poy_intel -output ./universal_sequential/poy
119+
120+
mac_universal_parallel:
121+
$(MAKE) mac_intel_parallel
122+
$(MAKE) mac_ppc_parallel
123+
lipo -create ./universal_parallel/ppoy_ppc ./universal_parallel/ppoy_intel -output ./universal_parallel/ppoy
124+
lipo -create ./universal_parallel/mppoy_ppc ./universal_parallel/mppoy_intel -output ./universal_parallel/mppoy
125+
126+
mac_all:
127+
$(MAKE) mac_panther
128+
$(MAKE) mac_universal_parallel
129+
$(MAKE) mac_universal
130+
131+
132+
mpoy-single: $(MAKEOCAMLMPI)
133+
./set-config.pl --ncurses --no-parallel
134+
cd src; $(MAKE) clean; $(MAKE) .depend; $(MAKE) mpoy.opt
135+
mv src/mpoy.opt $@
136+
137+
mpoy-dual: $(MAKEOCAMLMPI)
138+
./set-config.pl --no-ncurses --parallel
139+
cd src; $(MAKE) clean; $(MAKE) .depend; $(MAKE) mpoy.opt
140+
mv src/mpoy.opt $@
141+
142+
poy:
143+
cd src; \
144+
$(MAKE) $@
145+
146+
mpoy: $(MAKEOCAMLMPI)
147+
cd src; \
148+
$(MAKE) $@
149+
150+
mpoy_console: $(MAKEOCAMLMPI)
151+
cd src; \
152+
$(MAKE) $@
153+
154+
depend:
155+
cd src; \
156+
$(MAKE) $@
157+
158+
$(SUBDIRS):
159+
$(MAKE) -C $@
160+
161+
clean_distros:
162+
rm -f universal_parallel/*
163+
rm -f universal_sequential/*
164+
rm -f panther/*
165+
166+
clean:
167+
@for subs in $(SUBDIRS); do \
168+
cd $$subs; \
169+
$(MAKE) clean; \
170+
cd ..; \
171+
done

NEWS

Whitespace-only changes.

README

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
README
2+
3+
----------------------------------
4+
POY 4.0 Alpha
5+
-----------------------------------
6+
This is the Phylogenetic Analysis Program using Direct Optimization. See the
7+
user documentation in docs/commands.pdf (requires Latex2e).
8+

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
POY 4.0 Beta

config.win32

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# User Interface, set to flat if you want the flat interface (good for
2+
# clusters, or non interactive sessions), ncurses for the terminal based
3+
# interface, and gtk2 for the gtk2 based interface. ncurses and gtk2 require the
4+
# respective libraries; the later requires lablgtk2 installed in the system.
5+
export USEINTERFACE = ncurses
6+
7+
# Parallel options
8+
# do you want to run in parallel?
9+
export USEPARALLEL = false
10+
# The processes do NOT share a hard drive? do you want the master to broadcast
11+
# the input files to each process? (requires a hard drive available for each processor)
12+
export USENOSHAREDHD = false
13+
export DESTDIRMPI = /usr/local/ocamlmpi
14+
export DESTDIRPOY = /usr/local/poy
15+
export MPIINCDIR = /usr/share/mpich/include
16+
export MPILIBDIR = /usr/share/mpich/lib
17+
export MPILNAME = mpich
18+
19+
export USE_LARGE_ALPHABETS = false
20+
export USE_LONG_SEQUENCES = false
21+
22+
# Compilers of choice
23+
export OCAML = ocaml
24+
export OCAMLC = ocamlc.opt
25+
export OCAMLOPT = ocamlopt.opt #-cc /opt/intel/cc/9.0/bin/icc -ccopt -i-static
26+
export OCAMLDEP = ocamldep
27+
export OCAMLTOP = ocamlmktop
28+
export OCAMLMKLIB = ocamlmklib
29+
export OCAMLYACC = ocamlyacc
30+
export OCAMLLEX = ocamllex
31+
export INCLUDE = `ocamlc -where`
32+
export DEPEND = .depend
33+
34+
# Compilation flags
35+
export FLAGS = -c\ -Wall
36+
export MKLIBOPT =
37+
38+
# The following are the recommended flags, depending on the class of processor.
39+
# If you want to compile with USEPARALLEL = true, make sure you add -cc mpicc in
40+
# the CCOPT of your choice.
41+
# Intel Processors
42+
CCOPT := -ccopt -O3 -ccopt -msse2 -ccopt -mmmx -ccopt -march=pentium4
43+
44+
# PowerPC G4 and G5
45+
#export CCOPT = -ccopt -O3 -ccopt -maltivec -ccopt -mpim-altivec -ccopt -I/usr/include/malloc/ -ccopt -mcpu=G4 -ccopt -g
46+
47+
48+
# graphical output options: ocaml,tk
49+
# non-graphical output: none
50+
export USEGRAPHICS = none
51+
52+
#If compiling for windows, set the following to true and use the following
53+
#compilation flags.
54+
export USEWIN32 = true
55+
#export CCOPT = -ccopt -mno-cygwin -ccopt -O3 $(MYARCH_CCOPT)

0 commit comments

Comments
 (0)