Mercurial > repos > tomnl > msp_split
view msp_split.xml @ 1:0db4c33f5f5b draft
planemo upload for repository https://github.com/computational-metabolomics/dma-tools-galaxy commit af689d3f20c86f69aa824545e668280bcd5e0cca
| author | tomnl |
|---|---|
| date | Mon, 14 May 2018 08:10:38 -0400 |
| parents | aa55ff1d76d4 |
| children | a91e186cf294 |
line wrap: on
line source
<tool id="msp_split" name="msp_split" version="0.0.1"> <description>Slit MSP file into n number of files</description> <stdio> <exit_code range="1:" /> </stdio> <command interpreter="python"><![CDATA[ msp_split.py -i $in_msp -o 'spec_out' -n $n ]]></command> <inputs> <param name="in_msp" type="data" label="Input MSP file" format="txt,msp" help='MSP file (must have NAME: as the first element in each spectra entry'/> <param name="n" type="integer" label="Number of new files" value="2" help="Number of new MSP files to split the original MSP file into"/> </inputs> <outputs> <collection name="multiple" type="list" label="${tool.name} on ${on_string}: multi msp files"> <discover_datasets pattern="__designation_and_ext__" ext='msp' directory="spec_out" /> </collection> </outputs> <tests> </tests> <help><![CDATA[ ]]></help> </tool>
