veg / tn93

TN93 fast distance calculator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

missing input name

hannahkimincompbio opened this issue · comments

void dump_sequence_fasta (unsigned long index, FILE* output, long firstSequenceLength, double * d = NULL, bool = false, unsigned long from = 0L, unsigned long to = 0L);

the input name is_prot is missing in this header file. It probably should be bool is_prot = false instead of bool = false.

Dear @hannahkimincompbio,

bool is_prot = false is cleaner, but C++ function declarations don't require parameter names, just parameter types. I'll add the parameter name for clarity.

Best,
Sergei