Skip to content

Commit

Permalink
data table tweaks
Browse files Browse the repository at this point in the history
remove dbkey column
rename tables
  • Loading branch information
bernt-matthias committed Nov 15, 2024
1 parent 857f362 commit 1942fb2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
6 changes: 3 additions & 3 deletions tools/checkm2/checkm2.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<tool id="checkm2" name="checkm2" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@">
<tool id="checkm2" name="checkm2" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.1">
<description>Rapid assessment of genome bin quality using machine learning</description>
<macros>
<token name="@TOOL_VERSION@">1.0.2</token>
<token name="@VERSION_SUFFIX@">1</token>
<token name="@IDX_DATA_TABLE@">checkm2_db_versioned</token>
<token name="@VERSION_SUFFIX@">0</token>
<token name="@IDX_DATA_TABLE@">checkm2</token>
</macros>
<xrefs>
<xref type="bio.tools">checkm2</xref>
Expand Down
3 changes: 3 additions & 0 deletions tools/checkm2/test-data/checkm2.loc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
##Checkm2 versioned indexes
#build_id display_name path version
001 test_db ${__HERE__}/Checkm2_database/uniref100.KO.1.dmnd 1.0.2
3 changes: 0 additions & 3 deletions tools/checkm2/test-data/checkm2_db_versioned.loc

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
#The checkm2_db_versioned.loc file has this format (longer white space
#characters are TAB characters):
#
#<unique_build_id> <dbkey> <display_name> <file_base_path> <version>
#<unique_build_id> <display_name> <file_base_path> <version>

#The <version> column indicates the checkm2 version that generated the database

#
#diamond_db_1.0.2 diamond_db Diamond databas /mnt/galaxyIndices/Checkm2_database/uniref100.KO.1.dmnd 1.0.2
#diamond_db_1.0.2 Diamond database /mnt/galaxyIndices/Checkm2_database/uniref100.KO.1.dmnd 1.0.2
6 changes: 3 additions & 3 deletions tools/checkm2/tool_data_table_conf.xml.sample
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<tables>
<table name="checkm2_db_versioned" comment_char="#" allow_duplicate_entries="False">
<columns>value, dbkey, name, path, version</columns>
<file path="tool-data/checkm2_db_versioned.loc" />
<table name="checkm2" comment_char="#" allow_duplicate_entries="False">
<columns>value, name, path, version</columns>
<file path="tool-data/checkm2.loc" />
</table>
</tables>
7 changes: 3 additions & 4 deletions tools/checkm2/tool_data_table_conf.xml.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<tables>
<!-- Location of rnastar indexes for testing -->
<table name="checkm2_db_versioned" comment_char="#" allow_duplicate_entries="False">
<columns>value, dbkey, name, path, version</columns>
<file path="${__HERE__}/test-data/checkm2_db_versioned.loc" />
<table name="checkm2" comment_char="#" allow_duplicate_entries="False">
<columns>value, name, path, version</columns>
<file path="${__HERE__}/test-data/checkm2.loc" />
</table>
</tables>

0 comments on commit 1942fb2

Please sign in to comment.