forked from PrincetonUniversity/BrainPipe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.ipynb
91 lines (91 loc) · 2.52 KB
/
.ipynb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"cells": [
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"import pickle\n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd\n"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"file = open('/Users/emilydennis/Desktop/param_dict.p','rb')\n",
"test = pickle.load(file)\n"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'systemdirectory': '/jukebox/',\n",
" 'inputdictionary': {'/jukebox/LightSheetData/brodyatlas/raw_data/200817_k310_1_1x_555_016na_1hfds_z10um_50msec_20povlp_14-27-08': [['cellch',\n",
" '00']]},\n",
" 'outputdirectory': '/jukebox/scratch/ejdennis/k310',\n",
" 'xyz_scale': (5, 5, 10),\n",
" 'tiling_overlap': 0.2,\n",
" 'stitchingmethod': 'blending',\n",
" 'AtlasFile': '/jukebox/LightSheetData/brodyatlas/atlas/for_registration_to_lightsheet/WHS_SD_rat_T2star_v1.01_atlas.tif',\n",
" 'annotationfile': '/jukebox/LightSheetData/brodyatlas/atlas/for_registration_to_lightsheet/WHS_SD_rat_atlas_v3_annotation.tif',\n",
" 'blendtype': 'sigmoidal',\n",
" 'intensitycorrection': True,\n",
" 'resizefactor': 3,\n",
" 'rawdata': True,\n",
" 'finalorientation': ('2', '1', '0'),\n",
" 'slurmjobfactor': 50,\n",
" 'packagedirectory': '/mnt/sink/scratch/ejdennis/rat_BrainPipe',\n",
" 'parameterfolder': '/mnt/sink/scratch/ejdennis/rat_BrainPipe/parameterfolder',\n",
" 'regexpression': '(.*)(?P<y>\\\\d{2})(.*)(?P<x>\\\\d{2})(.*C+)(?P<ls>[0-9]{1,2})(.*Z+)(?P<z>[0-9]{1,4})(.*r)(?P<ch>[0-9]{1,4})(.ome.tif)',\n",
" 'volumes': [<tools.imageprocessing.preprocessing.volume at 0x7fd09b6f8390>]}"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"test"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
}
},
"nbformat": 4,
"nbformat_minor": 2
}