Mercurial > repos > siwaa > flat_ar
changeset 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 | |
| files | README.md flatar.xml |
| diffstat | 2 files changed, 35 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.md Thu Jan 08 12:57:10 2026 +0000 @@ -0,0 +1,3 @@ +Welcome oe the folder hosting the flatAr galaxy tool. + +This tool simply convert a collection o dataset in the sence of Galaxy into a tgz archive.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flatar.xml Thu Jan 08 12:57:10 2026 +0000 @@ -0,0 +1,32 @@ +<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>
