|
Last change
on this file was
4073,
checked in by westram, 19 years ago
|
|
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
653 bytes
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | |
|---|
| 3 | PHYML : a program that computes maximum likelihood phylogenies from |
|---|
| 4 | DNA or AA homologous sequences |
|---|
| 5 | |
|---|
| 6 | Copyright (C) Stephane Guindon. Oct 2003 onward |
|---|
| 7 | |
|---|
| 8 | All parts of the source except where indicated are distributed under |
|---|
| 9 | the GNU public licence. See http://www.opensource.org for details. |
|---|
| 10 | |
|---|
| 11 | */ |
|---|
| 12 | |
|---|
| 13 | #ifndef OPTIONS_H |
|---|
| 14 | #define OPTIONS_H |
|---|
| 15 | |
|---|
| 16 | void Usage(); |
|---|
| 17 | option *Get_Input(int argc, char **argv); |
|---|
| 18 | void Init_Optimiz(optimiz *s_opt); |
|---|
| 19 | void Get_Input_Interactive(option *input); |
|---|
| 20 | void Get_Input_CommandLine_DNA(option *input, int argc, char **argv); |
|---|
| 21 | void Get_Input_CommandLine_AA(option *input, int argc, char **argv); |
|---|
| 22 | void Set_Defaults(option* input); |
|---|
| 23 | |
|---|
| 24 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.