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
|
# See https://www.rapids.science/latest/setup/configuration/#automatic-creation-of-participant-files
|
||||||
CREATE_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
|
CSV_FILE_PATH: "data/external/example_participants.csv" # see docs for required format
|
||||||
PHONE_SECTION:
|
PHONE_SECTION:
|
||||||
ADD: True
|
ADD: True
|
||||||
|
|
|
@ -15,7 +15,7 @@ rule prepare_participants_csv:
|
||||||
output:
|
output:
|
||||||
participants_file = config["CREATE_PARTICIPANT_FILES"]["CSV_FILE_PATH"]
|
participants_file = config["CREATE_PARTICIPANT_FILES"]["CSV_FILE_PATH"]
|
||||||
script:
|
script:
|
||||||
"../src/data/streams/translate_usernames_into_participants_data.R"
|
"../src/data/translate_usernames_into_participants_data.R"
|
||||||
|
|
||||||
rule create_participants_files:
|
rule create_participants_files:
|
||||||
input:
|
input:
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
source("renv/activate.R")
|
||||||
|
|
||||||
library(RPostgres)
|
library(RPostgres)
|
||||||
library(magrittr)
|
library(magrittr)
|
||||||
library(tidyverse)
|
library(tidyverse)
|
||||||
|
|
Loading…
Reference in New Issue