Mercurial > repos > lparsons > cutadapt
comparison macros.xml @ 41:5eb7e84243f2 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt commit fff23da3bceafb57de06af03d4c8ab4d66d4b098
author | iuc |
---|---|
date | Thu, 18 Jul 2024 09:54:30 +0000 |
parents | aa784cb3810d |
children |
comparison
equal
deleted
inserted
replaced
40:aa784cb3810d | 41:5eb7e84243f2 |
---|---|
1 <macros> | 1 <macros> |
2 <token name="@TOOL_VERSION@">4.9</token> | 2 <token name="@TOOL_VERSION@">4.9</token> |
3 <token name="@VERSION_SUFFIX@">0</token> | 3 <token name="@VERSION_SUFFIX@">1</token> |
4 <token name="@FASTQ_TYPES@">fastq.bz2,fastq.gz,fastq,fasta.bz2,fasta.gz,fasta</token> | 4 <token name="@FASTQ_TYPES@">fastq.bz2,fastq.gz,fastq,fasta.bz2,fasta.gz,fasta</token> |
5 <xml name="edam_ontology"> | 5 <xml name="edam_ontology"> |
6 <edam_topics> | 6 <edam_topics> |
7 <edam_topic>topic_0632</edam_topic> | 7 <edam_topic>topic_0632</edam_topic> |
8 </edam_topics> | 8 </edam_topics> |
36 #else: | 36 #else: |
37 $ADAPTER_ARGUMENT '${a.adapter_source.adapter}${a.single_noindels}' | 37 $ADAPTER_ARGUMENT '${a.adapter_source.adapter}${a.single_noindels}' |
38 #end if | 38 #end if |
39 </token> | 39 </token> |
40 <xml name="adapter_sanitizer"> | 40 <xml name="adapter_sanitizer"> |
41 <sanitizer> | 41 <sanitizer sanitize="false" /> |
42 <valid initial="string.digits"> | 42 <validator type="regex" message="Invalid adapter sequence. Allowed are strings consisting of digits IUPAC nucleotides (including wildcards) and any of the following '{}^$.()'. See https://cutadapt.readthedocs.io/en/stable/guide.html#specifying-adapter-sequences"><![CDATA[[0-9ATCGURYSWKMBDHVNX{}^$.()]+$]]></validator> |
43 <add value="A"/><!--standard nucleotides--> | |
44 <add value="T"/> | |
45 <add value="C"/> | |
46 <add value="G"/> | |
47 <add value="U"/><!--ambiguous nucleotides--> | |
48 <add value="R"/> | |
49 <add value="Y"/> | |
50 <add value="S"/> | |
51 <add value="W"/> | |
52 <add value="K"/> | |
53 <add value="M"/> | |
54 <add value="B"/> | |
55 <add value="D"/> | |
56 <add value="H"/> | |
57 <add value="V"/> | |
58 <add value="N"/> | |
59 <add value="X"/><!-- don't match any nucleotide--> | |
60 <add value="{"/><!--specify repeats .. needs digits which are added as default--> | |
61 <add value="}"/> | |
62 <add value="^"/><!--anchoring--> | |
63 <add value="$"/> | |
64 <add value="."/> | |
65 <add value="("/><!--specify what to keep--> | |
66 <add value=")"/> | |
67 </valid> | |
68 </sanitizer> | |
69 </xml> | 43 </xml> |
70 <xml name="adapter_conditional" tokens="adapter_type,argument"> | 44 <xml name="adapter_conditional" tokens="adapter_type,argument"> |
71 <conditional name="adapter_source"> | 45 <conditional name="adapter_source"> |
72 <param name="adapter_source_list" type="select" label="Source" > | 46 <param name="adapter_source_list" type="select" label="Source" > |
73 <option value="builtin" selected="true">Standard (select from the list below)</option> | 47 <option value="builtin" selected="true">Standard (select from the list below)</option> |