From 6608e47918fd5c4156b5e7b776821cba4840719c Mon Sep 17 00:00:00 2001 From: JulioV Date: Thu, 25 Jun 2020 16:38:24 -0400 Subject: [PATCH] Fix conversation plugin bug that mixed android tables with ios --- rules/features.snakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/features.snakefile b/rules/features.snakefile index 2003fa73..3f32bd1a 100644 --- a/rules/features.snakefile +++ b/rules/features.snakefile @@ -18,7 +18,7 @@ def optional_conversation_input(wildcards): if platform == "android": return ["data/raw/{pid}/" + config["CONVERSATION"]["DB_TABLE"]["ANDROID"] + "_with_datetime.csv"] else: - return ["data/raw/{pid}/" + config["CONVERSATION"]["DB_TABLE"]["ANDROID"] + "_with_datetime.csv"] + return ["data/raw/{pid}/" + config["CONVERSATION"]["DB_TABLE"]["IOS"] + "_with_datetime.csv"] def optional_location_input(wildcards): if config["BARNETT_LOCATION"]["LOCATIONS_TO_USE"] == "RESAMPLE_FUSED":