Mercurial > repos > ethevenot > checkformat
changeset 5:e7c5811ec12f draft default tip
planemo upload for repository https://github.com/workflow4metabolomics/checkformat.git commit 6b7aa0db6cebdb8acfac0a07291647947260a310
author | ethevenot |
---|---|
date | Thu, 01 Mar 2018 05:07:38 -0500 |
parents | 9590fac86f63 |
children | |
files | build.xml |
diffstat | 1 files changed, 0 insertions(+), 78 deletions(-) [+] |
line wrap: on
line diff
--- a/build.xml Wed Feb 28 05:47:44 2018 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,78 +0,0 @@ -<project name="checkformat" default="all"> - - <property name="tool.xml" value="checkformat_config.xml"/> - <property name="conda.dir" value="${user.home}/w4m-conda"/> - - <!--~~~ - ~ ALL ~ - ~~~~~--> - - <target name="all"/> - - <!--~~~~ - ~ TEST ~ - ~~~~~--> - - <target name="test" depends="planemo.lint,planemo.test"/> - - <!--~~~~~~~~~~~~ - ~ PLANEMO LINT ~ - ~~~~~~~~~~~~~--> - - <target name="planemo.lint"> - <exec executable="planemo" failonerror="true"> - <arg value="lint"/> - <arg value="${tool.xml}"/> - </exec> - </target> - - <!--~~~~~~~~~~~~ - ~ PLANEMO TEST ~ - ~~~~~~~~~~~~~--> - - <target name="planemo.test" depends="planemo.conda.install"> - <exec executable="planemo" failonerror="true"> - <arg value="test"/> - <arg value="--conda_prefix"/> - <arg value="${conda.dir}"/> - <arg value="--galaxy_branch"/> - <arg value="release_16.01"/> - <arg value="--conda_dependency_resolution"/> - <arg value="${tool.xml}"/> - </exec> - </target> - - <!--~~~~~~~~~~~~~~~~~~~~~ - ~ PLANEMO CONDA INSTALL ~ - ~~~~~~~~~~~~~~~~~~~~~~--> - - <target name="planemo.conda.install" depends="planemo.conda.init"> - <exec executable="planemo" failonerror="true"> - <arg value="conda_install"/> - <arg value="--conda_prefix"/> - <arg value="${conda.dir}"/> - <arg value="${tool.xml}"/> - </exec> - </target> - - <!--~~~~~~~~~~~~~~~~~~ - ~ PLANEMO CONDA INIT ~ - ~~~~~~~~~~~~~~~~~~~--> - - <target name="planemo.conda.init"> - <exec executable="planemo" failonerror="true"> - <arg value="conda_init"/> - <arg value="--conda_prefix"/> - <arg value="${conda.dir}"/> - </exec> - </target> - - <!--~~~~~ - ~ CLEAN ~ - ~~~~~~--> - - <target name="clean"> - <delete dir="${conda.dir}"/> - </target> - -</project>