Mercurial > repos > siwaa > flat_ar
comparison 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 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:c11ba04f1b8f |
|---|---|
| 1 <tool id="flatAr" name="flatAr" version="1.0.0"> | |
| 2 <description> | |
| 3 To build a simple archive of files only | |
| 4 </description> | |
| 5 <command detect_errors="exit_code"> | |
| 6 mkdir toArchive; | |
| 7 #for $input in $inputData | |
| 8 cp '$input' toArchive/'$input.name'; | |
| 9 #end for | |
| 10 cd toArchive; | |
| 11 tar -cvzf ${output} * | |
| 12 </command> | |
| 13 <inputs> | |
| 14 <param name="inputData" type="data" format="netcdf" multiple="true" label="netcdf files hosting ariables"/> | |
| 15 </inputs> | |
| 16 <outputs> | |
| 17 <data format="tgz" name="output" label="archive"/> | |
| 18 </outputs> | |
| 19 <tests> | |
| 20 </tests> | |
| 21 <help> | |
| 22 Documentation | |
| 23 ------------- | |
| 24 A tool to convert a collection of NetCdf files into a tgz archive | |
| 25 | |
| 26 Credits | |
| 27 ------- | |
| 28 - Galaxy Tool Maintainer: Patrick Chabrier patrick.chabrier@inrae.fr | |
| 29 - Tool Site: https://forge.inrae.fr/dairyfit/lot2/dairyfit-toolbox | |
| 30 - Copyright: INRAE | |
| 31 </help> | |
| 32 </tool> |
