comparison bwa_macros.xml @ 26:2477830927ec draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa commit 6e9628b1d92fdb358b79959ad54a456cfa46fa33
author iuc
date Fri, 17 May 2024 21:09:07 +0000
parents 3fe632431b68
children
comparison
equal deleted inserted replaced
25:e188dc7a68e6 26:2477830927ec
1 <macros> 1 <macros>
2 <import>read_group_macros.xml</import> 2 <import>read_group_macros.xml</import>
3 3
4 <token name="@VERSION@">0.7.17</token> 4 <token name="@TOOL_VERSION@">0.7.18</token>
5 5
6 <token name="@pipefail@"><![CDATA[set -o | grep -q pipefail && set -o pipefail;]]></token> 6 <token name="@pipefail@"><![CDATA[set -o | grep -q pipefail && set -o pipefail;]]></token>
7 7
8 <token name="@set_rg_string@"> 8 <token name="@set_rg_string@">
9 #set $rg_string = "@RG\\tID:" + str($rg_id) 9 #set $rg_string = "@RG\\tID:" + str($rg_id)
34 #end if 34 #end if
35 ]]></token> 35 ]]></token>
36 36
37 <xml name="requirements"> 37 <xml name="requirements">
38 <requirements> 38 <requirements>
39 <requirement type="package" version="@VERSION@">bwa</requirement> 39 <requirement type="package" version="@TOOL_VERSION@">bwa</requirement>
40 <requirement type="package" version="1.6">samtools</requirement> 40 <requirement type="package" version="1.20">samtools</requirement>
41 </requirements> 41 </requirements>
42 </xml>
43
44 <xml name="bio_tools">
45 <xrefs>
46 <xref type="bio.tools">bwa</xref>
47 </xrefs>
42 </xml> 48 </xml>
43 49
44 <xml name="stdio"> 50 <xml name="stdio">
45 <stdio> 51 <stdio>
46 <exit_code range="1:" /> 52 <exit_code range="1:" />
101 </when> 107 </when>
102 </conditional> 108 </conditional>
103 </actions> 109 </actions>
104 </macro> 110 </macro>
105 111
112 <token name="@ref_genomes@">
113 **Indices: Selecting reference genomes for BWA**
114
115 The Galaxy wrapper for BWA allows you to select between precomputed and user-defined indices for reference genomes
116 using the **Will you select a reference genome from your history or use a built-in index?** select box.
117
118 This select box has two options:
119
120 1. **Use a built-in genome index**
121
122 With this option (which is the default), Galaxy provides you with a dropdown select menu populated with genomes that have been pre-indexed with the bwa index utility and are ready to map sequenced reads against.
123
124 The collection of pre-indexed genomes is managed by the administrators of your Galaxy instance. If your genome of interest is missing and its impractical to use the second option below to work with it, consider contacting the support team for the Galaxy server you are working on to let them know that you would like to have an additional genome indexed.
125
126 2. **Use a genome from history and build index**
127
128 With this option, Galaxy provides you with a dropdown select menu populated with all FASTA formatted files listed in your current history. If you have uploaded your genome of interest into your history it will be shown there.
129
130 Selecting a genome from this dropdown will cause Galaxy to index it transparently first using the `bwa index` command, and then map against it with `bwa aln`.
131 </token>
106 <token name="@RG@"> 132 <token name="@RG@">
107 ----- 133 -----
108 134
109 .. class:: warningmark 135 .. class:: warningmark
110 136
153 @RG ID:FLOWCELL2.LANE3 PL:illumina LB:LIB-KID-2 SM:KID PI:400 179 @RG ID:FLOWCELL2.LANE3 PL:illumina LB:LIB-KID-2 SM:KID PI:400
154 @RG ID:FLOWCELL2.LANE4 PL:illumina LB:LIB-KID-2 SM:KID PI:400 180 @RG ID:FLOWCELL2.LANE4 PL:illumina LB:LIB-KID-2 SM:KID PI:400
155 181
156 Note the hierarchical relationship between read groups (unique for each lane) to libraries (sequenced on two lanes) and samples (across four lanes, two lanes for each library). 182 Note the hierarchical relationship between read groups (unique for each lane) to libraries (sequenced on two lanes) and samples (across four lanes, two lanes for each library).
157 </token> 183 </token>
158 <token name="@info@"> 184 <token name="@links@">
159 ----- 185 .. _BWA: https://github.com/lh3/bwa
160 186 .. _`BWA manual`: https://bio-bwa.sourceforge.net/bwa.shtml
161 .. class:: infomark
162
163 **More info**
164
165 To obtain more information about BWA and ask questions use these resources:
166
167 1. https://biostar.usegalaxy.org/
168 2. https://www.biostars.org/
169 3. https://github.com/lh3/bwa
170 4. http://bio-bwa.sourceforge.net/
171
172 </token> 187 </token>
173 </macros> 188 </macros>