Skip to content

Commit b9ad11b

Browse files
committed
Update gh-pages - 2017-07-31 13:26:32
1 parent f44332b commit b9ad11b

8 files changed

+78365
-43841
lines changed

index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11809,9 +11809,8 @@
1180911809
</p><p>
1181011810
All of the notebooks used in this tutorial can be found on <a href="https://github.com/djarecka/nipype_tutorial">github.com/djarecka/nipype_tutorial</a>.
1181111811
For the tutorial, we will use a Docker container. You need to install a <a href="http://www.docker.com/">Docker</a> and download a docker image that provides you a
11812-
neuroimaging environment based on a Debian system, with working Python 3 software (including Nipype, dipy, matplotlib,
11813-
nibabel, nipy, numpy, pandas, scipy, seaborn and more), FSL, AFNI, ANTs and SPM12 (no license needed).
11814-
TODO
11812+
neuroimaging environment based on a Debian system, with working Python 3 software (including Nipype, matplotlib,
11813+
nibabel, numpy, pandas, scipy, and more), FSL, AFNI, ANTs and SPM12 (no license needed).
1181511814
</p><p>
1181611815
For everything that isn't covered in this tutorial, check out the <a href="http://nipype.readthedocs.io/en/latest/">main homepage</a>.
1181711816
</p>

notebooks/basic_data_input.html

Lines changed: 51 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -11813,33 +11813,55 @@ <h1 id="Data-Input">Data Input<a class="anchor-link" href="#Data-Input">&#182;</
1181311813
<h1 id="Dataset-structure">Dataset structure<a class="anchor-link" href="#Dataset-structure">&#182;</a></h1><p>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:</p>
1181411814

1181511815
<pre><code>ds000114
11816+
├── CHANGES
1181611817
├── dataset_description.json
1181711818
├── derivatives
11819+
│ ├── fmriprep
11820+
│ │ └── sub01...sub10
11821+
│ │ └── ...
1181811822
│ ├── freesurfer
11819-
│ │ └── ...
11823+
│ ├── fsaverage
11824+
│ ├── fsaverage5
11825+
│ │ └── sub01...sub10
11826+
│ │ └── ...
1182011827
├── dwi.bval
1182111828
├── dwi.bvec
1182211829
├── sub-01
11823-
│ ├── anat
11824-
│ │ └── sub-01_T1w.nii.gz
11825-
│ └── func
11826-
│ ├── sub-01_task-fingerfootlips_bold.nii.gz
11827-
│ ├── sub-01_task-linebisection_bold.nii.gz
11828-
│ └── sub-01_task-linebisection_events.tsv
11829-
│ └── dwi
11830-
│ └── sub-01_dwi.nii.gz
11831-
├── sub-02
11832-
│ ├── anat
11833-
│ │ └── sub-02_T1w.nii.gz
11834-
│ └── func
11835-
│ ├── sub-02_task-fingerfootlips_bold.nii.gz
11836-
│ ├── sub-02_task-linebisection_bold.nii.gz
11837-
│ └── sub-02_task-linebisection_events.tsv
11838-
│ └── dwi
11839-
│ └── sub-02_dwi.nii.gz
11830+
│ ├── ses-retest
11831+
│ ├── anat
11832+
│ │ └── sub-01_ses-retest_T1w.nii.gz
11833+
│ ├──func
11834+
│ ├── sub-01_ses-retest_task-covertverbgeneration_bold.nii.gz
11835+
│ ├── sub-01_ses-retest_task-fingerfootlips_bold.nii.gz
11836+
│ ├── sub-01_ses-retest_task-linebisection_bold.nii.gz
11837+
│ ├── sub-01_ses-retest_task-linebisection_events.tsv
11838+
│ ├── sub-01_ses-retest_task-overtverbgeneration_bold.nii.gz
11839+
│ └── sub-01_ses-retest_task-overtwordrepetition_bold.nii.gz
11840+
│ └── dwi
11841+
│ └── sub-01_ses-retest_dwi.nii.gz
11842+
│ ├── ses-test
11843+
│ ├── anat
11844+
│ │ └── sub-01_ses-test_T1w.nii.gz
11845+
│ ├──func
11846+
│ ├── sub-01_ses-test_task-covertverbgeneration_bold.nii.gz
11847+
│ ├── sub-01_ses-test_task-fingerfootlips_bold.nii.gz
11848+
│ ├── sub-01_ses-test_task-linebisection_bold.nii.gz
11849+
│ ├── sub-01_ses-test_task-linebisection_events.tsv
11850+
│ ├── sub-01_ses-test_task-overtverbgeneration_bold.nii.gz
11851+
│ └── sub-01_ses-test_task-overtwordrepetition_bold.nii.gz
11852+
│ └── dwi
11853+
│ └── sub-01_ses-retest_dwi.nii.gz
11854+
├── sub-02..sub-10
11855+
│ └── ...
11856+
├── task-covertverbgeneration_bold.json
11857+
├── task-covertverbgeneration_events.tsv
1184011858
├── task-fingerfootlips_bold.json
1184111859
├── task-fingerfootlips_events.tsv
11842-
└── task-linebisection_bold.json</code></pre>
11860+
├── task-linebisection_bold.json
11861+
├── task-overtverbgeneration_bold.json
11862+
├── task-overtverbgeneration_events.tsv
11863+
├── task-overtwordrepetition_bold.json
11864+
└── task-overtwordrepetition_events.tsv</code></pre>
1184311865

1184411866
</div>
1184511867
</div>
@@ -12053,8 +12075,8 @@ <h1 id="DataGrabber">DataGrabber<a class="anchor-link" href="#DataGrabber">&#182
1205312075
<div class="prompt"></div>
1205412076

1205512077
<div class="output_subarea output_stream output_stdout output_text">
12056-
<pre>170730-12:25:32,161 workflow INFO:
12057-
Executing node datagrabber in dir: /tmp/tmplmop1pqt/datagrabber
12078+
<pre>170731-16:49:15,196 workflow INFO:
12079+
Executing node datagrabber in dir: /tmp/tmpzjje_eve/datagrabber
1205812080
</pre>
1205912081
</div>
1206012082
</div>
@@ -12159,8 +12181,8 @@ <h1 id="SelectFiles">SelectFiles<a class="anchor-link" href="#SelectFiles">&#182
1215912181
<div class="prompt"></div>
1216012182

1216112183
<div class="output_subarea output_stream output_stdout output_text">
12162-
<pre>170730-12:25:34,430 workflow INFO:
12163-
Executing node selectfiles in dir: /tmp/tmp5z9bopfl/selectfiles
12184+
<pre>170731-16:49:26,226 workflow INFO:
12185+
Executing node selectfiles in dir: /tmp/tmph1rm2buv/selectfiles
1216412186
</pre>
1216512187
</div>
1216612188
</div>
@@ -12236,8 +12258,8 @@ <h1 id="SelectFiles">SelectFiles<a class="anchor-link" href="#SelectFiles">&#182
1223612258
<div class="prompt"></div>
1223712259

1223812260
<div class="output_subarea output_stream output_stdout output_text">
12239-
<pre>170730-12:25:35,400 workflow INFO:
12240-
Executing node selectfiles in dir: /tmp/tmp59333sfs/selectfiles
12261+
<pre>170731-16:49:27,447 workflow INFO:
12262+
Executing node selectfiles in dir: /tmp/tmperd7urq6/selectfiles
1224112263
</pre>
1224212264
</div>
1224312265
</div>
@@ -12361,8 +12383,8 @@ <h2 id="FreeSurferSource">FreeSurferSource<a class="anchor-link" href="#FreeSurf
1236112383
<div class="prompt"></div>
1236212384

1236312385
<div class="output_subarea output_stream output_stdout output_text">
12364-
<pre>170730-12:25:39,247 workflow INFO:
12365-
Executing node fssource in dir: /tmp/tmpo_jxbjpx/fssource
12386+
<pre>170731-16:49:48,883 workflow INFO:
12387+
Executing node fssource in dir: /tmp/tmpg2wzxfkr/fssource
1236612388
</pre>
1236712389
</div>
1236812390
</div>
@@ -12448,8 +12470,8 @@ <h2 id="FreeSurferSource">FreeSurferSource<a class="anchor-link" href="#FreeSurf
1244812470
<div class="prompt"></div>
1244912471

1245012472
<div class="output_subarea output_stream output_stdout output_text">
12451-
<pre>170730-12:25:41,991 workflow INFO:
12452-
Executing node fssource in dir: /tmp/tmpo_jxbjpx/fssource
12473+
<pre>170731-16:49:59,487 workflow INFO:
12474+
Executing node fssource in dir: /tmp/tmpg2wzxfkr/fssource
1245312475
</pre>
1245412476
</div>
1245512477
</div>

0 commit comments

Comments
 (0)