Releases: chendaniely/computational-project-cookie-cutter
Releases · chendaniely/computational-project-cookie-cutter
DOI Release
This is simply a release number change to trigger a DOI from zenodo
There are no code changes
Hotfix release
Fixed a few problems thanks to @iglpdc
From his PR: #12
Basically, it has two fixes:
- the backticks coming from markdown should be escaped with a "", otherwise the shell will try to run what's inside
- if the target directory doesn't exist, the folder structure is created in the current directory, which maybe is not what you intended to do. This creates the target folder if it doesn't exist.
and an improvement:
- instead of using a long multiline comment and
echo
, usecat
and aheredoc
.
Cookie Cutter Init
Creates the following path, along with a README in each generated folder.
Finally creates a top-level README.md file that describes the project, its inspirations, and links back to the repo
Path_Provided
|- doc/ # directory for documentation, one subdirectory for manuscript
|
|- data/ # data for storing fixed data sets
|
|- src/ # any source code
|
|- bin/ # any compiled binaries or scripts
|
|- results/ # output for tracking computational experiments performed on data