6 Project Organization
If you would like a video overview of how to organize a project using R Studio, I recommend Ming βTommyβ Tangβs tutorial on YouTube, βHow to Organize a Computational Biology Projectβ. In his tutorial he references an excellent reference on project organization, βA Quick Guide to Organizing Computational Biology Projectsβ by Noble (2009).
Bash Commands to Create Folder Directory Structure for Your R Project
Once you have created your New Project in RStudio and are in your-r-project-folder in the Terminal. You can create your README.md file and your sub-folder directory structure.
touch README.md
mkdir data doc scripts bin outputsOnce you have downloaded your raw data to your data folder, you should make the contents of the data folder read-only (non-editable) with the following command: chmod u-w -R data/