FastqPuri
init_makeTree.h
Go to the documentation of this file.
1 /****************************************************************************
2  * Copyright (C) 2017 by Paula Perez Rubio *
3  * *
4  * This file is part of FastqPuri. *
5  * *
6  * FastqPuri is free software: you can redistribute it and/or modify *
7  * it under the terms of the GNU General Public License as *
8  * published by the Free Software Foundation, either version 3 of the *
9  * License, or (at your option) any later version. *
10  * *
11  * FastqPuri is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14  * GNU General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU General Public License *
17  * along with FastqPuri. *
18  * If not, see <http://www.gnu.org/licenses/>. *
19  ****************************************************************************/
20 
29 #ifndef INIT_MAKETREE_H_
30 #define INIT_MAKETREE_H_
31 
32 #include "defines.h"
33 
37 typedef struct _iparam_makeTree {
38  char *inputfasta;
40  int L;
42 
44 
45 void getarg_makeTree(int argc, char **argv);
46 
47 #endif // endif INIT_MAKETREE_H_
int L
Definition: init_makeTree.h:40
void getarg_makeTree(int argc, char **argv)
Reads in the arguments passed through the command line to makeTree. and stores them in the global var...
Definition: init_makeTree.c:64
char * inputfasta
Definition: init_makeTree.h:38
struct _iparam_makeTree Iparam_makeTree
contains makeTree input parameters
#define MAX_FILENAME
Definition: defines.h:37
Macro definitions.
char outputfile[MAX_FILENAME]
Definition: init_makeTree.h:39
void printHelpDialog_makeTree()
Function that prints makeTree help dialog when called.
Definition: init_makeTree.c:43
contains makeTree input parameters
Definition: init_makeTree.h:37