Created
December 1, 2017 19:44
-
-
Save brantfaircloth/76a8b809133a955ebc84a82bc3612092 to your computer and use it in GitHub Desktop.
Parse and sort LogLik values from ExaML log file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
rm -rf log-likelihoods.txt && for i in ExaML_info.*; do result=$(cat $i | grep "Likelihood of best tree"); echo $i $result | tr [:blank:] \\t >> log-likelihoods.txt; done && sort -nrk 6,6 log-likelihoods.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment