You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an issue when running GMG_Tomo() from an arbitrary folder. In that case, the search path is relative to the current directory. For this reason, Default_datasets.jl and GMG_TomoData.jl were not found. The recent fix consists of using the output of pkgdir(GMG_DataPicker) as a prefix. However, when GMG_Tomo is then called with a specific path+filename, things don't work anymore.
I'd suggest to replace the argument default_datasets="src/GMG_Tomo/Default_datasets.jl" with datasets=nothing and add an if-loop that sets the path to the default path in case datasets equals nothing
The text was updated successfully, but these errors were encountered:
There is an issue when running GMG_Tomo() from an arbitrary folder. In that case, the search path is relative to the current directory. For this reason, Default_datasets.jl and GMG_TomoData.jl were not found. The recent fix consists of using the output of
pkgdir(GMG_DataPicker)
as a prefix. However, when GMG_Tomo is then called with a specific path+filename, things don't work anymore.I'd suggest to replace the argument
default_datasets="src/GMG_Tomo/Default_datasets.jl"
withdatasets=nothing
and add an if-loop that sets the path to the default path in casedatasets
equalsnothing
The text was updated successfully, but these errors were encountered: