Skip to content

Commit 227c168

Browse files
committed
fix: Restore physio sidecar loader
1 parent b93fe1a commit 227c168

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/schema/associations.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ const associationLookup = {
9696
sampling_frequency: columns.get('sampling_frequency'),
9797
}
9898
},
99+
physio: async (file: BIDSFile, options: any): Promise<{path: string} & WithSidecar> => {
100+
return {
101+
path: file.path,
102+
sidecar: await constructSidecar(file),
103+
}
104+
},
99105
}
100106

101107
export async function buildAssociations(

0 commit comments

Comments
 (0)