-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1271 from Sage-Bionetworks/develop
Schematic 23.7.1
- Loading branch information
Showing
54 changed files
with
2,065 additions
and
1,493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# This is an example config for Schematic. | ||
# All listed values are those that are the default if a config is not used. | ||
# Save this as config.yml, this will be gitignored. | ||
# Remove any fields in the config you don't want to change | ||
# If you remove all fields from a section, the entire section should be removed including the header. | ||
# Change the values of any fields you do want to change | ||
|
||
|
||
# This describes where assets such as manifests are stored | ||
asset_store: | ||
# This is when assets are stored in a synapse project | ||
synapse: | ||
# Synapse ID of the file view listing all project data assets. | ||
master_fileview_id: "syn23643253" | ||
# Path to the synapse config file, either absolute or relative to this file | ||
config: ".synapseConfig" | ||
# Base name that manifest files will be saved as | ||
manifest_basename: "synapse_storage_manifest" | ||
|
||
# This describes information about manifests as it relates to generation and validation | ||
manifest: | ||
# Location where manifests will saved to | ||
manifest_folder: "manifests" | ||
# Title or title prefix given to generated manifest(s) | ||
title: "example" | ||
# Data types of manifests to be generated or data type (singular) to validate manifest against | ||
data_type: | ||
- "Biospecimen" | ||
- "Patient" | ||
|
||
# Describes the location of your schema | ||
model: | ||
# Location of your schema jsonld, it must be a path relative to this file or absolute | ||
location: "tests/data/example.model.jsonld" | ||
|
||
# This section is for using google sheets with Schematic | ||
google_sheets: | ||
# The Synapse id of the Google service account credentials. | ||
service_acct_creds_synapse_id: "syn25171627" | ||
# Path to the synapse config file, either absolute or relative to this file | ||
service_acct_creds: "schematic_service_account_creds.json" | ||
# When doing google sheet validation (regex match) with the validation rules. | ||
# true is alerting the user and not allowing entry of bad values. | ||
# false is warning but allowing the entry on to the sheet. | ||
strict_validation: true |
Oops, something went wrong.