diff --git a/README.md b/README.md index 214771c..05c9cd6 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ Due Feb 23. +# Changes + +- 2/20 12:30: Fix typo in step1b/reorganize script. + # Data Description The raw DICOM data is located in `/scratch/psyc5171/exercises/bidshw` for a single subject, `TD902TD` (note you will need to copy and rename this folder). diff --git a/bids/code/reorganize.sh b/bids/code/reorganize.sh index dcab1c9..f2d0a1d 100755 --- a/bids/code/reorganize.sh +++ b/bids/code/reorganize.sh @@ -6,5 +6,5 @@ for SUBJECT_DIR in `ls -d /data/raw/sub-*`; do dicomsort.py -r -e .dcm $d done mv ${SUBJECT_DIR}/*/* ${SUBJECT_DIR} - m -rf ${SUBJECT_DIR}/[1-9]* + rm -rf ${SUBJECT_DIR}/[1-9]* done