Skip to content

Commit 7c63a0d

Browse files
committed
updating a data structure tree
1 parent 91e89f9 commit 7c63a0d

File tree

1 file changed

+51
-29
lines changed

1 file changed

+51
-29
lines changed

notebooks/basic_data_input.ipynb

Lines changed: 51 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -35,33 +35,55 @@
3535
"To be able to import data, you first need to be aware about the structure of your dataset. The structure of the dataset for this tutorial is according to BIDS, and looks as follows:\n",
3636
"\n",
3737
" ds000114\n",
38+
" ├── CHANGES\n",
3839
" ├── dataset_description.json\n",
3940
" ├── derivatives\n",
41+
" │   ├── fmriprep\n",
42+
" │   │   └── sub01...sub10\n",
43+
" │   │   └── ...\n",
4044
" │   ├── freesurfer\n",
41-
" │   │   └── ...\n",
45+
" │   ├── fsaverage\n",
46+
" │   ├── fsaverage5\n",
47+
" │   │   └── sub01...sub10\n",
48+
" │   │   └── ...\n",
4249
" ├── dwi.bval\n",
4350
" ├── dwi.bvec\n",
4451
" ├── sub-01\n",
45-
" │   ├── anat\n",
46-
" │   │   └── sub-01_T1w.nii.gz\n",
47-
" │   └── func\n",
48-
" │   ├── sub-01_task-fingerfootlips_bold.nii.gz\n",
49-
" │   ├── sub-01_task-linebisection_bold.nii.gz\n",
50-
" │   └── sub-01_task-linebisection_events.tsv\n",
51-
" │ └── dwi\n",
52-
" │ └── sub-01_dwi.nii.gz\n",
53-
" ├── sub-02\n",
54-
" │   ├── anat\n",
55-
" │   │   └── sub-02_T1w.nii.gz\n",
56-
" │   └── func\n",
57-
" │   ├── sub-02_task-fingerfootlips_bold.nii.gz\n",
58-
" │   ├── sub-02_task-linebisection_bold.nii.gz\n",
59-
" │   └── sub-02_task-linebisection_events.tsv\n",
60-
" │ └── dwi\n",
61-
" │ └── sub-02_dwi.nii.gz\n",
52+
" │   ├── ses-retest \n",
53+
" │   ├── anat\n",
54+
" │   │   └── sub-01_ses-retest_T1w.nii.gz\n",
55+
" │   ├──func\n",
56+
" │   ├── sub-01_ses-retest_task-covertverbgeneration_bold.nii.gz\n",
57+
" │   ├── sub-01_ses-retest_task-fingerfootlips_bold.nii.gz\n",
58+
" │   ├── sub-01_ses-retest_task-linebisection_bold.nii.gz\n",
59+
" │   ├── sub-01_ses-retest_task-linebisection_events.tsv\n",
60+
" │   ├── sub-01_ses-retest_task-overtverbgeneration_bold.nii.gz\n",
61+
" │   └── sub-01_ses-retest_task-overtwordrepetition_bold.nii.gz\n",
62+
" │ └── dwi\n",
63+
" │ └── sub-01_ses-retest_dwi.nii.gz\n",
64+
" │   ├── ses-test \n",
65+
" │   ├── anat\n",
66+
" │   │   └── sub-01_ses-test_T1w.nii.gz\n",
67+
" │   ├──func\n",
68+
" │   ├── sub-01_ses-test_task-covertverbgeneration_bold.nii.gz\n",
69+
" │   ├── sub-01_ses-test_task-fingerfootlips_bold.nii.gz\n",
70+
" │   ├── sub-01_ses-test_task-linebisection_bold.nii.gz\n",
71+
" │   ├── sub-01_ses-test_task-linebisection_events.tsv\n",
72+
" │   ├── sub-01_ses-test_task-overtverbgeneration_bold.nii.gz\n",
73+
" │   └── sub-01_ses-test_task-overtwordrepetition_bold.nii.gz\n",
74+
" │ └── dwi\n",
75+
" │ └── sub-01_ses-retest_dwi.nii.gz\n",
76+
" ├── sub-02..sub-10\n",
77+
" │   └── ...\n",
78+
" ├── task-covertverbgeneration_bold.json\n",
79+
" ├── task-covertverbgeneration_events.tsv\n",
6280
" ├── task-fingerfootlips_bold.json\n",
6381
" ├── task-fingerfootlips_events.tsv\n",
64-
" └── task-linebisection_bold.json"
82+
" ├── task-linebisection_bold.json\n",
83+
" ├── task-overtverbgeneration_bold.json\n",
84+
" ├── task-overtverbgeneration_events.tsv\n",
85+
" ├── task-overtwordrepetition_bold.json\n",
86+
" └── task-overtwordrepetition_events.tsv"
6587
]
6688
},
6789
{
@@ -266,8 +288,8 @@
266288
"name": "stdout",
267289
"output_type": "stream",
268290
"text": [
269-
"170730-12:25:32,161 workflow INFO:\n",
270-
"\t Executing node datagrabber in dir: /tmp/tmplmop1pqt/datagrabber\n"
291+
"170731-16:49:15,196 workflow INFO:\n",
292+
"\t Executing node datagrabber in dir: /tmp/tmpzjje_eve/datagrabber\n"
271293
]
272294
},
273295
{
@@ -364,8 +386,8 @@
364386
"name": "stdout",
365387
"output_type": "stream",
366388
"text": [
367-
"170730-12:25:34,430 workflow INFO:\n",
368-
"\t Executing node selectfiles in dir: /tmp/tmp5z9bopfl/selectfiles\n"
389+
"170731-16:49:26,226 workflow INFO:\n",
390+
"\t Executing node selectfiles in dir: /tmp/tmph1rm2buv/selectfiles\n"
369391
]
370392
},
371393
{
@@ -414,8 +436,8 @@
414436
"name": "stdout",
415437
"output_type": "stream",
416438
"text": [
417-
"170730-12:25:35,400 workflow INFO:\n",
418-
"\t Executing node selectfiles in dir: /tmp/tmp59333sfs/selectfiles\n"
439+
"170731-16:49:27,447 workflow INFO:\n",
440+
"\t Executing node selectfiles in dir: /tmp/tmperd7urq6/selectfiles\n"
419441
]
420442
},
421443
{
@@ -551,8 +573,8 @@
551573
"name": "stdout",
552574
"output_type": "stream",
553575
"text": [
554-
"170730-12:25:39,247 workflow INFO:\n",
555-
"\t Executing node fssource in dir: /tmp/tmpo_jxbjpx/fssource\n"
576+
"170731-16:49:48,883 workflow INFO:\n",
577+
"\t Executing node fssource in dir: /tmp/tmpg2wzxfkr/fssource\n"
556578
]
557579
}
558580
],
@@ -622,8 +644,8 @@
622644
"name": "stdout",
623645
"output_type": "stream",
624646
"text": [
625-
"170730-12:25:41,991 workflow INFO:\n",
626-
"\t Executing node fssource in dir: /tmp/tmpo_jxbjpx/fssource\n"
647+
"170731-16:49:59,487 workflow INFO:\n",
648+
"\t Executing node fssource in dir: /tmp/tmpg2wzxfkr/fssource\n"
627649
]
628650
}
629651
],

0 commit comments

Comments
 (0)