-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates Snakefile to be able to run all preprocessing
With this commit, the Snakefile can now run the (BIDS) preprocessing correctly. this adds a couple helper files (cluster.json, config.yml) to help with this, as well as updating the README and the .gitignore to better explain snakemake and ignore .snakemake, respectively. requirements also updated to include pyPyrTools
- Loading branch information
Showing
6 changed files
with
97 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,3 +71,6 @@ target/ | |
|
||
# exclude data from source control by default | ||
/data/ | ||
|
||
# ignore snakemake hidden directory | ||
.snakemake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"__default__": | ||
{ | ||
"nodes": 1, | ||
"tasks_per_node": 1, | ||
"cpus_per_task": 1, | ||
"mem": "48GB", | ||
"time": "12:00:00" | ||
}, | ||
|
||
"preprocess": | ||
{ | ||
"job_name": "preproc", | ||
"mem": "10GB" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DATA_DIR: "/scratch/wfb229/spatial_frequency_preferences" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ matplotlib | |
seaborn | ||
numpy>=1.13.0 | ||
scipy | ||
pyPyrTools |