-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Add BlobToolkit to the list of interactive tools #18630
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<tool id="interactive_tool_blobtoolkit" tool_type="interactive" name="Interactive BlobToolKit" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05"> | ||
<description>genome assembly QC viewer</description> | ||
<macros> | ||
<token name="@TOOL_VERSION@">4.1.0</token> | ||
<token name="@VERSION_SUFFIX@">0</token> | ||
</macros> | ||
<requirements> | ||
<container type="docker">quay.io/galaxy/blobtoolkit-server:@TOOL_VERSION@</container> | ||
</requirements> | ||
<entry_points> | ||
<entry_point name="Blobtoolkit View" requires_domain="True"> | ||
<port>80</port> | ||
<url>view/all</url> | ||
</entry_point> | ||
</entry_points> | ||
<command detect_errors="exit_code"><![CDATA[ | ||
## The following is a hack. Our embedded pulsar is not respecting the Galaxy jwd-tmp dir. | ||
export TEMP=\$PWD && | ||
export TMP=\$PWD && | ||
export TMPDIR=\$PWD && | ||
mkdir datasets && | ||
cd datasets && | ||
mkdir './Blobdir' && | ||
#if $blobdir: | ||
#if $blobdir.is_of_type("tgz") | ||
tar -zxf '${blobdir}' -C './Blobdir' && | ||
#else | ||
tar -xf '${blobdir}' -C './Blobdir' && | ||
#end if | ||
cd .. && | ||
export BTK_FILE_PATH=\$PWD/datasets && | ||
startup.sh | ||
#else: | ||
cd .. && | ||
startup.sh | ||
#end if | ||
]]></command> | ||
<inputs> | ||
<param name="blobdir" type="data" format="tgz,tar" optional="true" label="Blobdir file" help="This file should be generated by the module create. The collection of JSON files should be packed in the tarbal file without directory structure." /> | ||
</inputs> | ||
<outputs> | ||
<data name="Interactive BlobToolKit on data ${on_string}" format="txt"/> | ||
</outputs> | ||
<tests> | ||
</tests> | ||
<help><![CDATA[ | ||
BlobToolKit is a software suite to aid researchers in identifying and isolating non-target data in draft and publicly available genome assemblies. It can be used to process assembly, | ||
read and analysis files for fully reproducible interactive exploration in the browser-based Viewer. BlobToolKit can be used during assembly to filter non-target DNA, helping researchers produce assemblies with high biological credibility. | ||
]]></help> | ||
<citations> | ||
<citation type="doi">10.1534/g3.119.400908</citation> | ||
</citations> | ||
</tool> |
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.
Is this some old copy and paste ? If there is a problem with embeded pulsar and the temp dir handling issue should be opened.
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.
@bgruening @kysrpex do you know where this originated from, is this still needed ?