-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from bernt-matthias/topic/galaxy-slots
support setting GALAXY_SLOTS
- Loading branch information
Showing
5 changed files
with
51 additions
and
4 deletions.
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
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,4 @@ | ||
categories: [Sequence Analysis] | ||
description: test setting GALAXY_SLOTS | ||
name: galaxy_slots | ||
owner: adent |
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,34 @@ | ||
<tool id="galaxy_slots" name="galaxy_slots" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01" license="MIT"> | ||
<macros> | ||
<token name="@TOOL_VERSION@">0.1.0</token> | ||
<token name="@VERSION_SUFFIX@">0</token> | ||
</macros> | ||
<command detect_errors="exit_code"><![CDATA[ | ||
echo "GALAXY_SLOTS \${GALAXY_SLOTS:-1}" > '$out' | ||
]]></command> | ||
<inputs/> | ||
<outputs> | ||
<data name="out" format="txt"/> | ||
</outputs> | ||
<tests> | ||
<test> | ||
<output name="out"> | ||
<assert_contents> | ||
<has_line line="GALAXY_SLOTS 1" negate="true"/> | ||
</assert_contents> | ||
</output> | ||
</test> | ||
</tests> | ||
<help><![CDATA[ | ||
**Input** | ||
**Output** | ||
]]></help> | ||
<citations> | ||
<citation type="doi">blah</citation> | ||
</citations> | ||
</tool> |