Skip to content

Commit

Permalink
load new regex in utils/type.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rwblair committed Oct 17, 2024
1 parent 5e55cee commit b1d50c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bids-validator/utils/type.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const anatMultiInv = buildRegExp(file_level_rules.anat_multiinv)
const anatMP2RAGE = buildRegExp(file_level_rules.anat_mp2rage)
const anatVFAMT = buildRegExp(file_level_rules.anat_vfa_mt)
const anatMTR = buildRegExp(file_level_rules.anat_mtr)
const anatCont = buildRegExp(file_level_rules.anat_cont)
const behavioralData = buildRegExp(file_level_rules.behavioral)
const dwiData = buildRegExp(file_level_rules.dwi)
const eegData = buildRegExp(file_level_rules.eeg)
Expand Down Expand Up @@ -242,7 +243,8 @@ export default {
conditionalMatch(anatMultiInv, path) ||
conditionalMatch(anatMP2RAGE, path) ||
conditionalMatch(anatVFAMT, path) ||
conditionalMatch(anatMTR, path)
conditionalMatch(anatMTR, path) ||
conditionalMatch(anatCont, path)
)
},

Expand Down

0 comments on commit b1d50c8

Please sign in to comment.