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
Copy file name to clipboardexpand all lines: content/code-style/organisation.qmd
+24-1
Original file line number
Diff line number
Diff line change
@@ -5,4 +5,27 @@ date-format: D MMM, YYYY
5
5
6
6
# Project Organisation
7
7
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