computations / root_digger

A tool to root phylogenies
MIT License
19 stars 7 forks source link

Does root_digger print the log-likelihood values ? #11

Closed josenikhid97 closed 2 years ago

josenikhid97 commented 2 years ago

Hello @josephwb, @nathanweeks

I was able to run the tool successfully, but is there any flags to be added for printing the log-likelihood values because i cant see any log-likelihood values on the terminal, all i can see is only the newick format and the inference time . is there any possible way to see the log-likelihood and also BIC values.

Best Jose

computations commented 2 years ago

The LogLH should print right above the newick on the terminal in the log. The BIC you will have to calculate yourself for now. The number of parameters in the model is something like

By default, for a single partition, the number of parameters then is 12 (subst rates) + 3 (frequencies) + 1 (rate categories) + 1 (root location) = 17.

josenikhid97 commented 2 years ago

Okay, is it possible not to print the newick format (by using flags ) or any other way possible because it prints the entire screen and i cant see even if i scroll the pointer upwards.

computations commented 2 years ago

You can redirect the output to a file with ./rd ... > analysis.log and then read the file

josenikhid97 commented 2 years ago

okay thank you for the info and for the quick reply