I run the following line in ubuntu:
needle alvo.txt modelo.txt
When running it displays these lines:
Needleman-Wunsch global alignment of two sequences
I need to give an enter to go as default in this:
Gap opening penalty [10.0]:
and in this:
Gap extension penalty [0.5]:
and one more enter to have the final file on this line:
Output alignment [hba_human.needle]:
How would you put these commands to run in php code?
I tried running the command shell_exec ('needle alvo.txt modelo.txt')
the problem is that the program is not a one-line executable I need to give the Enters to default to the other lines.