56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
from utils_suseptibility import ampullary_punit
|
|
from utils_all import p_units_to_show, update_cell_names, load_folder_name
|
|
#from utils_all import load_folder_name
|
|
#from plt_RAM import plt_punit
|
|
from IPython import embed
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
|
|
test = False
|
|
if test:
|
|
|
|
#'2011-09-21-ab' ist echt gut
|
|
|
|
# '2010-06-21-am' auch gut
|
|
# '2012-05-15-ac', auch gut
|
|
# '2012-04-26-ae' auch gut
|
|
# '2012-05-07-ac' ist gut
|
|
# '2010-06-21-ac' die ist geil
|
|
|
|
# '2010-11-11-al' hat jetzt halt einen peka beim eof
|
|
# '2012-05-30-aa' hat beim EODf mehrfahcen einen peak
|
|
# '2012-03-23-ad' zweite linie sehr dünn
|
|
|
|
|
|
# '2012-03-30-af' EODf peak
|
|
|
|
# '2012-04-30-af' Peak beim Mehrcahen
|
|
#'2012-07-12-al' fehlt noch
|
|
cells_search = [
|
|
'2012-05-07-ac',
|
|
'2012-04-30-af',
|
|
'2012-07-12-al',
|
|
|
|
'2010-06-21-ac',
|
|
'2012-05-15-ac',
|
|
'2012-03-30-af',
|
|
'2012-04-26-ae',
|
|
|
|
|
|
'2011-09-21-ab',
|
|
'2010-11-11-al',
|
|
'2010-06-21-am',
|
|
'2012-05-30-aa',
|
|
'2012-03-23-ad',
|
|
|
|
]
|
|
cells_plot = update_cell_names(cells_search)
|
|
for cell in cells_plot:
|
|
cells_plot2 = [cell]
|
|
ampullary_punit(cells_plot2=cells_plot2, RAM=False)
|
|
else:
|
|
cells_plot2 = p_units_to_show(type_here='amp')
|
|
ampullary_punit(titles=['Low-CV ampullary cell,'],cells_plot2=cells_plot2, RAM=False, scale_val = False, add_texts = [0.25,1.3]) |