Mercurial > repos > galaxyp > encyclopedia_library_to_blib
view encyclopedia_library_to_blib.xml @ 1:6278dd24a860 draft
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit 64740168b7816f0fe38f6f0629cb7e618cd42878"
author | galaxyp |
---|---|
date | Thu, 08 Apr 2021 17:54:09 +0000 |
parents | 0202b8f3a516 |
children | 99297071f4b5 |
line wrap: on
line source
<tool id="encyclopedia_library_to_blib" name="ConvertLibraryToBlib" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" python_template_version="3.5"> <description>Convert EncyclopeDIA Library to BLIB for Skyline</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <command detect_errors="aggressive"><![CDATA[ EncyclopeDIA -convert -libtoblib -Djava.awt.headless=true -Duser.language=en-US -Duser.region=US -Xmx\$[ \${GALAXY_MEMORY_MB:-20480} / 1024 ]g -numberOfThreadsUsed "\${GALAXY_SLOTS:-4}" -i '$i' -o '$output' #if $istest == 'yes' && sqlite3 -readonly '$output' 'SELECT distinct peptideSeq FROM RefSpectra;' > '$test_output' #end if ]]></command> <inputs> <param argument="-i" type="data" format="elib,dlib" label="Library: Chromatagram .ELIB or Spectrum .DLIB"/> <param name="istest" type="hidden" value="no"/> </inputs> <outputs> <data name="output" format="blib" label="${i.name} blib"/> <data name="test_output" format="txt" > <filter>istest == 'yes'</filter> </data> </outputs> <tests> <test> <param name="i" ftype="dlib" value="PrositLib.dlib"/> <param name="istest" value="yes"/> <output name="test_output" ftype="txt"> <assert_contents> <has_text text="AGGVLHDDENLWSFGK"/> </assert_contents> </output> </test> </tests> <help><![CDATA[ Convert EncyclopeDIA Library to BLIB for Skyline. ]]></help> <expand macro="citations" /> </tool>