Mercurial > repos > galaxyp > encyclopedia_library_to_blib
comparison encyclopedia_library_to_blib.xml @ 0:0202b8f3a516 draft
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia commit d94002fc79f552c8a64ffca86298396b1568df97"
author | galaxyp |
---|---|
date | Mon, 14 Sep 2020 17:07:04 +0000 |
parents | |
children | 6278dd24a860 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0202b8f3a516 |
---|---|
1 <tool id="encyclopedia_library_to_blib" name="ConvertLibraryToBlib" version="@VERSION@.0" python_template_version="3.5"> | |
2 <description>Convert EncyclopeDIA Library to BLIB for Skyline</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <command detect_errors="aggressive"><![CDATA[ | |
8 EncyclopeDIA -convert -libtoblib | |
9 -Djava.awt.headless=true -Duser.language=en-US -Duser.region=US | |
10 -Xmx\$[ \${GALAXY_MEMORY_MB:-20480} / 1024 ]g | |
11 -numberOfThreadsUsed "\${GALAXY_SLOTS:-4}" | |
12 -i '$i' | |
13 -o '$output' | |
14 #if $istest == 'yes' | |
15 && sqlite3 -readonly '$output' 'SELECT distinct peptideSeq FROM RefSpectra;' > '$test_output' | |
16 #end if | |
17 ]]></command> | |
18 <inputs> | |
19 <param argument="-i" type="data" format="elib,dlib" label="Library: Chromatagram .ELIB or Spectrum .DLIB"/> | |
20 <param name="istest" type="hidden" value="no"/> | |
21 </inputs> | |
22 <outputs> | |
23 <data name="output" format="blib" label="${i.name} blib"/> | |
24 <data name="test_output" format="txt" > | |
25 <filter>istest == 'yes'</filter> | |
26 </data> | |
27 </outputs> | |
28 <tests> | |
29 <test> | |
30 <param name="i" ftype="dlib" value="PrositLib.dlib"/> | |
31 <param name="istest" value="yes"/> | |
32 <output name="test_output" ftype="txt"> | |
33 <assert_contents> | |
34 <has_text text="AGGVLHDDENLWSFGK"/> | |
35 </assert_contents> | |
36 </output> | |
37 </test> | |
38 </tests> | |
39 <help><![CDATA[ | |
40 Convert EncyclopeDIA Library to BLIB for Skyline. | |
41 ]]></help> | |
42 <expand macro="citations" /> | |
43 </tool> |