Mercurial > repos > yhoogstrate > show_metadata
comparison show_metadata.xml @ 0:9d9223704c63 draft default tip
planemo upload for repository https://github.com/ErasmusMC-Bioinformatics/show_metadata_galaxy_wrapper commit af2ada375a150ebcdc8667390c78396149c807d7
| author | yhoogstrate |
|---|---|
| date | Fri, 16 Oct 2015 05:26:45 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:9d9223704c63 |
|---|---|
| 1 <tool id="show_metadata" name="Show Metadata" version="1.0.0"> | |
| 2 <description>Debugging utility: show all metadata of a history item</description> | |
| 3 <command><![CDATA[ | |
| 4 #for $metadata_element, $metadata_value in $input.metadata.items() | |
| 5 echo "$metadata_element: $metadata_value" >> $output ; | |
| 6 #end for | |
| 7 ]]></command> | |
| 8 <inputs> | |
| 9 <param name="input" type="data" label="File to scan for all metadata" /> | |
| 10 </inputs> | |
| 11 <outputs> | |
| 12 <data format="txt" name="output" label="${tool.name} on ${input.name}" /> | |
| 13 </outputs> | |
| 14 <tests> | |
| 15 <test> | |
| 16 <param name="input" value="test1.tabular" ftype="tabular" dbkey="hg19" /> | |
| 17 <output name="output" file="test1.metadata_report"/> | |
| 18 </test> | |
| 19 </tests> | |
| 20 | |
| 21 <help><![CDATA[ | |
| 22 ** What it does? ** | |
| 23 | |
| 24 Shows all the metadata elements of a history item. | |
| 25 ]]></help> | |
| 26 </tool> |
