Mercurial > repos > devteam > picard
annotate picard_FilterSamReads.xml @ 12:05087b27692a draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
author | devteam |
---|---|
date | Sun, 27 Nov 2016 15:11:50 -0500 |
parents | 3a3234d7a2e8 |
children | 7e6fd3d0f16e |
rev | line source |
---|---|
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
1 <tool name="FilterSamReads" id="picard_FilterSamReads" version="@TOOL_VERSION@.0"> |
5 | 2 <description>include or exclude aligned and unaligned reads and read lists</description> |
3 <macros> | |
4 <import>picard_macros.xml</import> | |
5 </macros> | |
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
6 <expand macro="requirements" /> |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
5 | 8 @java_options@ |
9 | |
10 ##Sam Sorting is performed here because FilterSamReads requires input to be in query-sorted order | |
11 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
12 picard |
5 | 13 SortSam |
14 INPUT="${inputFile}" | |
15 OUTPUT=query_sorted_bam.bam | |
16 SORT_ORDER=queryname | |
17 VALIDATION_STRINGENCY=LENIENT | |
18 QUIET=true | |
19 VERBOSITY=ERROR | |
20 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
21 && |
5 | 22 |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
23 picard |
5 | 24 FilterSamReads |
25 INPUT=query_sorted_bam.bam | |
26 FILTER="${filter_type.filter}" | |
27 | |
28 #if ( str( $filter_type.filter ) == "includeReadList" or str( $filter_type.filter ) == "excludeReadList" ): | |
29 READ_LIST_FILE="${filter_type.read_list_file}" | |
30 #end if | |
31 | |
32 OUTPUT="${outFile}" | |
33 SORT_ORDER=coordinate | |
34 VALIDATION_STRINGENCY="${validation_stringency}" | |
35 QUIET=true | |
36 VERBOSITY=ERROR | |
37 | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
38 ]]></command> |
5 | 39 <inputs> |
8
3a3234d7a2e8
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
devteam
parents:
5
diff
changeset
|
40 <param name="inputFile" type="data" format="sam,bam" label="Select SAM/BAM dataset or dataset collection" help="If empty, upload or import a SAM/BAM dataset"/> |
5 | 41 <conditional name="filter_type"> |
42 <param name="filter" type="select" label="Select filtering type" help="FILTER; see Help for deatiled info"> | |
43 <option value="includeAligned">Include aligned</option> | |
44 <option value="excludeAligned">Exclude aligned</option> | |
45 <option value="includeReadList">Include read list</option> | |
46 <option value="excludeReadList">Exclude read list</option> | |
47 </param> | |
48 <when value="includeAligned"/> <!-- do nothing --> | |
49 <when value="excludeAligned"/> <!-- do nothing --> | |
50 <when value="includeReadList"> | |
51 <param name="read_list_file" type="data" format="tabular" label="Dataset containing read names that will be INCLUDED in the output" help="READ_LIST_FILE"/> | |
52 </when> | |
53 <when value="excludeReadList"> | |
54 <param name="read_list_file" type="data" format="tabular" label="Dataset containing read names that will be EXCLUDED in the output" help="READ_LIST_FILE"/> | |
55 </when> | |
56 </conditional> | |
57 | |
58 <expand macro="VS" /> | |
59 | |
60 </inputs> | |
61 | |
62 <outputs> | |
63 <data format="bam" name="outFile" label="${tool.name} on ${on_string}: filtered BAM"/> | |
64 </outputs> | |
65 | |
66 <tests> | |
67 <test> | |
68 <param name="inputFile" value="picard_FilterSamReads.bam" ftype="bam"/> | |
69 <param name="filter" value="includeReadList"/> | |
70 <param name="read_list_file" value="picard_FilterSamReads_read_list_file.tab" ftype="tabular"/> | |
71 <param name="validation_stringency" value="LENIENT"/> | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
72 <output name="outFile" file="picard_FilterSamReads_include_reads_test1.bam" ftype="bam" lines_diff="4"/> |
5 | 73 </test> |
74 <test> | |
75 <param name="inputFile" value="picard_FilterSamReads.bam" ftype="bam"/> | |
76 <param name="filter" value="excludeReadList"/> | |
77 <param name="read_list_file" value="picard_FilterSamReads_read_list_file.tab" ftype="tabular"/> | |
78 <param name="validation_stringency" value="LENIENT"/> | |
12
05087b27692a
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/picard commit 7491208ca0c917a053798a48c3e54c3e30e95d92
devteam
parents:
8
diff
changeset
|
79 <output name="outFile" file="picard_FilterSamReads_exclude_reads_test2.bam" ftype="bam" lines_diff="4"/> |
5 | 80 </test> |
81 </tests> | |
82 | |
83 | |
84 <help> | |
85 | |
86 **Purpose** | |
87 | |
88 Computes a number of metrics that are useful for evaluating coverage and performance of whole genome sequencing experiments. | |
89 | |
90 ------ | |
91 | |
92 .. class:: warningmark | |
93 | |
94 **Warning on using this tool on BWA-MEM output** | |
95 | |
96 This tool will likely fail on BAM datasets generated by BWA MEM as it generates partial read alignemnts. | |
97 | |
98 @dataset_collections@ | |
99 | |
100 @description@ | |
101 | |
102 FILTER=Filter Filter. Required. Possible values: | |
103 includeAligned [OUTPUT SAM/BAM will contain aligned | |
104 reads only. (Note that *both* first and | |
105 second of paired reads must be aligned to be included | |
106 in the OUTPUT SAM or BAM)], | |
107 | |
108 excludeAligned [OUTPUT SAM/BAM will contain un-mapped reads only. | |
109 (Note that *both* first and second of pair must be aligned to be | |
110 excluded from the OUTPUT SAM or BAM)] | |
111 | |
112 includeReadList [OUTPUT SAM/BAM will contain reads | |
113 that are supplied in the READ_LIST_FILE file] | |
114 | |
115 excludeReadList [OUTPUT bam will contain | |
116 reads that are *not* supplied in the READ_LIST_FILE file]} | |
117 | |
118 READ_LIST_FILE=File | |
119 RLF=File Read List File containing reads that will be included or excluded from the OUTPUT SAM or | |
120 BAM file. Default value: null. | |
121 | |
122 @more_info@ | |
123 | |
124 </help> | |
125 </tool> | |
126 | |
127 |