Mercurial > repos > wolma > mimodd_core
comparison macros.xml @ 1:1425ea794026 draft default tip
planemo upload for repository https://github.com/wm75/mimodd_galaxy_wrappers commit 24cc567ad105450d1c554f09a3467eff671d9864
| author | wolma |
|---|---|
| date | Mon, 18 Dec 2017 03:39:07 -0500 |
| parents | aa82b2e54055 |
| children |
comparison
equal
deleted
inserted
replaced
| 0:aa82b2e54055 | 1:1425ea794026 |
|---|---|
| 1 <macros> | 1 <macros> |
| 2 <token name="@MIMODD_VERSION_REQUIRED@">0.1.8</token> | 2 <token name="@MIMODD_VERSION_REQUIRED@">0.1.8</token> |
| 3 <token name="@MIMODD_REAL_VERSION@">0.1.8</token> | 3 <token name="@MIMODD_REAL_VERSION@">0.1.8</token> |
| 4 <token name="@MIMODD_WRAPPER_VERSION@">0.1.8_0</token> | 4 <token name="@MIMODD_WRAPPER_VERSION@">0.1.8_1</token> |
| 5 <token name="@HELP_FOOTER@"><![CDATA[ | 5 <token name="@HELP_FOOTER@"><![CDATA[ |
| 6 ---- | 6 ---- |
| 7 | 7 |
| 8 .. class:: infomark | 8 .. class:: infomark |
| 9 | 9 |
| 10 For **additional help** see these resources: | 10 For **additional help** see these resources: |
| 11 | 11 |
| 12 - The complete `MiModD User Guide <http://mimodd.readthedocs.io/en/v0.1.8/usage_toc.html>`__ | 12 - The complete `MiModD User Guide <http://mimodd.readthedocs.io/en/doc0.1.8/usage_toc.html>`__ |
| 13 | 13 |
| 14 - The `MiModD help forum <https://groups.google.com/forum/#!forum/mimodd>`__ reachable also via `email <mailto:mimodd@googlegroups.com>`__ | 14 - The `MiModD help forum <https://groups.google.com/forum/#!forum/mimodd>`__ reachable also via `email <mailto:mimodd@googlegroups.com>`__ |
| 15 | 15 |
| 16 ]]></token> | 16 ]]></token> |
| 17 <xml name="requirements"> | 17 <xml name="requirements"> |
| 39 author = {Maier, Wolfgang and Moos, Katharina and Seifert, Mark and Baumeister, Ralf}, | 39 author = {Maier, Wolfgang and Moos, Katharina and Seifert, Mark and Baumeister, Ralf}, |
| 40 year = {2014}, publisher={SourceForge.net} } | 40 year = {2014}, publisher={SourceForge.net} } |
| 41 </citation> | 41 </citation> |
| 42 </citations> | 42 </citations> |
| 43 </xml> | 43 </xml> |
| 44 <macro name="YYYY-MM-DD_format_validator"> | |
| 45 <validator type="expression" message="YYYY-MM-DD date format required">not value or (len(value.split('-')) == 3 and all(part.isdigit() and len(part)==expect_len for part, expect_len in zip(value.split('-'), [4,2,2])))</validator> | |
| 46 </macro> | |
| 47 <macro name="known_sequencing_platform options"> | |
| 48 <option value="ILLUMINA">ILLUMINA</option> | |
| 49 <option value="PACBIO">PACBIO</option> | |
| 50 <option value="IONTORRENT">IONTORRENT</option> | |
| 51 <option value="ONT">ONT</option> | |
| 52 <option value="LS454">LS454</option> | |
| 53 <option value="SOLID">SOLID</option> | |
| 54 <option value="HELICOS">HELICOS</option> | |
| 55 <option value="CAPILLARY">CAPILLARY</option> | |
| 56 </macro> | |
| 57 <macro name="lex_sam_header" token_message="SAM header data may not contain non-ASCII characters."> | |
| 58 <validator type="expression" message="@MESSAGE@">not value or all(ord(c) < 127 for c in value)</validator> | |
| 59 <sanitizer invalid_char=""> | |
| 60 <valid initial="string.printable"> | |
| 61 <remove preset="string.whitespace" value="'" /> | |
| 62 <add value=" " /> | |
| 63 </valid> | |
| 64 <mapping initial="none"> | |
| 65 <add source="'" target="'"'"'" /> | |
| 66 <add source="	" target=" " /> | |
| 67 <add source=" " target=" " /> | |
| 68 <add source=" " target=" " /> | |
| 69 </mapping> | |
| 70 </sanitizer> | |
| 71 </macro> | |
| 44 </macros> | 72 </macros> |
| 45 | 73 |
| 46 | 74 |
