hubmapconsortium / ingest-api

MIT License
0 stars 0 forks source link

Rules: dataset type should be Cell DIVE not Cell Dive. #518

Closed yuanzhou closed 3 months ago

yuanzhou commented 4 months ago

Following merged PR #517 #519 for TEST

Need to update Neo4j then reindex

//collect UUIDs first so we can reindex just these if needed
match (ds) where ds.dataset_type = 'Cell Dive' return ds.uuid;
match (ds) where ds.dataset_type = 'Cell Dive' set ds.dataset_type = "Cell DIVE";
match (ds) where ds.dataset_type = 'Cell Dive [DeepCell + SPRM]' return ds.uuid;
match (ds) where ds.dataset_type = 'Cell Dive [DeepCell + SPRM]' set ds.dataset_type = 'Cell DIVE [DeepCell + SPRM]';