Skip to content

Commit 257276c

Browse files
authored
Merge pull request #11 from dc2917/add_template_ref
Reference template repository
2 parents d25a26d + 8d14049 commit 257276c

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

content/code-style/organisation.qmd

+24-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,27 @@ date-format: D MMM, YYYY
55

66
# Project Organisation
77

8-
:construction: *Nothing here yet! Check back later.* :construction:
8+
One thing that makes a project difficult to reproduce is a disorganised project folder. Adhering to a consistent structure convention mitigates others from opening the project folder to find a big heap of confusingly named scripts.
9+
10+
Use folders/directories to organise your project, so that it is obvious (to you and anyone else who uses your code) where to find what is needed.
11+
12+
At the very top level of your project, why not have something like the following structure?
13+
14+
```
15+
├── src/ # source code
16+
│ ├── @MyClass/ # a class directory
17+
│ ├── a_module/ # a directory containing a group of functions or classes with some commonality
18+
│ └── utils/ # a directory containing utility functions
19+
├── data/ # directory to contain your data
20+
│ ├── raw/ # all your raw, unprocessed data
21+
│ └── processed/ # any data that you have altered
22+
├── output/ # directory to contain your output
23+
│ ├── figures/ # keep the figures that you produce from your code here
24+
│ └── reports/ # a clear folder for your papers or reports for the project
25+
├── docs/ # documentation
26+
├── tests/ # software tests for the project
27+
├── README # readme file! (essential)
28+
└── LICENSE # license file (essential)
29+
```
30+
31+
You can make use of a [matlab-project-template](https://github.com/reproducibleMATLAB/matlab-project-template) GitHub repository which contains this directory structure as a template with placeholder information, designed specifically for MATLAB projects.

0 commit comments

Comments
 (0)