-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.R
69 lines (54 loc) · 1.77 KB
/
settings.R
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
user_settings = list(
# The folder where the project subfolders are:
# Note that the slashes have to be / (not \)
# MOVED TO UNDERGRADUATE.R FOR EASE OF USE
# projects_folder = "Z:/Behavior-autoanalysis/",
# Number of runs per day (probably equals number of active rats)
runs_per_day = 48,
# Minimum number of blocks of trials to keep (vs. discard day) not counting the
# 1st block which will be dropped
min_blocks = 5,
# Sensitivity cutoff for determining hearing thresholds
TH_cutoff = 1.5,
# Oddball wait interval times (slc) in ms
oddball_wait_min = 500,
oddball_wait_max = 1000,
# Delay window default
delay_default = "1 4",
delay_oddball = "1 2",
# Cutoffs for performance warnings
minimum_trials = list(
"Training - Octave" = 264, #?
"Octave" = 264, #?
"Training - Tone" = 50, #?
"Tone (Standard)" = 240,
"Tone (Thresholding)" = 240,
"Tone (Single)" = 240,
"Training - BBN" = 50,
"BBN (Standard)" = 240,
"BBN Mixed Duration" = 330,
"Training - Gap" = 50,
"Gap (Standard)" = 240,
"Gap Mixed Duration" = 330,
"Training - AM" = 50,
"AM (Standard)" = 240,
"Training - Oddball" = 240,
"Oddball (Standard)" = 300,
"Oddball (Uneven Odds)" = 300,
"Oddball (Uneven Odds & Catch)" = 300,
"Oddball (Catch)" = 300,
"Oddball (Background)" = 300),
minimum_hit_percent = 0.850,
maximum_FA_percent = 0.200,
maximum_attempts_per_trial = 2.0,
# FA cutoff for analysis
FA_cutoff = .40,
# weight change as percent of bodyweight
maximum_weight_change_daily_percent = 0.05,
maximum_weight_change_overall_percent = 0.15,
# positions for the supporting elements in the supervisor spreadsheet
dynamic_list_length = 7,
dynamic_col = 56,
config_row = 1,
config_col = 64
)