Skip to content

Commit

Permalink
seminar 4
Browse files Browse the repository at this point in the history
  • Loading branch information
e.kondrateva committed Sep 21, 2020
1 parent 71f1ff4 commit b883d0c
Show file tree
Hide file tree
Showing 15 changed files with 16,512 additions and 0 deletions.
1,650 changes: 1,650 additions & 0 deletions seminar4/GroupAnalysis.ipynb

Large diffs are not rendered by default.

2,213 changes: 2,213 additions & 0 deletions seminar4/IndividualAnalysis.ipynb

Large diffs are not rendered by default.

412 changes: 412 additions & 0 deletions seminar4/Introduction.ipynb

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions seminar4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# seminar-4

# GLM


1.First follow the instruction for geting the docker image:

https://miykael.github.io/nipype_tutorial/notebooks/introduction_docker.html

2.Clone this repository.

3.Run the container and mount the folder:

docker run -it --rm -p 8888:8888 -v /path_to_seminar-4:/home/neuro/nipype_tutorial/notebooks/seminar miykael/nipype_tutorial jupyter notebook

#### Dataset:
* A test-retest fMRI dataset for motor, language and spatial attention functions https://www.openfmri.org/dataset/ds000114/
Binary file added seminar4/__pycache__/utils.cpython-36.pyc
Binary file not shown.
5 changes: 5 additions & 0 deletions seminar4/graph.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
strict digraph {
"a_x_b (utility)";
"a_plus_b (utility)";
"a_x_b (utility)" -> "a_plus_b (utility)";
}
Binary file added seminar4/graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions seminar4/graph_detailed.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
digraph structs {
node [shape=record];
helloa_x_b [label="{IN}|{ a_x_b | utility | }|{OUT|<outmultiplyresult> multiply_result}"];
helloa_plus_b [label="{IN|<ina> a}|{ a_plus_b | utility | }|{OUT}"];
helloa_x_b:outmultiplyresult:e -> helloa_plus_b:ina:w;
}
Binary file added seminar4/graph_detailed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit b883d0c

Please sign in to comment.