subcortex-visualization 0.1.11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- subcortex_visualization/__init__.py +1 -0
- subcortex_visualization/data/Tian_S1_L_ordering.csv +16 -0
- subcortex_visualization/data/Tian_S1_R_ordering.csv +16 -0
- subcortex_visualization/data/Tian_S1_both_ordering.csv +31 -0
- subcortex_visualization/data/Tian_S2_L_ordering.csv +30 -0
- subcortex_visualization/data/Tian_S2_R_ordering.csv +30 -0
- subcortex_visualization/data/Tian_S2_both_ordering.csv +59 -0
- subcortex_visualization/data/__init__.py +0 -0
- subcortex_visualization/data/aseg_L_ordering.csv +14 -0
- subcortex_visualization/data/aseg_R_ordering.csv +14 -0
- subcortex_visualization/data/aseg_both_ordering.csv +27 -0
- subcortex_visualization/data/subcortex_Tian_S1_base_L.svg +609 -0
- subcortex_visualization/data/subcortex_Tian_S1_base_R.svg +609 -0
- subcortex_visualization/data/subcortex_Tian_S1_base_both.svg +1071 -0
- subcortex_visualization/data/subcortex_Tian_S2_base_L.svg +736 -0
- subcortex_visualization/data/subcortex_Tian_S2_base_R.svg +736 -0
- subcortex_visualization/data/subcortex_Tian_S2_base_both.svg +1344 -0
- subcortex_visualization/data/subcortex_aseg_base_L.svg +429 -0
- subcortex_visualization/data/subcortex_aseg_base_R.svg +429 -0
- subcortex_visualization/data/subcortex_aseg_base_both.svg +681 -0
- subcortex_visualization/data/subcortical_aseg_paths_lookup.csv +49 -0
- subcortex_visualization/plotting.py +369 -0
- subcortex_visualization-0.1.11.dist-info/METADATA +152 -0
- subcortex_visualization-0.1.11.dist-info/RECORD +27 -0
- subcortex_visualization-0.1.11.dist-info/WHEEL +5 -0
- subcortex_visualization-0.1.11.dist-info/licenses/LICENSE.txt +674 -0
- subcortex_visualization-0.1.11.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .plotting import plot_subcortical_data
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
accumbens,lateral,1,L
|
|
3
|
+
caudate,lateral,2,L
|
|
4
|
+
thalamus_anterior,lateral,3,L
|
|
5
|
+
thalamus_posterior,lateral,4,L
|
|
6
|
+
hippocampus,lateral,5,L
|
|
7
|
+
amygdala,lateral,6,L
|
|
8
|
+
putamen,lateral,7,L
|
|
9
|
+
putamen,medial,8,L
|
|
10
|
+
pallidum,medial,9,L
|
|
11
|
+
accumbens,medial,10,L
|
|
12
|
+
caudate,medial,11,L
|
|
13
|
+
thalamus_anterior,medial,12,L
|
|
14
|
+
amygdala,medial,13,L
|
|
15
|
+
hippocampus,medial,14,L
|
|
16
|
+
thalamus_posterior,medial,15,L
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
putamen,medial,1,R
|
|
3
|
+
pallidum,medial,2,R
|
|
4
|
+
accumbens,medial,3,R
|
|
5
|
+
caudate,medial,4,R
|
|
6
|
+
thalamus_anterior,medial,5,R
|
|
7
|
+
amygdala,medial,6,R
|
|
8
|
+
hippocampus,medial,7,R
|
|
9
|
+
thalamus_posterior,medial,8,R
|
|
10
|
+
accumbens,lateral,9,R
|
|
11
|
+
caudate,lateral,10,R
|
|
12
|
+
thalamus_anterior,lateral,11,R
|
|
13
|
+
thalamus_posterior,lateral,12,R
|
|
14
|
+
hippocampus,lateral,13,R
|
|
15
|
+
amygdala,lateral,14,R
|
|
16
|
+
putamen,lateral,15,R
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
putamen,medial,1,L
|
|
3
|
+
pallidum,medial,2,L
|
|
4
|
+
accumbens,medial,3,L
|
|
5
|
+
caudate,medial,4,L
|
|
6
|
+
thalamus_anterior,medial,5,L
|
|
7
|
+
amygdala,medial,6,L
|
|
8
|
+
hippocampus,medial,7,L
|
|
9
|
+
thalamus_posterior,medial,8,L
|
|
10
|
+
accumbens,lateral,9,L
|
|
11
|
+
caudate,lateral,10,L
|
|
12
|
+
thalamus_anterior,lateral,11,L
|
|
13
|
+
thalamus_posterior,lateral,12,L
|
|
14
|
+
hippocampus,lateral,13,L
|
|
15
|
+
amygdala,lateral,14,L
|
|
16
|
+
putamen,lateral,15,L
|
|
17
|
+
putamen,medial,16,R
|
|
18
|
+
pallidum,medial,17,R
|
|
19
|
+
accumbens,medial,18,R
|
|
20
|
+
caudate,medial,19,R
|
|
21
|
+
thalamus_anterior,medial,20,R
|
|
22
|
+
amygdala,medial,21,R
|
|
23
|
+
hippocampus,medial,22,R
|
|
24
|
+
thalamus_posterior,medial,23,R
|
|
25
|
+
accumbens,lateral,24,R
|
|
26
|
+
caudate,lateral,25,R
|
|
27
|
+
thalamus_anterior,lateral,26,R
|
|
28
|
+
thalamus_posterior,lateral,27,R
|
|
29
|
+
hippocampus,lateral,28,R
|
|
30
|
+
amygdala,lateral,29,R
|
|
31
|
+
putamen,lateral,30,R
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
putamen_posterior,medial,1,L
|
|
3
|
+
putamen_anterior,medial,2,L
|
|
4
|
+
accumbens_core,medial,3,L
|
|
5
|
+
accumbens_shell,medial,4,L
|
|
6
|
+
caudate_anterior,medial,5,L
|
|
7
|
+
caudate_posterior,medial,6,L
|
|
8
|
+
pallidum_posterior,medial,7,L
|
|
9
|
+
pallidum_anterior,medial,8,L
|
|
10
|
+
amygdala_lateral,medial,9,L
|
|
11
|
+
amygdala_medial,medial,10,L
|
|
12
|
+
hippocampus_posterior,medial,11,L
|
|
13
|
+
hippocampus_anterior,medial,12,L
|
|
14
|
+
thalamus_DP,medial,13,L
|
|
15
|
+
thalamus_VP,medial,14,L
|
|
16
|
+
thalamus_DA,medial,15,L
|
|
17
|
+
thalamus_VA,medial,16,L
|
|
18
|
+
thalamus_VA,lateral,17,L
|
|
19
|
+
thalamus_DA,lateral,18,L
|
|
20
|
+
thalamus_DP,lateral,19,L
|
|
21
|
+
thalamus_VP,lateral,20,L
|
|
22
|
+
hippocampus_posterior,lateral,21,L
|
|
23
|
+
hippocampus_anterior,lateral,22,L
|
|
24
|
+
amygdala_medial,lateral,23,L
|
|
25
|
+
amygdala_lateral,lateral,24,L
|
|
26
|
+
caudate_posterior,lateral,25,L
|
|
27
|
+
caudate_anterior,lateral,26,L
|
|
28
|
+
accumbens_core,lateral,27,L
|
|
29
|
+
putamen_anterior,lateral,28,L
|
|
30
|
+
putamen_posterior,lateral,29,L
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
putamen_posterior,medial,1,R
|
|
3
|
+
putamen_anterior,medial,2,R
|
|
4
|
+
accumbens_core,medial,3,R
|
|
5
|
+
accumbens_shell,medial,4,R
|
|
6
|
+
caudate_anterior,medial,5,R
|
|
7
|
+
caudate_posterior,medial,6,R
|
|
8
|
+
pallidum_posterior,medial,7,R
|
|
9
|
+
pallidum_anterior,medial,8,R
|
|
10
|
+
amygdala_lateral,medial,9,R
|
|
11
|
+
amygdala_medial,medial,10,R
|
|
12
|
+
hippocampus_posterior,medial,11,R
|
|
13
|
+
hippocampus_anterior,medial,12,R
|
|
14
|
+
thalamus_DP,medial,13,R
|
|
15
|
+
thalamus_VP,medial,14,R
|
|
16
|
+
thalamus_DA,medial,15,R
|
|
17
|
+
thalamus_VA,medial,16,R
|
|
18
|
+
thalamus_VA,lateral,17,R
|
|
19
|
+
thalamus_DA,lateral,18,R
|
|
20
|
+
thalamus_DP,lateral,19,R
|
|
21
|
+
thalamus_VP,lateral,20,R
|
|
22
|
+
hippocampus_posterior,lateral,21,R
|
|
23
|
+
hippocampus_anterior,lateral,22,R
|
|
24
|
+
amygdala_medial,lateral,23,R
|
|
25
|
+
amygdala_lateral,lateral,24,R
|
|
26
|
+
caudate_posterior,lateral,25,R
|
|
27
|
+
caudate_anterior,lateral,26,R
|
|
28
|
+
accumbens_core,lateral,27,R
|
|
29
|
+
putamen_anterior,lateral,28,R
|
|
30
|
+
putamen_posterior,lateral,29,R
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
putamen_posterior,medial,1,L
|
|
3
|
+
putamen_anterior,medial,2,L
|
|
4
|
+
accumbens_core,medial,3,L
|
|
5
|
+
accumbens_shell,medial,4,L
|
|
6
|
+
caudate_anterior,medial,5,L
|
|
7
|
+
caudate_posterior,medial,6,L
|
|
8
|
+
pallidum_posterior,medial,7,L
|
|
9
|
+
pallidum_anterior,medial,8,L
|
|
10
|
+
amygdala_lateral,medial,9,L
|
|
11
|
+
amygdala_medial,medial,10,L
|
|
12
|
+
hippocampus_posterior,medial,11,L
|
|
13
|
+
hippocampus_anterior,medial,12,L
|
|
14
|
+
thalamus_DP,medial,13,L
|
|
15
|
+
thalamus_VP,medial,14,L
|
|
16
|
+
thalamus_DA,medial,15,L
|
|
17
|
+
thalamus_VA,medial,16,L
|
|
18
|
+
thalamus_VA,lateral,17,L
|
|
19
|
+
thalamus_DA,lateral,18,L
|
|
20
|
+
thalamus_DP,lateral,19,L
|
|
21
|
+
thalamus_VP,lateral,20,L
|
|
22
|
+
hippocampus_posterior,lateral,21,L
|
|
23
|
+
hippocampus_anterior,lateral,22,L
|
|
24
|
+
amygdala_medial,lateral,23,L
|
|
25
|
+
amygdala_lateral,lateral,24,L
|
|
26
|
+
caudate_posterior,lateral,25,L
|
|
27
|
+
caudate_anterior,lateral,26,L
|
|
28
|
+
accumbens_core,lateral,27,L
|
|
29
|
+
putamen_anterior,lateral,28,L
|
|
30
|
+
putamen_posterior,lateral,29,L
|
|
31
|
+
putamen_posterior,medial,30,R
|
|
32
|
+
putamen_anterior,medial,31,R
|
|
33
|
+
accumbens_core,medial,32,R
|
|
34
|
+
accumbens_shell,medial,33,R
|
|
35
|
+
caudate_anterior,medial,34,R
|
|
36
|
+
caudate_posterior,medial,35,R
|
|
37
|
+
pallidum_posterior,medial,36,R
|
|
38
|
+
pallidum_anterior,medial,37,R
|
|
39
|
+
amygdala_lateral,medial,38,R
|
|
40
|
+
amygdala_medial,medial,39,R
|
|
41
|
+
hippocampus_posterior,medial,40,R
|
|
42
|
+
hippocampus_anterior,medial,41,R
|
|
43
|
+
thalamus_DP,medial,42,R
|
|
44
|
+
thalamus_VP,medial,43,R
|
|
45
|
+
thalamus_DA,medial,44,R
|
|
46
|
+
thalamus_VA,medial,45,R
|
|
47
|
+
thalamus_VA,lateral,46,R
|
|
48
|
+
thalamus_DA,lateral,47,R
|
|
49
|
+
thalamus_DP,lateral,48,R
|
|
50
|
+
thalamus_VP,lateral,49,R
|
|
51
|
+
hippocampus_posterior,lateral,50,R
|
|
52
|
+
hippocampus_anterior,lateral,51,R
|
|
53
|
+
amygdala_medial,lateral,52,R
|
|
54
|
+
amygdala_lateral,lateral,53,R
|
|
55
|
+
caudate_posterior,lateral,54,R
|
|
56
|
+
caudate_anterior,lateral,55,R
|
|
57
|
+
accumbens_core,lateral,56,R
|
|
58
|
+
putamen_anterior,lateral,57,R
|
|
59
|
+
putamen_posterior,lateral,58,R
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
accumbens,lateral,1,L
|
|
3
|
+
caudate,lateral,2,L
|
|
4
|
+
thalamus,lateral,3,L
|
|
5
|
+
hippocampus,lateral,4,L
|
|
6
|
+
amygdala,lateral,5,L
|
|
7
|
+
putamen,lateral,6,L
|
|
8
|
+
putamen,medial,7,L
|
|
9
|
+
pallidum,medial,8,L
|
|
10
|
+
accumbens,medial,9,L
|
|
11
|
+
caudate,medial,10,L
|
|
12
|
+
thalamus,medial,11,L
|
|
13
|
+
amygdala,medial,12,L
|
|
14
|
+
hippocampus,medial,13,L
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
accumbens,lateral,1,R
|
|
3
|
+
caudate,lateral,2,R
|
|
4
|
+
thalamus,lateral,3,R
|
|
5
|
+
hippocampus,lateral,4,R
|
|
6
|
+
amygdala,lateral,5,R
|
|
7
|
+
putamen,lateral,6,R
|
|
8
|
+
putamen,medial,7,R
|
|
9
|
+
pallidum,medial,8,R
|
|
10
|
+
accumbens,medial,9,R
|
|
11
|
+
caudate,medial,10,R
|
|
12
|
+
thalamus,medial,11,R
|
|
13
|
+
amygdala,medial,12,R
|
|
14
|
+
hippocampus,medial,13,R
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
region,face,plot_order,Hemisphere
|
|
2
|
+
accumbens,lateral,1,L
|
|
3
|
+
caudate,lateral,2,L
|
|
4
|
+
thalamus,lateral,3,L
|
|
5
|
+
hippocampus,lateral,4,L
|
|
6
|
+
amygdala,lateral,5,L
|
|
7
|
+
putamen,lateral,6,L
|
|
8
|
+
putamen,medial,7,L
|
|
9
|
+
pallidum,medial,8,L
|
|
10
|
+
accumbens,medial,9,L
|
|
11
|
+
caudate,medial,10,L
|
|
12
|
+
thalamus,medial,11,L
|
|
13
|
+
amygdala,medial,12,L
|
|
14
|
+
hippocampus,medial,13,L
|
|
15
|
+
accumbens,lateral,14,R
|
|
16
|
+
caudate,lateral,15,R
|
|
17
|
+
thalamus,lateral,16,R
|
|
18
|
+
hippocampus,lateral,17,R
|
|
19
|
+
amygdala,lateral,18,R
|
|
20
|
+
putamen,lateral,19,R
|
|
21
|
+
putamen,medial,20,R
|
|
22
|
+
pallidum,medial,21,R
|
|
23
|
+
accumbens,medial,22,R
|
|
24
|
+
caudate,medial,23,R
|
|
25
|
+
thalamus,medial,24,R
|
|
26
|
+
amygdala,medial,25,R
|
|
27
|
+
hippocampus,medial,26,R
|