Skip to content

Commit

Permalink
feat: Demote PARTICIPANT_ID_MISMATCH to a warning for now
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Feb 11, 2025
1 parent b5d94f0 commit 5e2dbd1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/openneuro-app/src/scripts/workers/schema.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ const config: Config = {
{ code: "SUBJECT_FOLDERS" }, // bids-standard/bids-specification#1928 downgrades to warning
{ code: "EMPTY_DATASET_NAME" },
],
warning: [
// Pending update to BIDS that enforces participants.tsv to be a superset
// of subject directories and phenotype participant_id columns
// https://github.com/bids-standard/bids-specification/issues/914
{ code: "PARTICIPANT_ID_MISMATCH" },
],
}

const options: ValidatorOptions = {
Expand Down

0 comments on commit 5e2dbd1

Please sign in to comment.