Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/galaxy/config/sample/datatypes_conf.xml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,12 @@
<datatype extension="tar" auto_compressed_types="gz,bz2" type="galaxy.datatypes.binary:CompressedArchive" subclass="true" display_in_upload="true">
<converter file="archive_to_directory.xml" target_datatype="directory"/>
</datatype>
<datatype extension="kraken2db.tar" auto_compressed_types="gz,bz2" type="galaxy.datatypes.binary:Binary" subclass="true" display_in_upload="true" description="Kraken2 database archive">
<converter file="archive_to_directory.xml" target_datatype="kraken2db"/>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this really work? That is does it produce a kraken2db or a directory.

</datatype>
<datatype extension="kraken2db" type="galaxy.datatypes.data:Directory" subclass="true" description="Kraken2 database directory">
<converter file="directory_to_archive.xml" target_datatype="kraken2db.tar.gz"/>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would this convert any directory?

</datatype>
<datatype extension="directory" type="galaxy.datatypes.data:Directory"/>
<datatype extension="bwa_index" display_in_upload="true" type="galaxy.datatypes.data:Directory" subclass="true"/>
<datatype extension="bwa_mem2_index" display_in_upload="true" type="galaxy.datatypes.data:Directory" subclass="true"/>
Expand Down
Loading