diff --git a/config.yaml b/config.yaml index 5c3b4271..7a84c63d 100644 --- a/config.yaml +++ b/config.yaml @@ -1,10 +1,6 @@ -# See https://www.rapids.science/latest/setup/configuration/#database-credentials -DATABASE_GROUP: &database_group - MY_GROUP - -# See https://www.rapids.science/latest/setup/configuration/#timezone-of-your-study -TIMEZONE: &timezone - America/New_York +######################################################################################################################## +# GLOBAL CONFIGURATION # +######################################################################################################################## # See https://www.rapids.science/latest/setup/configuration/#participant-files PIDS: [test01] diff --git a/rules/preprocessing.smk b/rules/preprocessing.smk index 51068ec1..ff9df12a 100644 --- a/rules/preprocessing.smk +++ b/rules/preprocessing.smk @@ -1,9 +1,10 @@ +# This rull will dissapear rule restore_sql_file: input: sql_file = "data/external/rapids_example.sql", db_credentials = ".env" params: - group = config["DATABASE_GROUP"] + group = "No_GROUP" #config["DATABASE_GROUP"] output: touch("data/interim/restore_sql_file.done") script: diff --git a/tools/config.schema.yaml b/tools/config.schema.yaml index 60ce5dee..fa89aa1e 100644 --- a/tools/config.schema.yaml +++ b/tools/config.schema.yaml @@ -1,7 +1,6 @@ $schema: "http://json-schema.org/draft-07/schema#" description: RAPIDS configuration schema required: - - DATABASE_GROUP - TIMEZONE - PIDS - CREATE_PARTICIPANT_FILES @@ -113,8 +112,6 @@ definitions: type: string properties: - DATABASE_GROUP: - type: string TIMEZONE: type: object