I need to run a program called Bppancestor, in order to do so you use:
bppancestor param="configuration_file"
I need to run the program per all the .conf files inside a directory and I thought that a for loop could help.
I tried the following:
for f in *.conf; do "bppancestor param=$f"; done
I thought this would work but the results are:
bppancestor param=sim99_scaled_tree_4.924.nwk_alpha1.23061333143822.conf: command not found
But if I ran it separetely it works.
How could I solve this?