Mercurial > repos > iracooke > spectrast
comparison spectrast_filter.xml @ 12:f6fd2798879a draft default tip
planemo upload for repository https://github.com/iracooke/protk-galaxytools/tree/master/spectrast commit 24e0fef2496984648a8a5cd5bff4d6b9b634a302-dirty
| author | iracooke |
|---|---|
| date | Tue, 20 Oct 2015 20:41:43 -0400 |
| parents | cf953fb3f0c0 |
| children |
comparison
equal
deleted
inserted
replaced
| 11:cf953fb3f0c0 | 12:f6fd2798879a |
|---|---|
| 1 <tool id="spectrast_filter_1" name="SpectraST Filter" version="1.0.0"> | 1 <tool id="spectrast_filter_1" name="SpectraST Filter" version="1.0.0"> |
| 2 <description>Filter and Manipulate Spectral Libraries</description> | |
| 2 <requirements> | 3 <requirements> |
| 3 <container type="docker">iracooke/protk-1.4.2</container> | 4 <container type="docker">iracooke/protk-1.4.3</container> |
| 4 <requirement type="package" version="1.4">protk</requirement> | 5 <requirement type="package" version="1.4.3">protk</requirement> |
| 5 <requirement type="package" version="4.8.0">trans_proteomic_pipeline</requirement> | 6 <requirement type="package" version="4.8.0">trans_proteomic_pipeline</requirement> |
| 6 </requirements> | 7 </requirements> |
| 7 | |
| 8 <description>Filter and Manipulate Spectral Libraries</description> | |
| 9 | |
| 10 <stdio> | 8 <stdio> |
| 11 <exit_code range="1:" level="fatal" description="Job Failed" /> | 9 <exit_code range="1:" level="fatal" description="Job Failed" /> |
| 12 </stdio> | 10 </stdio> |
| 13 | 11 <command> |
| 14 <command> | 12 <![CDATA[ |
| 15 spectrast_filter.rb --merge $merge | 13 spectrast_filter.rb --merge $merge |
| 16 | 14 |
| 17 | |
| 18 #for $splib_file in $splib_files: | 15 #for $splib_file in $splib_files: |
| 19 ${splib_file.extra_files_path}/library.splib | 16 ${splib_file.extra_files_path}/library.splib |
| 20 #end for | 17 #end for |
| 21 | 18 |
| 19 --replicates $replicates | |
| 20 -o library | |
| 22 | 21 |
| 23 --replicates $replicates | 22 && |
| 24 | 23 |
| 25 -o library; | 24 mkdir -p ${output.files_path} |
| 26 | 25 |
| 27 mkdir -p ${output.extra_files_path}; | 26 && |
| 28 | 27 |
| 29 cp library.splib library.spidx library.pepidx ${output.extra_files_path}/; | 28 cp library.splib library.spidx library.pepidx ${output.files_path}/ |
| 30 | 29 |
| 30 && | |
| 31 | 31 |
| 32 echo "Spectral Library Primary File" > $output | 32 echo "Spectral Library Primary File" > $output |
| 33 | 33 ]]> |
| 34 </command> | 34 </command> |
| 35 | 35 <inputs> |
| 36 <inputs> | |
| 37 | |
| 38 <param name="splib_files" multiple="true" type="data" format="splib" label="Spectral Libraries to operate on" help=""/> | 36 <param name="splib_files" multiple="true" type="data" format="splib" label="Spectral Libraries to operate on" help=""/> |
| 39 | |
| 40 <param name="merge" type="select" format="text"> | 37 <param name="merge" type="select" format="text"> |
| 41 <label>Merge Method</label> | 38 <label>Merge Method</label> |
| 42 <option value="U">Union</option> | 39 <option value="U">Union</option> |
| 43 <option value="S">Subtraction</option> | 40 <option value="S">Subtraction</option> |
| 44 <option value="H">Subtraction of homologs</option> | 41 <option value="H">Subtraction of homologs</option> |
| 49 <label>How to deal with replicate spectra</label> | 46 <label>How to deal with replicate spectra</label> |
| 50 <option value="None">Keep All</option> | 47 <option value="None">Keep All</option> |
| 51 <option value="C">Consensus</option> | 48 <option value="C">Consensus</option> |
| 52 <option value="B">Best replicate</option> | 49 <option value="B">Best replicate</option> |
| 53 </param> | 50 </param> |
| 51 </inputs> | |
| 52 <outputs> | |
| 53 <data format="splib" name="output"/> | |
| 54 </outputs> | |
| 55 <help> | |
| 56 <![CDATA[ | |
| 57 **What it does** | |
| 54 | 58 |
| 55 | 59 Filter and Manipulate Spectral Libraries |
| 56 </inputs> | |
| 57 | 60 |
| 58 <outputs> | 61 ]]> |
| 59 <data format="splib" name="output"/> | 62 </help> |
| 60 </outputs> | |
| 61 | |
| 62 </tool> | 63 </tool> |
