Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mergeback release v0.36.0-rc4 to alpha #1807

Merged
merged 4 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
INSERT INTO vocabulary (id, name, vocabularylabel) SELECT nextval('vocabulary_seq'), 'HTP Data Sample Sequencing Format','htp_data_sample_sequencing_format' WHERE NOT EXISTS (SELECT id FROM vocabulary WHERE name = 'HTP Data Sample Sequencing Format');
INSERT INTO vocabularyterm (id, name, vocabulary_id) SELECT nextval('vocabularyterm_seq'), 'paired',id FROM vocabulary WHERE vocabularylabel = 'htp_data_sample_sequencing_format' AND NOT EXISTS (SELECT id FROM vocabularyterm WHERE name = 'paired' AND vocabulary_id = (SELECT id FROM vocabulary WHERE vocabularylabel = 'htp_data_sample_sequencing_format'));
INSERT INTO vocabularyterm (id, name, vocabulary_id) SELECT nextval('vocabularyterm_seq'), 'single',id FROM vocabulary WHERE vocabularylabel = 'htp_data_sample_sequencing_format' AND NOT EXISTS (SELECT id FROM vocabularyterm WHERE name = 'single' AND vocabulary_id = (SELECT id FROM vocabulary WHERE vocabularylabel = 'htp_data_sample_sequencing_format'));

UPDATE bulkscheduledload SET scheduleactive = true WHERE id IN (
SELECT id FROM bulkload WHERE backendbulkloadtype = 'EXPRESSION_ATLAS'
);
Loading