Skip to content

Commit

Permalink
Merge pull request #18357 from bernt-matthias/sift-fix
Browse files Browse the repository at this point in the history
Fix loading error for built in tool `sift`
  • Loading branch information
jmchilton authored Jun 10, 2024
2 parents c42c349 + 654c702 commit 81a00cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/galaxy/config/sample/tool_data_table_conf.xml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@
<columns>value, name, url</columns>
<file path="tool-data/icn3d_simple_display.loc" />
</table>
<table name="sift_db" comment_char="#" allow_duplicate_entries="False">
<columns>dbkey, value</columns>
<file path="tool-data/sift_db.loc" />
</table>
<!-- Refgenie __dbkeys__ -->
<table name="__dbkeys__" type="refgenie" asset="fasta" >
<file from_config="refgenie_config_file" />
Expand Down
2 changes: 1 addition & 1 deletion tools/phenotype_association/sift.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<inputs>
<param name="input" type="data" format="tabular" label="Dataset">
<validator type="unspecified_build"/>
<validator type="dataset_metadata_in_file" filename="sift_db.loc" metadata_name="dbkey" metadata_column="0" message="Data is currently not available for the specified build."/>
<validator type="dataset_metadata_in_data_table" table_name="sift_db" metadata_name="dbkey" metadata_column="0" message="Data is currently not available for the specified build."/>
</param>
<param name="chrom_col" type="data_column" data_ref="input" label="Column with chromosome"/>
<param name="pos_col" type="data_column" data_ref="input" numerical="true" label="Column with position"/>
Expand Down

0 comments on commit 81a00cb

Please sign in to comment.