Skip to content

Releases: chendaniely/computational-project-cookie-cutter

DOI Release

02 Apr 20:30
Compare
Choose a tag to compare

This is simply a release number change to trigger a DOI from zenodo
There are no code changes

Hotfix release

02 Apr 20:20
Compare
Choose a tag to compare

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, use cat and a heredoc.

Cookie Cutter Init

04 Feb 18:03
Compare
Choose a tag to compare

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