Mercurial > repos > ethevenot > batchcorrection
comparison BC/build.xml @ 3:2e3a23dd6c24 draft default tip
Uploaded
| author | melpetera |
|---|---|
| date | Thu, 28 Feb 2019 05:12:34 -0500 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 2:57edfd3943ab | 3:2e3a23dd6c24 |
|---|---|
| 1 <project name="batchcorrection" default="all"> | |
| 2 | |
| 3 <property name="tool.xml" value="batch_correction.xml"/> | |
| 4 <property name="conda.dir" value="${user.home}/w4m-conda"/> | |
| 5 | |
| 6 <!--~~~ | |
| 7 ~ ALL ~ | |
| 8 ~~~~~--> | |
| 9 | |
| 10 <target name="all"/> | |
| 11 | |
| 12 <!--~~~~ | |
| 13 ~ TEST ~ | |
| 14 ~~~~~--> | |
| 15 | |
| 16 <target name="test" depends="planemo.lint,planemo.test"/> | |
| 17 | |
| 18 <!--~~~~~~~~~~~~ | |
| 19 ~ PLANEMO LINT ~ | |
| 20 ~~~~~~~~~~~~~--> | |
| 21 | |
| 22 <target name="planemo.lint"> | |
| 23 <exec executable="planemo" failonerror="true"> | |
| 24 <arg value="lint"/> | |
| 25 <arg value="${tool.xml}"/> | |
| 26 </exec> | |
| 27 </target> | |
| 28 | |
| 29 <!--~~~~~~~~~~~~ | |
| 30 ~ PLANEMO TEST ~ | |
| 31 ~~~~~~~~~~~~~--> | |
| 32 | |
| 33 <target name="planemo.test"> | |
| 34 <exec executable="planemo" failonerror="true"> | |
| 35 <arg value="test"/> | |
| 36 <arg value="--conda_prefix"/> | |
| 37 <arg value="${conda.dir}"/> | |
| 38 <arg value="--galaxy_branch"/> | |
| 39 <arg value="release_17.05"/> | |
| 40 <arg value="--conda_dependency_resolution"/> | |
| 41 <arg value="${tool.xml}"/> | |
| 42 </exec> | |
| 43 </target> | |
| 44 | |
| 45 <!--~~~~~~~~~~~~~~~~~~~~~ | |
| 46 ~ PLANEMO CONDA INSTALL ~ | |
| 47 ~~~~~~~~~~~~~~~~~~~~~~--> | |
| 48 | |
| 49 <target name="planemo.conda.install" depends="planemo.conda.init"> | |
| 50 <exec executable="planemo" failonerror="true"> | |
| 51 <arg value="conda_install"/> | |
| 52 <arg value="--conda_prefix"/> | |
| 53 <arg value="${conda.dir}"/> | |
| 54 <arg value="${tool.xml}"/> | |
| 55 </exec> | |
| 56 </target> | |
| 57 | |
| 58 <!--~~~~~~~~~~~~~~~~~~ | |
| 59 ~ PLANEMO CONDA INIT ~ | |
| 60 ~~~~~~~~~~~~~~~~~~~--> | |
| 61 | |
| 62 <target name="planemo.conda.init"> | |
| 63 <exec executable="planemo" failonerror="true"> | |
| 64 <arg value="conda_init"/> | |
| 65 <arg value="--conda_prefix"/> | |
| 66 <arg value="${conda.dir}"/> | |
| 67 </exec> | |
| 68 </target> | |
| 69 | |
| 70 <!--~~~~~ | |
| 71 ~ CLEAN ~ | |
| 72 ~~~~~~--> | |
| 73 | |
| 74 <target name="clean"> | |
| 75 <delete dir="${conda.dir}"/> | |
| 76 </target> | |
| 77 | |
| 78 </project> |
