Mercurial > repos > galaxyp > openms_jsonexporter
comparison macros.xml @ 0:f483ffdc7014 draft default tip
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms commit 5c080b1e2b99f1c88f4557e9fec8c45c9d23b906
author | galaxyp |
---|---|
date | Fri, 14 Jun 2024 21:32:42 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f483ffdc7014 |
---|---|
1 <?xml version='1.0' encoding='UTF-8'?> | |
2 <!-- CTD2Galaxy depends on this file and on the stdio, advanced_options macros! | |
3 You can edit this file to add your own macros, if you so desire, or you can | |
4 add additional macro files using the m/macros parameter --> | |
5 <macros> | |
6 <token name="@TOOL_VERSION@">3.1</token> | |
7 <token name="@VERSION_SUFFIX@">0</token> | |
8 <token name="@TEST_DATA_LOCATION@"/> | |
9 <xml name="requirements"> | |
10 <requirements> | |
11 <requirement type="package" version="@TOOL_VERSION@">openms</requirement> | |
12 <requirement type="package" version="@TOOL_VERSION@">openms-thirdparty</requirement> | |
13 <!-- omssa (which has been excluded from 3rdparty) and makeblastdb for OMSSAAdapter --> | |
14 <requirement type="package" version="2.14.1">blast</requirement> | |
15 <!--<requirement type="package" version="5.0.0">tpp</requirement>--> | |
16 <!-- for realpath (used e.g. in LuciphorAdapter) --> | |
17 <!--<requirement type="package" version="8.25">coreutils</requirement>--> | |
18 <requirement type="package" version="1.5">ctdopts</requirement> | |
19 <yield/> | |
20 </requirements> | |
21 </xml> | |
22 <xml name="stdio"> | |
23 <stdio> | |
24 <regex match="std::bad_alloc" level="fatal_oom" description="Could not allocate memory"/> | |
25 <regex match="OutOfMemoryError" level="fatal_oom" description="Could not allocate memory"/> | |
26 <regex match="Could not allocate metaspace" level="fatal_oom" description="Java memory Exception"/> | |
27 <regex match="Cannot create VM thread" level="fatal_oom" description="Java memory Exception"/> | |
28 <regex match="qUncompress: could not allocate enough memory to uncompress data" level="fatal_oom" description="Java memory Exception"/> | |
29 <regex match="OMSSA ran out of RAM" level="fatal_oom" description="Could not allocate memory"/> | |
30 <regex match="comet' crashed hard (segfault-like). Please check the log." level="fatal_oom" description="Could not allocate memory"/> | |
31 </stdio> | |
32 </xml> | |
33 <xml name="references"> | |
34 <citations> | |
35 <citation type="doi">doi:10.1186/1471-2105-9-163</citation> | |
36 </citations> | |
37 </xml> | |
38 <xml name="adv_opts_macro"> | |
39 <section name="adv_opts" title="Advanced Options" expanded="false"> | |
40 <yield/> | |
41 </section> | |
42 </xml> | |
43 | |
44 <!-- sanitizers and validators --> | |
45 <xml name="list_string_val" token_name=""> | |
46 <validator type="regex" message="parameter @NAME@: must not start with $">^[^$]</validator> | |
47 <validator type="regex" message="parameter @NAME@: a space separated list of string is needed (strings that contain spaces can be quoted with ")">^ *((?:\"[^\"]*\" +)|(?:[^ \"]+ +))*((?:\"[^\"]*\")|(?:[^ \"]+)) *$</validator> | |
48 </xml> | |
49 <xml name="list_string_san"> | |
50 <sanitizer> | |
51 <valid initial="string.printable"> | |
52 <!-- <remove value="'"/>--> | |
53 <!-- <remove value="\"/>--><!-- otherwise the user could quote the final quote --> | |
54 <!-- <remove value="`"/>--> | |
55 <!-- <remove value="$"/>--> | |
56 <!-- <remove value="<"/>--> | |
57 <!--<remove value="&"/> removed for MascotAdapterOnline -Mascot_server:export_params which is a URL POST string which can contain & .. could be mapped to & but there is still a & --> | |
58 <!--<remove value=";"/>--> | |
59 <!-- <remove value="#"/>--> | |
60 </valid> | |
61 </sanitizer> | |
62 </xml> | |
63 <xml name="list_float_valsan" token_name=""> | |
64 <validator type="regex" message="parameter @NAME@: a space separated list of float values is required">^ *[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?( *[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?)* *$</validator> | |
65 <yield/> | |
66 <sanitizer> | |
67 <valid initial="string.digits"> | |
68 <add value=" "/> | |
69 <add value="."/> | |
70 <add value="E"/> | |
71 <add value="e"/> | |
72 <add value="+"/> | |
73 <add value="-"/> | |
74 </valid> | |
75 </sanitizer> | |
76 </xml> | |
77 <xml name="list_integer_valsan" token_name=""> | |
78 <validator type="regex" message="parameter @NAME@: a space separated list of integer values is required">^ *[+-]?[0-9]+( *[+-]?[0-9]+)* *$</validator> | |
79 <yield/> | |
80 <sanitizer> | |
81 <valid initial="string.digits"> | |
82 <add value=" "/> | |
83 <add value="+"/> | |
84 <add value="-"/> | |
85 </valid> | |
86 </sanitizer> | |
87 </xml> | |
88 | |
89 <!-- helper function to quote space separated strings --> | |
90 <token name="@QUOTE_FOO@"> | |
91 #def quote(s): | |
92 #set $s = [ _ for _ in $s.split(" ") if _ != "" ] | |
93 #set $q = False | |
94 #for $i, $p in enumerate($s): | |
95 #if $p == "": | |
96 #continue | |
97 #end if | |
98 #if $p.startswith('"'): | |
99 #set $q = True | |
100 #end if | |
101 ## #if p.startswith('-'): | |
102 ## #set p = "\\" + p | |
103 ## #elif p.startswith('"-'): | |
104 ## #set p = "\\" + p[1:] | |
105 ## #end if | |
106 #if not $q: | |
107 #set $s[i] = '"%s"' % p | |
108 #end if | |
109 #if $p.endswith('"'): | |
110 #set $q = False | |
111 #end if | |
112 #end for | |
113 #return " ".join($s) | |
114 #end def | |
115 </token> | |
116 | |
117 <token name="@EXT_FOO@"><![CDATA[#def oms2gxyext(o) | |
118 #set m={'txt': 'txt', 'tsv': 'tabular', 'bioml': 'xml', 'consensusXML': 'consensusxml', 'csv': 'csv', 'dta': 'dta', 'dta2d': 'dta2d', 'edta': 'edta', 'fa': 'fasta', 'fas': 'fasta', 'fasta': 'fasta', 'FASTA': 'fasta', 'featureXML': 'featurexml', 'featurexml': 'featurexml', 'html': 'html', 'HTML': 'html', 'idXML': 'idxml', 'json': 'json', 'kroenik': 'kroenik', 'mascotXML': 'mascotxml', 'mgf': 'mgf', 'mrm': 'mrm', 'ms': 'sirius.ms', 'ms2': 'ms2', 'msp': 'msp', 'mzData': 'mzdata', 'mzid': 'mzid', 'mzML': 'mzml', 'mzml': 'mzml', 'mzq': 'mzq', 'mzQC': 'mzqc', 'mzTab': 'mztab', 'mzXML': 'mzxml', 'novor': 'txt', 'obo': 'obo', 'oms': 'sqlite', 'omssaXML': 'idxml', 'osw': 'osw', 'OSW': 'osw', 'params': 'txt', 'paramXML': 'paramxml', 'peplist': 'peplist', 'pep.xml': 'pepxml', 'pepXML': 'pepxml', 'png': 'png', 'PNG': 'png', 'protXML': 'protxml', 'psms': 'psms', 'pqp': 'pqp', 'qcML': 'qcml', 'spec.xml': 'spec.xml', 'splib': 'splib', 'sqMass': 'sqmass', 'tandem.xml': 'tandem', 'trafoXML': 'trafoxml', 'traML': 'traml', 'TraML': 'traml', 'tab': 'tabular', 'raw': 'thermo.raw', 'xls': 'tsv', 'XML': 'xml', 'xml': 'xml', 'xquest.xml': 'xquest.xml', 'xsd': 'xsd', 'zip': 'zip'} | |
119 #return m[o] | |
120 #end def | |
121 #def gxy2omsext(g) | |
122 #set m={'txt': 'txt', 'tabular': 'tsv', 'xml': 'bioml', 'consensusxml': 'consensusXML', 'csv': 'csv', 'dta': 'dta', 'dta2d': 'dta2d', 'edta': 'edta', 'fasta': 'fa', 'featurexml': 'featureXML', 'html': 'html', 'idxml': 'idXML', 'json': 'json', 'kroenik': 'kroenik', 'mascotxml': 'mascotXML', 'mgf': 'mgf', 'mrm': 'mrm', 'sirius.ms': 'ms', 'ms2': 'ms2', 'msp': 'msp', 'mzdata': 'mzData', 'mzid': 'mzid', 'mzml': 'mzML', 'mzq': 'mzq', 'mzqc': 'mzQC', 'mztab': 'mzTab', 'mzxml': 'mzXML', 'obo': 'obo', 'sqlite': 'oms', 'osw': 'osw', 'paramxml': 'paramXML', 'peff': 'fasta', 'peplist': 'peplist', 'pepxml': 'pep.xml', 'png': 'png', 'protxml': 'protXML', 'psms': 'psms', 'pqp': 'pqp', 'qcml': 'qcML', 'spec.xml': 'spec.xml', 'splib': 'splib', 'sqmass': 'sqMass', 'tandem': 'tandem.xml', 'trafoxml': 'trafoXML', 'traml': 'traML', 'thermo.raw': 'raw', 'tsv': 'xls', 'xquest.xml': 'xquest.xml', 'xsd': 'xsd', 'zip': 'zip'} | |
123 #return m[g] | |
124 #end def | |
125 ]]></token></macros> |