-
Notifications
You must be signed in to change notification settings - Fork 1.2k
[26.1] Add kraken2 datatype #22455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
pvanheus
wants to merge
9
commits into
galaxyproject:release_26.1
Choose a base branch
from
pvanheus:add_kraken2_datatype
base: release_26.1
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
[26.1] Add kraken2 datatype #22455
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
77714da
Add kraken2 datatype
pvanheus 7138ae7
Reformat binary.py
pvanheus 41db163
Add tests for kraken2 db compressed archive
pvanheus 10c2d9d
Make Kraken2Database a subclass of Directory
pvanheus f7c4931
Fix Python linting issues
pvanheus d87af76
Remove kraken2 datatype test
pvanheus 2b6b9d1
Implement kraken2db and kraken2db.tar.gz datatypes simply using datat…
pvanheus 52101aa
Merge changes from upstream
pvanheus 4c79b75
Remove test file 1.kraken2db.tar.gz
pvanheus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -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"/> | ||
| </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"/> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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"/> | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.