annotate tools/picard/picard_AddOrReplaceReadGroups.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool name="Add or Replace Groups" id="picard_ARRG" version="0.2.0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <requirements><requirement type="package">picard</requirement></requirements>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 picard_wrapper.py
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 --input="$inputFile"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 --rg-lb="$rglb"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 --rg-pl="$rgpl"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 --rg-pu="$rgpu"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 --rg-sm="$rgsm"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 --rg-id="$rgid"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 --rg-opts=${readGroupOpts.rgOpts}
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 #if $readGroupOpts.rgOpts == "full"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 --rg-cn="$readGroupOpts.rgcn"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 --rg-ds="$readGroupOpts.rgds"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 --output-format=$outputFormat
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 --output=$outFile
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 -j "${GALAXY_DATA_INDEX_DIR}/shared/jars/AddOrReplaceReadGroups.jar"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 <param format="bam,sam" name="inputFile" type="data" label="SAM/BAM dataset to add or replace read groups in"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 help="If empty, upload or import a SAM/BAM dataset." />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <param name="rgid" value="1" type="text" label="Read group ID (ID tag)" help="The most important read group tag. Galaxy will use a value of '1' if nothing provided." />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 <param name="rgsm" value="" type="text" label="Read group sample name (SM tag)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 <param name="rglb" value="" type="text" label="Read group library (LB tag)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 <param name="rgpl" value="" type="text" label="Read group platform (PL tag)" help="illumina, solid, 454, pacbio, helicos" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <param name="rgpu" value="" type="text" label="Read group platform unit" help="like run barcode, etc." />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <conditional name="readGroupOpts">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 <param name="rgOpts" type="select" label="Specify additional (optional) arguments" help="Allows you to set RGCN and RGDS.">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 <option value="preSet">Use pre-set defaults</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 <option value="full">Set optional arguments</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 <when value="preSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 <when value="full">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 <param name="rgcn" value="" type="text" label="Read group sequencing center name" help="Leave set to &lt;null&gt; for default (none)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 <param name="rgds" value="" type="text" label="Read group description" help="Leave set to &lt;null&gt; for default (none)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 <param name="outputFormat" type="boolean" checked="True" truevalue="bam" falsevalue="sam" label="Output bam instead of sam" help="Uncheck for sam output" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 <data name="outFile" format="bam" label="${tool.name} on ${on_string}: ${outputFormat} with read groups replaced">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 <change_format>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 <when input="outputFormat" value="sam" format="sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 </change_format>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 </data>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 <!-- Command for replacing read groups in bam:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 java -jar AddOrReplaceReadGroups.jar VALIDATION_STRINGENCY=LENIENT I=test-data/picard_ARRG_input1.bam O=picard_ARRG_output1.sam RGID=one RGLB=lib RGPL=illumina RGPU=peaewe RGSM=sam1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 <param name="inputFile" value="picard_ARRG_input1.bam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 <param name="rglb" value="lib" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 <param name="rgpl" value="illumina" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 <param name="rgpu" value="peaewe" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 <param name="rgsm" value="sam1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 <param name="rgid" value="one" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 <param name="rgOpts" value="preSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 <param name="outputFormat" value="False" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 <output name="outFile" file="picard_ARRG_output1.sam" ftype="sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 <!-- Command for replacing read groups in sam:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 java -jar AddOrReplaceReadGroups.jar VALIDATION_STRINGENCY=LENIENT I=test-data/picard_ARRG_input1.sam O=picard_ARRG_output2.sam RGLB=LIB RGPL=IL RGPU=PLAT RGSM=smp RGID=M5 RGCN=FamousCenter RGDS="description with spaces"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 picard_ARRG_input1.bam can be created from picard_ARRG_input1.sam
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 <param name="inputFile" value="picard_ARRG_input1.sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 <param name="rglb" value="LIB" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 <param name="rgpl" value="IL" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 <param name="rgpu" value="PLAT" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 <param name="rgsm" value="smp" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73 <param name="rgid" value="M5" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 <param name="rgOpts" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 <param name="rgcn" value="FamousCenter" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 <param name="rgds" value="description with spaces" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77 <param name="outputFormat" value="False" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 <output name="outFile" file="picard_ARRG_output2.sam" ftype="sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81 <!-- Command for adding read groups in sam:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 java -jar AddOrReplaceReadGroups.jar VALIDATION_STRINGENCY=LENIENT I=test-data/picard_ARRG_input2.sam O=picard_ARRG_output3.bam RGID=M6 RGLB=LIB RGPL=IL RGPU=PLAT RGSM=smp1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84 <param name="inputFile" value="picard_ARRG_input2.sam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 <param name="rglb" value="LIB" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86 <param name="rgpl" value="IL" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 <param name="rgpu" value="PLAT" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 <param name="rgsm" value="smp1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89 <param name="rgid" value="M6" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 <param name="rgOpts" value="preSet" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 <param name="outputFormat" value="True" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 <output name="outFile" file="picard_ARRG_output3.bam" ftype="bam" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 .. class:: infomark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99 **Purpose**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101 Add or Replace Read Groups in an input BAM or SAM file.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103 **Read Groups are Important!**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 Many downstream analysis tools (such as GATK, for example) require BAM datasets to contain read groups. Even if you are not going to use GATK, setting read groups correctly from the start will simplify your life greatly. Below we provide an explanation of read groups fields taken from GATK FAQ webpage:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107 .. csv-table::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 :header-rows: 1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 Tag,Importance,Definition,Meaning
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111 "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."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 "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)."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113 "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."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 "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."
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 **Example of Read Group usage**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118 Support 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::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 Dad's data:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121 @RG ID:FLOWCELL1.LANE1 PL:illumina LB:LIB-DAD-1 SM:DAD PI:200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122 @RG ID:FLOWCELL1.LANE2 PL:illumina LB:LIB-DAD-1 SM:DAD PI:200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
123 @RG ID:FLOWCELL1.LANE3 PL:illumina LB:LIB-DAD-2 SM:DAD PI:400
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
124 @RG ID:FLOWCELL1.LANE4 PL:illumina LB:LIB-DAD-2 SM:DAD PI:400
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
125
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
126 Mom's data:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
127 @RG ID:FLOWCELL1.LANE5 PL:illumina LB:LIB-MOM-1 SM:MOM PI:200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
128 @RG ID:FLOWCELL1.LANE6 PL:illumina LB:LIB-MOM-1 SM:MOM PI:200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
129 @RG ID:FLOWCELL1.LANE7 PL:illumina LB:LIB-MOM-2 SM:MOM PI:400
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
130 @RG ID:FLOWCELL1.LANE8 PL:illumina LB:LIB-MOM-2 SM:MOM PI:400
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
131
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
132 Kid's data:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
133 @RG ID:FLOWCELL2.LANE1 PL:illumina LB:LIB-KID-1 SM:KID PI:200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
134 @RG ID:FLOWCELL2.LANE2 PL:illumina LB:LIB-KID-1 SM:KID PI:200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
135 @RG ID:FLOWCELL2.LANE3 PL:illumina LB:LIB-KID-2 SM:KID PI:400
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
136 @RG ID:FLOWCELL2.LANE4 PL:illumina LB:LIB-KID-2 SM:KID PI:400
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
137
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
138 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).
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
139
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
140 **Picard documentation**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
141
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
142 This is a Galaxy wrapper for AddOrReplaceReadGroups, a part of the external package Picard-tools_.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
143
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
144 .. _Picard-tools: http://www.google.com/search?q=picard+samtools
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
145
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
146 ------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
147
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
148 .. class:: infomark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
149
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
150 **Inputs, outputs, and parameters**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
151
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
152 Either a sam file or a bam file must be supplied. If a bam file is used, it must
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
153 be coordinate-sorted. Galaxy currently coordinate-sorts all bam files.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
154
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
155 The output file is either bam (the default) or sam, according to user selection,
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
156 and contains the same information as the input file except for the appropraite
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
157 additional (or modified) read group tags. Bam is recommended since it is smaller.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
158
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
159 From the Picard documentation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
160
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
161 AddOrReplaceReadGroups REQUIRED parameters::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
162
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
163 Option (Type) Description
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
164
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
165 RGLB=String Read Group Library
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
166 RGPL=String Read Group platform (e.g. illumina, solid)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
167 RGPU=String Read Group platform unit (eg. run barcode)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
168 RGSM=String Read Group sample name
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
169 RGID=String Read Group ID; Default value: null (empty)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
170
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
171 AddOrReplaceReadGroups OPTIONAL parameters::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
172
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
173 Option (Type) Description
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
174
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
175 RGCN=String Read Group sequencing center name; Default value: null (empty)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
176 RGDS=String Read Group description Default value: null (empty)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
177
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
178 One parameter that Picard's AddOrReplaceReadGroups offers that is automatically
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
179 set by Galaxy is the SORT_ORDER, which is set to coordinate.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
180
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
181 .. class:: warningmark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
182
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
183 **Warning on SAM/BAM quality**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
184
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
185 Many SAM/BAM files produced externally and uploaded to Galaxy do not fully conform to SAM/BAM specifications. Galaxy deals with this by using the **LENIENT**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
186 flag when it runs Picard, which allows reads to be discarded if they're empty or don't map. This appears
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
187 to be the only way to deal with SAM/BAM that cannot be parsed.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
188
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
189
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
190
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
191 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
192 </tool>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
193
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
194
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
195
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
196
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
197
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
198
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
199
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
200
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
201
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
202
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
203
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
204