forked from galaxyproject/tools-iuc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meme*: add non_commercial_use to command
I guess the validator should be sufficient, but maybe having this additional if block can't hurt will make the linter happy for galaxyproject/galaxy#12724 alternatively we could extend the linter such that parameters that do not appear on the command line bu have a (expression) validator? are OK??
- Loading branch information
1 parent
4e4b319
commit e509bd2
Showing
7 changed files
with
24 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<macros> | ||
<token name="@WRAPPER_VERSION@">5.0.5</token> | ||
<token name="@TOOL_VERSION@">5.0.5</token> | ||
<xml name="requirements"> | ||
<requirements> | ||
<requirement type="package" version="5.0.5">meme</requirement> | ||
<yield/> | ||
</requirements> | ||
</xml> | ||
<token name="@CHECK_NON_COMMERCIAL_USE@"><![CDATA[ | ||
#if not $non_commercial_use | ||
>&2 echo "this tool is only available for non commercial use"; | ||
exit 1 | ||
#end if | ||
]]></token> | ||
</macros> | ||
|
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 |
---|---|---|
@@ -1,11 +1,17 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<macros> | ||
<token name="@WRAPPER_VERSION@">4.11.2</token> | ||
<token name="@TOOL_VERSION@">4.11.2</token> | ||
<xml name="requirements"> | ||
<requirements> | ||
<requirement type="package" version="1.3.23">graphicsmagick</requirement> | ||
<requirement type="package" version="4.11.2">meme</requirement> | ||
</requirements> | ||
</xml> | ||
<token name="@CHECK_NON_COMMERCIAL_USE@"><![CDATA[ | ||
#if not $non_commercial_use | ||
>&2 echo "this tool is only available for non commercial use"; | ||
exit 1 | ||
#end if | ||
]]></token> | ||
</macros> | ||
|
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