annotate bwa_macros.xml @ 5:86c73f0eb389 draft default tip

Uploaded
author devteam
date Thu, 06 Nov 2014 14:52:29 -0500
parents d04dfa7de2dc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
1 <macros>
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
2
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
3 <token name="@RG@">
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
4 -----
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
5
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
6 .. class:: warningmark
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
7
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
8 **Read Groups are Important!**
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
9
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
10 One of the recommended best practices in NGS analysis is adding read group information to BAM files. You can do thid directly in BWA interface using the
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
11 **Specify readgroup information?** widget. If you are not familiar with readgroups you shold know that this is effectively a way to tag reads with an additional ID.
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
12 This allows you to combine BAM files from, for example, multiple BWA runs into a single dataset. This significantly simplifies downstream processing as
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
13 instead of dealing with multiple datasets you only have to handle only one. This is possible because the readgroup information allows you to identify
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
14 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
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
15 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.
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
16
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
17 **Description of read groups fields**
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
18
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
19 (from GATK FAQ webpage):
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
20
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
21 .. csv-table::
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
22 :header-rows: 1
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
23
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
24 Tag,Importance,Definition,Meaning
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
25 "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."
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
26 "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)."
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
27 "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."
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
28 "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."
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
29
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
30
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
31 **Example of Read Group usage**
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
32
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
33 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::
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
34
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
35 Dad's data:
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
36 @RG ID:FLOWCELL1.LANE1 PL:illumina LB:LIB-DAD-1 SM:DAD PI:200
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
37 @RG ID:FLOWCELL1.LANE2 PL:illumina LB:LIB-DAD-1 SM:DAD PI:200
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
38 @RG ID:FLOWCELL1.LANE3 PL:illumina LB:LIB-DAD-2 SM:DAD PI:400
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
39 @RG ID:FLOWCELL1.LANE4 PL:illumina LB:LIB-DAD-2 SM:DAD PI:400
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
40
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
41 Mom's data:
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
42 @RG ID:FLOWCELL1.LANE5 PL:illumina LB:LIB-MOM-1 SM:MOM PI:200
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
43 @RG ID:FLOWCELL1.LANE6 PL:illumina LB:LIB-MOM-1 SM:MOM PI:200
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
44 @RG ID:FLOWCELL1.LANE7 PL:illumina LB:LIB-MOM-2 SM:MOM PI:400
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
45 @RG ID:FLOWCELL1.LANE8 PL:illumina LB:LIB-MOM-2 SM:MOM PI:400
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
46
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
47 Kid's data:
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
48 @RG ID:FLOWCELL2.LANE1 PL:illumina LB:LIB-KID-1 SM:KID PI:200
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
49 @RG ID:FLOWCELL2.LANE2 PL:illumina LB:LIB-KID-1 SM:KID PI:200
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
50 @RG ID:FLOWCELL2.LANE3 PL:illumina LB:LIB-KID-2 SM:KID PI:400
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
51 @RG ID:FLOWCELL2.LANE4 PL:illumina LB:LIB-KID-2 SM:KID PI:400
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
52
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
53 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).
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
54 </token>
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
55 <token name="@info@">
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
56 -----
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
57
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
58 .. class:: infomark
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
59
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
60 **More info**
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
61
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
62 To obtain more information about BWA and ask questions use these resources:
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
63
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
64 1. https://biostar.usegalaxy.org/
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
65 2. https://www.biostars.org/
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
66 3. https://github.com/lh3/bwa
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
67 4. http://bio-bwa.sourceforge.net/
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
68
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
69 </token>
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
70
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
71 <token name="@dataset_collections@">
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
72 ------
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
73
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
74 **Dataset collections - processing large numbers of datasets at once**
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
75
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
76 This will be added shortly
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
77
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
78
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
79 </token>
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
80
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
81
d04dfa7de2dc Uploaded
devteam
parents:
diff changeset
82 </macros>