Mercurial > repos > prog > isaextractor
comparison isa2mzdata.xml @ 0:975585306dc4 draft default tip
"planemo upload commit c2694fb4aa55c4f25eb53db73496eaf5e56d7872"
| author | prog | 
|---|---|
| date | Wed, 08 Jan 2020 07:50:13 -0500 | 
| parents | |
| children | 
   comparison
  equal
  deleted
  inserted
  replaced
| -1:000000000000 | 0:975585306dc4 | 
|---|---|
| 1 <!-- vi: se fdm=marker : --> | |
| 2 <tool id="isa2mzdata" name="ISA to mzData" version="1.3.0"> | |
| 3 | |
| 4 <description>Extract mzData files from an ISA dataset and output a collection of mzData dataset.</description> | |
| 5 | |
| 6 <!-- Command {{{1 --> | |
| 7 | |
| 8 <command><![CDATA[ | |
| 9 ## @@@BEGIN_CHEETAH@@@ | |
| 10 | |
| 11 $__tool_directory__/extract-from-isa | |
| 12 -i "$isa.extra_files_path" | |
| 13 -e mzData | |
| 14 -o mzData | |
| 15 | |
| 16 ## @@@END_CHEETAH@@@ | |
| 17 ]]></command> | |
| 18 | |
| 19 <!-- Inputs {{{1 --> | |
| 20 | |
| 21 <inputs> | |
| 22 <param name="isa" label="ISA" type="data" format="isa-tab"/> | |
| 23 </inputs> | |
| 24 | |
| 25 <!-- Outputs {{{1 --> | |
| 26 | |
| 27 <outputs> | |
| 28 <collection name="mzData" type="list" label="mzData files"> | |
| 29 <discover_datasets pattern="(?P<designation>.+)\.[mM][zZ][dD][aA][tT][aA]$" directory="mzData" format="mzdata"/> | |
| 30 </collection> | |
| 31 </outputs> | |
| 32 | |
| 33 <!-- Tests {{{1 --> | |
| 34 <tests> | |
| 35 <test> | |
| 36 <param name="isa" value="mzdata_study.zip" ftype="isa-tab"/> | |
| 37 <output_collection name="mzData" type="list" count="1"> | |
| 38 <element name="empty" file="mzdata_study_output/empty.mzData" ftype="mzdata"/> | |
| 39 </output_collection> | |
| 40 </test> | |
| 41 </tests> | |
| 42 | |
| 43 <!-- Help {{{1 --> | |
| 44 <help> | |
| 45 <!-- @@@BEGIN_RST@@@ --> | |
| 46 | |
| 47 ==================== | |
| 48 ISA to mzData | |
| 49 ==================== | |
| 50 | |
| 51 Extract mzData files contained inside an ISA archive. | |
| 52 | |
| 53 ----- | |
| 54 Input | |
| 55 ----- | |
| 56 | |
| 57 ISA dataset | |
| 58 =========== | |
| 59 | |
| 60 The ISA-Tab dataset from which to extract the files. | |
| 61 | |
| 62 ------ | |
| 63 Output | |
| 64 ------ | |
| 65 | |
| 66 The output is a collection of mzData files. | |
| 67 | |
| 68 <!-- @@@END_RST@@@ --> | |
| 69 </help> | |
| 70 | |
| 71 <!-- Citations {{{1 --> | |
| 72 <citations> | |
| 73 <citation type="doi">10.1038/ng.1054</citation> <!-- ISA --> | |
| 74 <citation type="doi">10.1093/bioinformatics/btu813</citation> <!-- W4M --> | |
| 75 </citations> | |
| 76 | |
| 77 </tool> | 
