forked from stephentown42/cooling_auditory_cortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
62 lines (55 loc) · 1.75 KB
/
__init__.py
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
"""
Put documentation here
"""
__version__ = '0.1.0'
# -----------------------------------------------------------------------------------------------------------
# Analysis configuration - most of this below can be deleted
ferrets = [
dict(
fNum=1311,
rxnTime=True,
method='cool', # Cooling below 20°C
name='Magnum',
plotrow=1,
timestep = None,
attn_round = 3,
attn_matching = dict(
time = 'all',
condition = 'isCooled'
)
),
dict(
fNum=1509,
rxnTime=True,
method='cool',
name='Robin',
plotrow=2,
timestep = 'day',
attn_round = None,
attn_matching = dict(
time = 'day',
condition = 'originalFile'
)
),
dict(
fNum=1706,
rxnTime=False,
method='opto', # mDlx-ChR2 (driving GABAergic inhibitory interneurons via 463 nm light)
name='Mimi',
plotrow=0,
timestep = 'sessionDate',
attn_round = None,
attn_matching = dict(
time = 'sessionDate',
condition = 'opto'
)
)
]
settings = dict(
cooled_threshold = 20, # Temperature below which cortex is considered to be 'cooled'
warm_threshold = 35, # Temperature above which cortex is considered to be 'warm'
control_limit = 0.6,
noise_level = 70, # Sound level of noise in dB SPL (two speakers)
default_level = 60, # Default sound level of vowels in dB SPL when 0 dB attenuation (two speakers)
min_trials = 10 # Min number of trials for each attenuation (across masks)
)