hc3 - spike_count table missing
It seems to be working for me. Below is a dialog with a fresh download of crcns-hc3-metadata-tables.zip;
$ ls
crcns-hc3-metadata-tables crcns-hc3-metadata-tables.zip
$ cd crcns-hc3-metadata-tables
$ ls
00-README.txt hc3-epos.csv hc3-session.csv hc3-spike_count.csv hc3-tables.sql old
hc3-cell.csv hc3-file.csv hc3-session_a.csv hc3-tables.db hc3-tables.xlsx
$ ~/bin/sqlite3 hc3-tables.db
SQLite version 3.18.0 2017-03-28 18:48:43
Enter ".help" for usage hints.
sqlite> .tables
cell epos file session session_a spike_count
sqlite> .schema spike_count
CREATE TABLE IF NOT EXISTS "spike_count" (
-- Contains number of spikes each cell has in each session
-- (for sessions from which the cell could have been recorded). Some
-- counts will be zero because no spikes were detected from the
-- a cell in those sessions, but could have been.
cellId integer, -- row in PyrIntMap.Map
sessId integer, -- row in Beh table (all sessions)
nSpikes integer -- number of spikes for cell in the session
);
sqlite> select count(*) from spike_count;
104196
sqlite>
All the files are there now. Thanks!
Strange. When I downloaded crcns-hc3-metadata-tables.zip on April 28, from the link on http://crcns.org/data-sets/hc/hc-3/about-hc-3, there were no tables for 'hc3-session_a' or 'hc3-spike count'. Anyway. No longer an issue.