-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create_indexed_column no longer needs the path * update ecephys tutorial to use objects instead of paths * generate new html * update ophys tutorial to use objects instead of paths * generate new html
- Loading branch information
1 parent
6361b50
commit 33533fd
Showing
11 changed files
with
409 additions
and
772 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
function table = createElectrodeTable() | ||
table = types.hdmf_common.DynamicTable(... | ||
'description', 'A table of all electrodes (i.e. channels) used for recording.', ... | ||
'colnames', {'x', 'y', 'z', 'imp', 'location', 'filtering', 'group', 'group_name'},... | ||
'id', types.hdmf_common.ElementIdentifiers('data', []),... | ||
'x', types.hdmf_common.VectorData('data', [],... | ||
'description', 'the x coordinate of the channel location'),... | ||
'description', 'the x coordinate of the channel location'),... | ||
'y', types.hdmf_common.VectorData('data', [],... | ||
'description', 'the y coordinate of the channel location'),... | ||
'description', 'the y coordinate of the channel location'),... | ||
'z', types.hdmf_common.VectorData('data', [],... | ||
'description', 'the z coordinate of the channel location'),... | ||
'description', 'the z coordinate of the channel location'),... | ||
'imp', types.hdmf_common.VectorData('data', [],... | ||
'description', 'the impedance of the channel'),... | ||
'description', 'the impedance of the channel'),... | ||
'location', types.hdmf_common.VectorData('data', {},... | ||
'description', 'the location of channel within the subject e.g. brain region'),... | ||
'description', 'the location of channel within the subject e.g. brain region'),... | ||
'filtering', types.hdmf_common.VectorData('data', [],... | ||
'description', 'description of hardware filtering'),... | ||
'description', 'description of hardware filtering'),... | ||
'group', types.hdmf_common.VectorData('data', types.untyped.ObjectView.empty,... | ||
'description', 'a reference to the ElectrodeGroup this electrodes is a part of'),... | ||
'description', 'a reference to the ElectrodeGroup this electrodes is a part of'),... | ||
'group_name', types.hdmf_common.VectorData('data', {},... | ||
'description', 'name of the ElectrodeGroup this electrode is a part of'),... | ||
'description', 'A table of all electrodes (i.e. channels) used for recording.'... | ||
); | ||
'description', 'name of the ElectrodeGroup this electrode is a part of')... | ||
); | ||
end | ||
|
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
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
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
Oops, something went wrong.