comparison bwa_macros.xml @ 0:c9c78719ef26 draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/bwa commit 5a4e0ca9992af3a6e5ed2b533f04bb82ce761e0b
author devteam
date Mon, 09 Nov 2015 11:19:02 -0500
parents
children 8955a9521def
comparison
equal deleted inserted replaced
-1:000000000000 0:c9c78719ef26
1 <macros>
2 <import>read_group_macros.xml</import>
3 <token name="@set_rg_string@">
4 #set $rg_string = "@RG\\tID:" + str($rg_id)
5 #set $rg_string += $format_read_group("\\tSM:", $rg_sm)
6 #set $rg_string += $format_read_group("\\tPL:", $rg_pl)
7 #set $rg_string += $format_read_group("\\tLB:", $rg_lb)
8 #set $rg_string += $format_read_group("\\tCN:", $rg_cn)
9 #set $rg_string += $format_read_group("\\tDS:", $rg_ds)
10 #set $rg_string += $format_read_group("\\tDT:", $rg_dt)
11 #set $rg_string += $format_read_group("\\tFO:", $rg_fo)
12 #set $rg_string += $format_read_group("\\tKS:", $rg_ks)
13 #set $rg_string += $format_read_group("\\tPG:", $rg_pg)
14 #set $rg_string += $format_read_group("\\tPI:", $rg_pi)
15 #set $rg_string += $format_read_group("\\tPU:", $rg_pu)
16 </token>
17
18 <xml name="requirements">
19 <requirements>
20 <requirement type="package" version="0.7.10.039ea20639">bwa</requirement>
21 <requirement type="package" version="1.2">samtools</requirement>
22 </requirements>
23 </xml>
24
25 <xml name="stdio">
26 <stdio>
27 <exit_code range="1:" />
28 <exit_code range=":-1" />
29 <regex match="Error:" />
30 <regex match="Exception:" />
31 </stdio>
32 </xml>
33
34 <macro name="dbKeyActionsBwa">
35 <expand macro="dbKeyActions">
36 <option type="from_data_table" name="bwa_indexes" column="1" offset="0">
37 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
38 <filter type="param_value" ref="reference_source.ref_file" column="0"/>
39 </option>
40 </expand>
41 </macro>
42
43 <macro name="dbKeyActionsBwaMem">
44 <expand macro="dbKeyActions">
45 <option type="from_data_table" name="bwa_mem_indexes" column="1" offset="0">
46 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
47 <filter type="param_value" ref="reference_source.ref_file" column="0"/>
48 </option>
49 </expand>
50 </macro>
51
52 <macro name="dbKeyActions">
53 <actions>
54 <conditional name="reference_source.reference_source_selector">
55 <when value="cached">
56 <action type="metadata" name="dbkey">
57 <yield />
58 </action>
59 </when>
60 <when value="history">
61 <action type="metadata" name="dbkey">
62 <option type="from_param" name="reference_source.ref_file" param_attribute="dbkey" />
63 </action>
64 </when>
65 </conditional>
66 </actions>
67 </macro>
68
69 <token name="@RG@">
70 -----
71
72 .. class:: warningmark
73
74 **Read Groups are Important!**
75
76 One of the recommended best practices in NGS analysis is adding read group information to BAM files. You can do this directly in BWA interface using the
77 **Specify read group information?** widget. If you are not familiar with read groups you shold know that this is effectively a way to tag reads with an additional ID.
78 This allows you to combine BAM files from, for example, multiple BWA runs into a single dataset. This significantly simplifies downstream processing as
79 instead of dealing with multiple datasets you only have to handle only one. This is possible because the read group information allows you to identify
80 data from different experiments even if they are combined in one file. Many downstream analysis tools such as varinat callers (e.g., FreeBayes or Naive Varinat Caller
81 present in Galaxy) are aware of readgtroups and will automatically generate calls for each individual sample even if they are combined within a single file.
82
83 **Description of read groups fields**
84
85 (from GATK FAQ webpage):
86
87 .. csv-table::
88 :header-rows: 1
89
90 Tag,Importance,Definition,Meaning
91 "ID","Required","Read group identifier. Each @RG line must have a unique ID. The value of ID is used in the RG tags of alignment records. Must be unique among all read groups in header section. Read group IDs may be modified when merging SAM files in order to handle collisions.","Ideally, this should be a globally unique identify across all sequencing data in the world, such as the Illumina flowcell + lane name and number. Will be referenced by each read with the RG:Z field, allowing tools to determine the read group information associated with each read, including the sample from which the read came. Also, a read group is effectively treated as a separate run of the NGS instrument in tools like base quality score recalibration (a GATK component) -- all reads within a read group are assumed to come from the same instrument run and to therefore share the same error model."
92 "SM","Sample. Use pool name where a pool is being sequenced.","Required. As important as ID.","The name of the sample sequenced in this read group. GATK tools treat all read groups with the same SM value as containing sequencing data for the same sample. Therefore it's critical that the SM field be correctly specified, especially when using multi-sample tools like the Unified Genotyper (a GATK component)."
93 "PL","Platform/technology used to produce the read. Valid values: ILLUMINA, SOLID, LS454, HELICOS and PACBIO.","Important. Not currently used in the GATK, but was in the past, and may return. The only way to known the sequencing technology used to generate the sequencing data","It's a good idea to use this field."
94 "LB","DNA preparation library identify","Essential for MarkDuplicates","MarkDuplicates uses the LB field to determine which read groups might contain molecular duplicates, in case the same DNA library was sequenced on multiple lanes."
95
96
97 **Example of Read Group usage**
98
99 Suppose we have a trio of samples: MOM, DAD, and KID. Each has two DNA libraries prepared, one with 400 bp inserts and another with 200 bp inserts. Each of these libraries is run on two lanes of an illumina hiseq, requiring 3 x 2 x 2 = 12 lanes of data. When the data come off the sequencer, we would create 12 BAM files, with the following @RG fields in the header::
100
101 Dad's data:
102 @RG ID:FLOWCELL1.LANE1 PL:illumina LB:LIB-DAD-1 SM:DAD PI:200
103 @RG ID:FLOWCELL1.LANE2 PL:illumina LB:LIB-DAD-1 SM:DAD PI:200
104 @RG ID:FLOWCELL1.LANE3 PL:illumina LB:LIB-DAD-2 SM:DAD PI:400
105 @RG ID:FLOWCELL1.LANE4 PL:illumina LB:LIB-DAD-2 SM:DAD PI:400
106
107 Mom's data:
108 @RG ID:FLOWCELL1.LANE5 PL:illumina LB:LIB-MOM-1 SM:MOM PI:200
109 @RG ID:FLOWCELL1.LANE6 PL:illumina LB:LIB-MOM-1 SM:MOM PI:200
110 @RG ID:FLOWCELL1.LANE7 PL:illumina LB:LIB-MOM-2 SM:MOM PI:400
111 @RG ID:FLOWCELL1.LANE8 PL:illumina LB:LIB-MOM-2 SM:MOM PI:400
112
113 Kid's data:
114 @RG ID:FLOWCELL2.LANE1 PL:illumina LB:LIB-KID-1 SM:KID PI:200
115 @RG ID:FLOWCELL2.LANE2 PL:illumina LB:LIB-KID-1 SM:KID PI:200
116 @RG ID:FLOWCELL2.LANE3 PL:illumina LB:LIB-KID-2 SM:KID PI:400
117 @RG ID:FLOWCELL2.LANE4 PL:illumina LB:LIB-KID-2 SM:KID PI:400
118
119 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).
120 </token>
121 <token name="@info@">
122 -----
123
124 .. class:: infomark
125
126 **More info**
127
128 To obtain more information about BWA and ask questions use these resources:
129
130 1. https://biostar.usegalaxy.org/
131 2. https://www.biostars.org/
132 3. https://github.com/lh3/bwa
133 4. http://bio-bwa.sourceforge.net/
134
135 </token>
136
137 <token name="@dataset_collections@">
138 ------
139
140 **Dataset collections - processing large numbers of datasets at once**
141
142 Dataset collections are in beta-testing. Extensive documentation will be added later this Spring.
143
144
145 </token>
146
147 </macros>