view flatar.xml @ 0:c11ba04f1b8f draft default tip

"planemo upload for repository https://forge.inrae.fr/dairyfit/lot2/dairyfit-toolbox commit 7923fbe1a0cf1f15c3a39d3f73ba87618376d57b"
author siwaa
date Thu, 08 Jan 2026 12:57:10 +0000
parents
children
line wrap: on
line source

<tool id="flatAr" name="flatAr" version="1.0.0">
    <description>
        To build a simple archive of files only
    </description>
    <command detect_errors="exit_code">
      mkdir toArchive;
      #for $input in $inputData
      cp '$input' toArchive/'$input.name';
      #end for
      cd toArchive;
      tar -cvzf ${output} *
    </command>
    <inputs>
        <param name="inputData" type="data" format="netcdf" multiple="true" label="netcdf files hosting ariables"/>
    </inputs>
    <outputs>
        <data format="tgz" name="output" label="archive"/>
    </outputs>
    <tests>
    </tests>
    <help>
Documentation
-------------
A tool to convert a collection of NetCdf files into a tgz archive

Credits
-------
-  Galaxy Tool Maintainer: Patrick Chabrier patrick.chabrier@inrae.fr
-  Tool Site: https://forge.inrae.fr/dairyfit/lot2/dairyfit-toolbox
-  Copyright: INRAE
    </help>
</tool>