Correct small errors in settings.

labels
junos 2021-11-29 18:04:06 +01:00
parent 35d9779026
commit da5ff0f36e
3 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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:

View File

@ -1,3 +1,5 @@
source("renv/activate.R")
library(RPostgres)
library(magrittr)
library(tidyverse)