-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1807 from alliance-genome/gh-actions-mergeback-v0…
….36.0-rc4-alpha Mergeback release v0.36.0-rc4 to alpha
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
3 changes: 0 additions & 3 deletions
3
src/main/resources/db/migration/v0.37.0.65__htpdatasample_adding_vocab_terms.sql
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
src/main/resources/db/migration/v0.37.0.66__htpdatasample_adding_vocab_terms.sql
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 |
---|---|---|
@@ -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' | ||
); |