1
0
Fork 0
mirror of https://github.com/MillironX/beefblup.git synced 2024-11-13 03:03:08 +00:00

Fix results file name creation

This commit is contained in:
Thomas A. Christensen II 2021-06-19 11:50:02 -05:00
parent 530258a2c8
commit 1885aa15ef
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -43,7 +43,7 @@ end
function beefblup(datafile::String, h2::Float64)
# Assume the data is named the same as the file without the trailing extension
dataname = split(datafile, ".")[1:end-1]
dataname = join(split(datafile, ".")[1:end-1])
# Create a new results name
resultsfile = string(dataname, "_results.txt")