Skip to content

Commit

Permalink
pr comment suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorgantaylor committed Sep 23, 2024
1 parent 9555309 commit f894663
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ databaseChangeLog:
# update geneticMapsPath default_value from /plink-genetic-maps/GRCh38_fixed/
- update:
tableName: pipeline_input_definitions
where: id=3 AND name='geneticMapsPath'
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: id=4 AND name='refDict'
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: id=5 AND name='referencePanelPathPrefix'
where: name='referencePanelPathPrefix' AND pipeline_id=(SELECT id FROM pipelines WHERE name='imputation_beagle')
columns:
- column:
name: default_value
Expand Down

0 comments on commit f894663

Please sign in to comment.