-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathundergraduate.R
More file actions
25 lines (20 loc) · 922 Bytes
/
undergraduate.R
File metadata and controls
25 lines (20 loc) · 922 Bytes
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
# Rat name
# Capitalization and spaces do not matter
# Example: rat_name = "Orange11"
name = "GP5"
# Trials to exclude from the next file.
# A comma-separated list of numbers or ranges inside quotation marks.
# Example: exclude_trials = "2, 120-126, 201"
# Use empty quotation marks if there are no trials to exclude.
# Example: exclude_trials = ""
exclude_trials = ""
# Rat's weight, in grams.
# Example: weight = 360
# **IGNORED** if old_file is TRUE.
weight = 583
# Observations made during the run, in quotation marks.
# Example: observations = "Good hits. Good misses. Only real FAs. 2 CRs back to back. Break from 35-47m, with no jams."
observations = "good hits"
projects_folder = "Z:/Behavior-autoanalysis/"
source(paste0(projects_folder, "main.R"))
Process_File(choose.files(default = paste0("Z:/Daily Matlab Files/", str_remove_all(Sys.Date(), "-"), "/", name)), name, weight, observations, exclude_trials)