view chap/chap.xml @ 138:326d9fb7301b draft

planemo upload for repository https://github.com/CHESSComputing/ChessAnalysisPipeline commit f9636857749a8083fb1bd63e7637b4210efe28c7-dirty
author ximgchess
date Thu, 22 Jun 2023 14:40:11 +0000
parents 49985da419b8
children 47b86f77fa59
line wrap: on
line source

<tool id="CHAP_test" name="CHESS Analysis Pipeline" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" python_template_version="@PYTHON_TEMPLATE_VERSION@" profile="@PROFILE@">
  <macros>
    <import>../macros.xml</import>
  </macros>
  <requirements>
    <expand macro="chap-requirement" />
  </requirements>
  <command detect_errors="exit_code"><![CDATA[
      cp '$input' data.csv &&
      CHAP --config '$config' &&
  ]]></command>
  <inputs>
      <param type="data" name="config" format="yaml" />
      <param type="data" name="input" format="csv" />
  </inputs>
  <outputs>
      <data name="output" format="json" />
  </outputs>
  <tests>
      <test>
          <param name="config" value="config.yaml"/>
          <param name="input" value="data.csv"/>
      </test>
  </tests>
  <help><![CDATA[
      CHESS Analysis Pipeline (CHAP):

      To run it on command line you'll use:
      CHAP --config CONFIG

      To run it within galaxy you'll only need to upload your
      required configuration pipeline and necessary data.
  ]]></help>
  <citations>
    <expand macro="chap-citation" />
  </citations>
</tool>