Browse Source

Update 'README.md'

Paul Spitzner 11 months ago
parent
commit
afa58376bb
1 changed files with 9 additions and 2 deletions
  1. 9 2
      README.md

+ 9 - 2
README.md

@@ -1,7 +1,7 @@
 # Stimulating Modular Cultures
 ## Data repository
 
-This repository contains experimental data, processed analysis results, and rendered movies to accompany the paper.
+This repository contains experimental data, processed analysis results, and rendered movies to accompany the paper. The subfolders contain compressed zip files, that can be downloaded separately. See below for where individual parts should be placed.
 
 Citable reference:
 ```bibtex
@@ -23,7 +23,14 @@ The source code is available via GitHub: [https://github.com/Priesemann-Group/st
 
 To enable plot scripts using the downloaded data (this repo), extract the `zip` files and place the [`/dat/`](dat/) folder inside the base directory of the GitHub repository.
 
-The following structure is assumed:
+You can use the following one-liner to extract all zip files, if you cloned the full repo:
+```
+cd repo_dir
+find ./dat/ -name "*.zip" | while read filename; do unzip -o -d "`dirname "$filename"`" "$filename"; done;
+
+```
+
+The following structure is assumed by the analysis code (and will be created with above command):
 ```
 stimulating_modular_cultures (code repo)/
 ├── ana/paper_plots.py