soedinglab / hh-suite

Remote protein homology detection suite.
https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-019-3019-7
GNU General Public License v3.0
529 stars 133 forks source link

fix: accept over 127 parameters #244

Closed zacharyrs closed 3 years ago

zacharyrs commented 3 years ago

Class Parameters was casting argc into to a char, limiting the number of accepted parameters.

Closes #243.

milot-mirdita commented 3 years ago

Thanks! Any particular reason you are passing every single parameter to hhblits?

zacharyrs commented 3 years ago

I was trying to automate something and wanted to keep track of what parameters were involved in the call, and this felt like the easiest way (other than writing some C++ wrapper).