| 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 | #include <config.h> |
|---|
| 14 | |
|---|
| 15 | #ifndef NEXUS_H |
|---|
| 16 | #define NEXUS_H |
|---|
| 17 | |
|---|
| 18 | #include "utilities.h" |
|---|
| 19 | |
|---|
| 20 | void Find_Nexus_Com(char *token,nexcom **found_com,nexparm **default_parm,nexcom **com_list); |
|---|
| 21 | void Find_Nexus_Parm(char *token,nexparm **found_parm,nexcom *curr_com); |
|---|
| 22 | int Read_Nexus_Taxa(char *token,nexparm *curr_parm,option *io); |
|---|
| 23 | int Read_Nexus_Translate(char *token,nexparm *curr_parm,option *io); |
|---|
| 24 | int Read_Nexus_Matrix(char *token,nexparm *curr_parm,option *io); |
|---|
| 25 | int Read_Nexus_Tree(char *token,nexparm *curr_parm,option *io); |
|---|
| 26 | int Read_Nexus_Begin(char *token,nexparm *curr_parm,option *io); |
|---|
| 27 | int Read_Nexus_Dimensions(char *token,nexparm *curr_parm,option *io); |
|---|
| 28 | int Read_Nexus_Format(char *token,nexparm *curr_parm,option *io); |
|---|
| 29 | int Read_Nexus_Eliminate(char *token,nexparm *curr_parm,option *io); |
|---|
| 30 | int Read_Nexus_Taxlabel(char *token,nexparm *curr_parm,option *io); |
|---|
| 31 | int Read_Nexus_Charstatelabels(char *token,nexparm *curr_parm,option *io); |
|---|
| 32 | int Read_Nexus_Charlabels(char *token,nexparm *curr_parm,option *io); |
|---|
| 33 | int Read_Nexus_Statelabels(char *token,nexparm *curr_parm,option *io); |
|---|
| 34 | |
|---|
| 35 | #endif |
|---|