BACKGROUND
One of the very useful tools for reproducible work in R is the "here" library.
- https://malco.io/2018/11/05/why-should-i-use-the-here-package-when-i-m-already-using-projects/
- http://jenrichmond.rbind.io/post/how-to-use-the-here-package/
- https://here.r-lib.org/
- https://here.r-lib.org/articles/rmarkdown.html
I was hooked by the part in the first link where they said this:
The "here" library is encoded in Anaconda as "r-here"
I'm not sure which came first, but Python has a "here" library as well.
"Here" makes relative paths a trivial matter, which is really useful for reproducible data-science and analysis work.
QUESTION
What is the Julia equivalent for clean handling of relative paths for files?
Is there a clean way to integrate that with project packaging, like RStudio does?
Based on the description, it sounds like DrWatson.jl does what you're looking for. From the website:
Like the description implies, it's more ambitious than
here
seems to be, having functionality to also manage data, simulation runs, etc. But they're optional, and you can use only the directory handling part if you need.The Navigating a Project describes the
projectdir
function which works similar tohere
.projectdir("foo", "bar")
resolves tofoo/bar
under the current project's root directory, just like withhere
.There's also
datadir()
,srcdir()
, and others to directly handle common subdirectories under a project for eg.datadir("foo", "test.jld2")
resolves todata/foo/test.jld2
under the project's root directory.