Skip to content

Commit

Permalink
Update gubbins arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Apr 23, 2024
1 parent 309fb34 commit f07aef1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const char* program_name;

// Assumptions:
// The sequences in the multi fasta alignment file are the same length
// Your only interested in SNPs, INDELS are ignored
// You are only interested in SNPs, INDELS are ignored
// The first sequence is chosen as the reference sequence
// If there is an indel in the reference sequence, the first normal base found in another strain is used.

Expand All @@ -46,9 +46,10 @@ void print_usage(FILE* stream, int exit_code)
" -t Newick tree file\n"
" -v VCF file\n"
" -f Original Multifasta file\n"
" -n Number of threads to use for recombination detection\n"
" -m Min SNPs for identifying a recombination block\n"
" -a Min window size\n"
" -b Max window size\n"
" -a Min window size\n"
" -b Max window size\n"
" -p p value for detecting recombinations\n"
" -i p value ratio for trimming recombinations\n"
" -h Display this usage information.\n\n"
Expand Down Expand Up @@ -110,7 +111,7 @@ int main (int argc, char ** argv)
};
/* getopt_long stores the option index here. */
int option_index = 0;
c = getopt_long (argc, argv, "hrxv:f:t:m:a:b:p:i:",
c = getopt_long (argc, argv, "hrxv:f:t:m:a:b:p:i:n:",
long_options, &option_index);
/* Detect the end of the options. */
if (c == -1)
Expand Down

0 comments on commit f07aef1

Please sign in to comment.