Correct small errors in settings.
parent
35d9779026
commit
da5ff0f36e
|
@ -7,7 +7,7 @@ PIDS: [nokia_0000003]
|
|||
|
||||
# See https://www.rapids.science/latest/setup/configuration/#automatic-creation-of-participant-files
|
||||
CREATE_PARTICIPANT_FILES:
|
||||
USERNAMES_CSV: "data/external/usernames.csv"
|
||||
USERNAMES_CSV: "data/external/example_usernames.csv"
|
||||
CSV_FILE_PATH: "data/external/example_participants.csv" # see docs for required format
|
||||
PHONE_SECTION:
|
||||
ADD: True
|
||||
|
|
|
@ -15,7 +15,7 @@ rule prepare_participants_csv:
|
|||
output:
|
||||
participants_file = config["CREATE_PARTICIPANT_FILES"]["CSV_FILE_PATH"]
|
||||
script:
|
||||
"../src/data/streams/translate_usernames_into_participants_data.R"
|
||||
"../src/data/translate_usernames_into_participants_data.R"
|
||||
|
||||
rule create_participants_files:
|
||||
input:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
source("renv/activate.R")
|
||||
|
||||
library(RPostgres)
|
||||
library(magrittr)
|
||||
library(tidyverse)
|
||||
|
|
Loading…
Reference in New Issue