| Line | |
|---|
| 1 | |
|---|
| 2 | /* |
|---|
| 3 | |
|---|
| 4 | PHYML : a program that computes maximum likelihood phylogenies from |
|---|
| 5 | DNA or AA homologous sequences |
|---|
| 6 | |
|---|
| 7 | Copyright (C) Stephane Guindon. Oct 2003 onward |
|---|
| 8 | |
|---|
| 9 | All parts of the source except where indicated are distributed under |
|---|
| 10 | the GNU public licence. See http://www.opensource.org for details. |
|---|
| 11 | |
|---|
| 12 | */ |
|---|
| 13 | |
|---|
| 14 | #include <config.h> |
|---|
| 15 | |
|---|
| 16 | #ifndef CL_H |
|---|
| 17 | #define CL_H |
|---|
| 18 | |
|---|
| 19 | #include <unistd.h> |
|---|
| 20 | #include <getopt.h> |
|---|
| 21 | #include "utilities.h" |
|---|
| 22 | #include "help.h" |
|---|
| 23 | #include "models.h" |
|---|
| 24 | #include "free.h" |
|---|
| 25 | #include "interface.h" |
|---|
| 26 | #include "sergeii.h" |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | int Read_Command_Line(option *input, int argc, char **argv); |
|---|
| 30 | |
|---|
| 31 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.