Closed danielsf closed 2 years ago
A LIMS db query to check ecephys_channels that will be updated by the datafix script:
SELECT es.id AS es_id, ep.id AS ep_id, ep.name AS ep, ec.*
FROM ecephys_sessions es
JOIN ecephys_probes ep ON ep.ecephys_session_id=es.id
JOIN ecephys_channels ec ON ec.ecephys_probe_id=ep.id
WHERE
--es.published_at IS NOT NULL
es.id = 1055403683 AND ep.name = 'probeF'
ORDER BY es.id,ep.name,ec.local_index;
Datafix script is /allen/aibs/technology/waynew/ecephys_ccf_coord/202203110909_pbs1874_datafix.rb and in this gist
On 3/28/2022 Corbett uploaded all of the annotation data for the ecephys sessions destined for release to
\allen\programs\braintv\workgroups\neuralcoding\corbettb\VBN_production
When Corbett delivers the full set of CCF data files, we need to upload them to LIMS using the datafix script provided by Wayne (link forthcoming). It is possible we can ask Zeb Harandon to run the query for us
Once Corbett provides the CCF annotation files:
create_ldds_row
command (that is how LIMS avoids running the same datafix twice)parent_dir = "/allen/programs/braintv/workgroups/neuralcoding/corbettb/VBN_production"
to point to wherever Corbett is putting his data files.datafixes/
folder; there is a script in LIMS that runs through every datafix and runs it automatically.rails r db/datafixes/your_datafix_name
Tasks
datafixes/
folder in LIMSValidation