Add files to compute and create an empty script.
parent
42d62f16d0
commit
085a6d144b
|
@ -164,6 +164,10 @@ for provider in config["PHONE_CONVERSATION"]["PROVIDERS"].keys():
|
||||||
files_to_compute.extend(expand("data/processed/features/{pid}/all_sensor_features.csv", pid=config["PIDS"]))
|
files_to_compute.extend(expand("data/processed/features/{pid}/all_sensor_features.csv", pid=config["PIDS"]))
|
||||||
files_to_compute.append("data/processed/features/all_participants/all_sensor_features.csv")
|
files_to_compute.append("data/processed/features/all_participants/all_sensor_features.csv")
|
||||||
|
|
||||||
|
for provider in config["PHONE_ESM"]["PROVIDERS"].keys():
|
||||||
|
if config["PHONE_ESM"]["PROVIDERS"][provider]["COMPUTE"]:
|
||||||
|
files_to_compute.extend(expand("data/raw/{pid}/phone_esm_raw.csv",pid=config["PIDS"]))
|
||||||
|
|
||||||
# We can delete these if's as soon as we add feature PROVIDERS to any of these sensors
|
# We can delete these if's as soon as we add feature PROVIDERS to any of these sensors
|
||||||
if isinstance(config["PHONE_APPLICATIONS_CRASHES"]["PROVIDERS"], dict):
|
if isinstance(config["PHONE_APPLICATIONS_CRASHES"]["PROVIDERS"], dict):
|
||||||
for provider in config["PHONE_APPLICATIONS_CRASHES"]["PROVIDERS"].keys():
|
for provider in config["PHONE_APPLICATIONS_CRASHES"]["PROVIDERS"].keys():
|
||||||
|
|
|
@ -237,10 +237,10 @@ PHONE_DATA_YIELD:
|
||||||
PHONE_ESM:
|
PHONE_ESM:
|
||||||
CONTAINER: esm
|
CONTAINER: esm
|
||||||
PROVIDERS:
|
PROVIDERS:
|
||||||
RAPIDS:
|
STRAW:
|
||||||
COMPUTE: False
|
COMPUTE: True
|
||||||
FEATURES:
|
FEATURES:
|
||||||
SRC_SCRIPT: src/features/phone_keyboard/rapids/main.py
|
SRC_SCRIPT: src/features/phone_esm/rapids/main.py
|
||||||
|
|
||||||
# See https://www.rapids.science/latest/features/phone-keyboard/
|
# See https://www.rapids.science/latest/features/phone-keyboard/
|
||||||
PHONE_KEYBOARD:
|
PHONE_KEYBOARD:
|
||||||
|
|
Loading…
Reference in New Issue