Previous changeset 1:d02c8e6f7f2a (2020-02-13) Next changeset 3:33040ebb30c6 (2020-02-16) |
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/ commit f14f2bae2b27dc04e574803c7d4442a64cfe43e4" |
modified:
hyphy_meme.xml macros.xml |
b |
diff -r d02c8e6f7f2a -r b15d64d85c03 hyphy_meme.xml --- a/hyphy_meme.xml Thu Feb 13 15:03:27 2020 -0500 +++ b/hyphy_meme.xml Fri Feb 14 16:46:45 2020 -0500 |
[ |
@@ -1,5 +1,5 @@ <?xml version="1.0"?> -<tool id="hyphy_meme" name="HyPhy-MEME" version="@VERSION@+galaxy0"> +<tool id="hyphy_meme" name="HyPhy-MEME" version="@VERSION@+galaxy1"> <description>Mixed Effects Model of Evolution</description> <macros> <import>macros.xml</import> @@ -8,12 +8,13 @@ <command detect_errors="exit_code"><![CDATA[ ln -s '$input_file' meme_input.fa && ln -s '$input_nhx' meme_input.nhx && - @HYPHY_INVOCATION@ meme + @HYPHYMPI@ meme --alignment ./meme_input.fa --tree ./meme_input.nhx --code '$gencodeid' --branches '$branches' --pvalue '$p_value' + --output '$meme_output' > '$meme_log' ]]></command> <inputs> @@ -24,7 +25,7 @@ </inputs> <outputs> <data name="meme_log" format="txt"/> - <data name="meme_output" format="hyphy_results.json" from_work_dir="meme_input.fa.MEME.json"/> + <data name="meme_output" format="hyphy_results.json" /> </outputs> <tests> <test> |
b |
diff -r d02c8e6f7f2a -r b15d64d85c03 macros.xml --- a/macros.xml Thu Feb 13 15:03:27 2020 -0500 +++ b/macros.xml Fri Feb 14 16:46:45 2020 -0500 |
[ |
@@ -80,6 +80,7 @@ <yield/> </requirements> </xml> + <token name="@HYPHYMPI@">mpirun -np \${GALAXY_SLOTS:-1} HYPHYMPI</token> <token name="@HYPHY_ENVIRONMENT@"><![CDATA[export HYPHY=`which hyphy` && export HYPHY_PATH=`dirname \$HYPHY` && export HYPHY_LIB=`readlink -f \$HYPHY_PATH/../lib/hyphy` &&]]></token> |