-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redefine service-provided input paths (#134)
- Loading branch information
1 parent
f4465f2
commit 1fc62fd
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
30 changes: 30 additions & 0 deletions
30
service/src/main/resources/db/changesets/20240923_update_input_defs_bucket_paths.yaml
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,30 @@ | ||
# Update input definitions bucket paths for service provided inputs | ||
databaseChangeLog: | ||
- changeSet: | ||
id: Update input definitions bucket paths for service provided inputs | ||
author: mma | ||
changes: | ||
# update geneticMapsPath default_value from /plink-genetic-maps/GRCh38_fixed/ | ||
- update: | ||
tableName: pipeline_input_definitions | ||
where: name='geneticMapsPath' AND pipeline_id=(SELECT id FROM pipelines WHERE name='imputation_beagle') | ||
columns: | ||
- column: | ||
name: default_value | ||
value: "/hg38/plink-genetic-maps/" | ||
# update refDict default_value from /hg38/Homo_sapiens_assembly38.dict | ||
- update: | ||
tableName: pipeline_input_definitions | ||
where: name='refDict' AND pipeline_id=(SELECT id FROM pipelines WHERE name='imputation_beagle') | ||
columns: | ||
- column: | ||
name: default_value | ||
value: "/hg38/ref_dict/Homo_sapiens_assembly38.dict" | ||
# update referencePanelPathPrefix default_value from /hg38/1000G_HGDP_no_singletons_ref_panel/hgdp.tgp.gwaspy.merged.merged.AN_added.bcf.ac2 | ||
- update: | ||
tableName: pipeline_input_definitions | ||
where: name='referencePanelPathPrefix' AND pipeline_id=(SELECT id FROM pipelines WHERE name='imputation_beagle') | ||
columns: | ||
- column: | ||
name: default_value | ||
value: "/hg38/ref_panels/1000G_HGDP_no_singletons/hgdp.tgp.gwaspy.merged.merged.AN_added.bcf.ac2" |