You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To adjust the preprocessing, evoked response detection and visualization settings, a JSON file can be passed using the ```--config_filepath [JSON_FILEPATH]``` parameter.
22
44
An example JSON of the standard settings has the following content:
23
45
```
24
46
{
47
+
"preprocess": {
48
+
"high_pass": false,
49
+
"line_noise_removal": "off",
50
+
"early_re_referencing": {
51
+
"enabled": false,
52
+
"method": "CAR",
53
+
"stim_excl_epoch": [-1.0, 2.0]
54
+
}
55
+
},
56
+
25
57
"trials": {
26
-
"trial_epoch": [-1.0, 3.0],
58
+
"trial_epoch": [-1.0, 2.0],
27
59
"out_of_bounds_handling": "first_last_only",
28
-
"baseline_epoch": [-1.0, -0.1],
60
+
"baseline_epoch": [-0.5, -0.02],
29
61
"baseline_norm": "median",
30
62
"concat_bidirectional_pairs": true,
31
63
"minimum_stimpair_trials": 5
32
64
},
33
65
34
66
"channels": {
35
-
"types": ["ECOG", "SEEG", "DBS"]
67
+
"measured_types": ["ECOG", "SEEG", "DBS"],
68
+
"stim_types": ["ECOG", "SEEG", "DBS"]
36
69
},
37
70
38
71
"detection": {
72
+
"negative": true,
73
+
"positive": false,
39
74
"peak_search_epoch": [ 0, 0.5],
40
75
"response_search_epoch": [ 0.009, 0.09],
41
76
"method": "std_base",
@@ -46,15 +81,17 @@ An example JSON of the standard settings has the following content:
0 commit comments