Mercurial > repos > devteam > samtools_mpileup
comparison macros.xml @ 8:6fc185405512 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a972815cbd43dea553b3c0e4ad548f35d0023228-dirty
author | iuc |
---|---|
date | Sun, 28 Jul 2019 14:49:11 -0400 |
parents | edbe9587b15d |
children | 0a86e1e47784 |
comparison
equal
deleted
inserted
replaced
7:edbe9587b15d | 8:6fc185405512 |
---|---|
5 <yield/> | 5 <yield/> |
6 </requirements> | 6 </requirements> |
7 </xml> | 7 </xml> |
8 <token name="@TOOL_VERSION@">1.9</token> | 8 <token name="@TOOL_VERSION@">1.9</token> |
9 <token name="@FLAGS@">#set $flags = sum(map(int, str($filter).split(',')))</token> | 9 <token name="@FLAGS@">#set $flags = sum(map(int, str($filter).split(',')))</token> |
10 <token name="@PREPARE_IDX@"><![CDATA[ | |
11 ##prepare input and indices | |
12 ln -s '$input' infile && | |
13 #if $input.is_of_type('bam'): | |
14 #if str( $input.metadata.bam_index ) != "None": | |
15 ln -s '${input.metadata.bam_index}' infile.bai && | |
16 #else: | |
17 samtools index infile infile.bai && | |
18 #end if | |
19 #elif $input.is_of_type('cram'): | |
20 #if str( $input.metadata.cram_index ) != "None": | |
21 ln -s '${input.metadata.cram_index}' infile.crai && | |
22 #else: | |
23 samtools index infile infile.crai && | |
24 #end if | |
25 #end if | |
26 ]]></token> | |
10 <token name="@PREPARE_IDX_MULTIPLE@"><![CDATA[ | 27 <token name="@PREPARE_IDX_MULTIPLE@"><![CDATA[ |
11 ##prepare input and indices | 28 ##prepare input and indices |
12 #for $i, $bam in enumerate( $input_bams ): | 29 #for $i, $bam in enumerate( $input_bams ): |
13 ln -s '$bam' '${i}' && | 30 ln -s '$bam' '${i}' && |
14 #if $bam.is_of_type('bam'): | 31 #if $bam.is_of_type('bam'): |
24 samtools index '${i}' '${i}.crai' && | 41 samtools index '${i}' '${i}.crai' && |
25 #end if | 42 #end if |
26 #end if | 43 #end if |
27 #end for | 44 #end for |
28 ]]></token> | 45 ]]></token> |
46 <token name="@PREPARE_FASTA_IDX@"><![CDATA[ | |
47 ##checks for reference data ($addref_cond.addref_select=="history" or =="cached") | |
48 ##and sets the -t/-T parameters accordingly: | |
49 ##- in case of history a symbolic link is used because samtools (view) will generate | |
50 ## the index which might not be possible in the directory containing the fasta file | |
51 ##- in case of cached the absolute path is used which allows to read the cram file | |
52 ## without specifying the reference | |
53 #if $addref_cond.addref_select == "history": | |
54 ln -s '${addref_cond.ref}' reference.fa && | |
55 samtools faidx reference.fa && | |
56 #set reffa="reference.fa" | |
57 #set reffai="reference.fa.fai" | |
58 #elif $addref_cond.addref_select == "cached": | |
59 #set reffa=str($addref_cond.ref.fields.path) | |
60 #set reffai=str($addref_cond.ref.fields.path)+".fai" | |
61 #else | |
62 #set reffa=None | |
63 #set reffai=None | |
64 #end if | |
65 ]]></token> | |
66 <token name="@ADDTHREADS@"><![CDATA[ | |
67 ##compute the number of ADDITIONAL threads to be used by samtools (-@) | |
68 addthreads=\${GALAXY_SLOTS:-1} && (( addthreads-- )) && | |
69 ]]></token> | |
70 <token name="@ADDMEMORY@"><![CDATA[ | |
71 ##compute the number of memory available to samtools sort (-m) | |
72 ##use only 75% of available: https://github.com/samtools/samtools/issues/831 | |
73 addmemory=\${GALAXY_MEMORY_MB_PER_SLOT:-768} && | |
74 ((addmemory=addmemory*75/100)) && | |
75 ]]></token> | |
76 <xml name="seed_input"> | |
77 <param name="seed" type="integer" optional="True" label="Seed for random number generator" help="If empty a random seed is used." /> | |
78 </xml> | |
29 <xml name="flag_options"> | 79 <xml name="flag_options"> |
30 <option value="1">read is paired</option> | 80 <option value="1">read is paired</option> |
31 <option value="2">read is mapped in a proper pair</option> | 81 <option value="2">read is mapped in a proper pair</option> |
32 <option value="4">read is unmapped</option> | 82 <option value="4">read is unmapped</option> |
33 <option value="8">mate is unmapped</option> | 83 <option value="8">mate is unmapped</option> |
38 <option value="256">alignment or read is not primary</option> | 88 <option value="256">alignment or read is not primary</option> |
39 <option value="512">read fails platform/vendor quality checks</option> | 89 <option value="512">read fails platform/vendor quality checks</option> |
40 <option value="1024">read is a PCR or optical duplicate</option> | 90 <option value="1024">read is a PCR or optical duplicate</option> |
41 <option value="2048">supplementary alignment</option> | 91 <option value="2048">supplementary alignment</option> |
42 </xml> | 92 </xml> |
93 | |
94 <!-- region specification macros and tokens for tools that allow the specification | |
95 of region by bed file / space separated list of regions --> | |
96 <token name="@REGIONS_FILE@"><![CDATA[ | |
97 #if $cond_region.select_region == 'tab': | |
98 -t '$cond_region.targetregions' | |
99 #end if | |
100 ]]></token> | |
101 <token name="@REGIONS_MANUAL@"><![CDATA[ | |
102 #if $cond_region.select_region == 'text': | |
103 #for $i, $x in enumerate($cond_region.regions_repeat): | |
104 '${x.region}' | |
105 #end for | |
106 #end if | |
107 ]]></token> | |
108 <xml name="regions_macro"> | |
109 <conditional name="cond_region"> | |
110 <param name="select_region" type="select" label="Filter by regions" help="restricts output to only those alignments which overlap the specified region(s)"> | |
111 <option value="no" selected="True">No</option> | |
112 <option value="text">Manualy specify regions</option> | |
113 <option value="tab">Regions from tabular file</option> | |
114 </param> | |
115 <when value="no"/> | |
116 <when value="text"> | |
117 <repeat name="regions_repeat" min="1" default="1" title="Regions"> | |
118 <param name="region" type="text" label="region" help="format chr:from-to"> | |
119 <validator type="regex" message="Required format: CHR[:FROM[-TO]]; where CHR: string containing any character except quotes, whitespace and colon; FROM and TO: any integer">^[^\s'\":]+(:\d+(-\d+){0,1}){0,1}$</validator> | |
120 </param> | |
121 </repeat> | |
122 </when> | |
123 <when value="tab"> | |
124 <param name="targetregions" argument="-t/--target-regions" type="data" format="tabular" label="Target regions file" help="Do stats in these regions only. Tab-delimited file chr,from,to (1-based, inclusive)" /> | |
125 </when> | |
126 </conditional> | |
127 </xml> | |
128 | |
43 <xml name="citations"> | 129 <xml name="citations"> |
44 <citations> | 130 <citations> |
45 <citation type="bibtex"> | 131 <citation type="bibtex"> |
46 @misc{SAM_def, | 132 @misc{SAM_def, |
47 title={Definition of SAM/BAM format}, | 133 title={Definition of SAM/BAM format}, |
81 <xml name="stdio"> | 167 <xml name="stdio"> |
82 <stdio> | 168 <stdio> |
83 <exit_code range="1:" level="fatal" description="Error" /> | 169 <exit_code range="1:" level="fatal" description="Error" /> |
84 </stdio> | 170 </stdio> |
85 </xml> | 171 </xml> |
86 <token name="@no-chrom-options@"> | |
87 ----- | |
88 | |
89 .. class:: warningmark | |
90 | |
91 **No options available? How to re-detect metadata** | |
92 | |
93 If you see a "No options available" within the "**Select references (chromosomes and contigs) you would like to restrict bam to**" drop down, you need to re-detect metadata for the dataset you are trying to process. To do this follow these steps: | |
94 | |
95 1. Click on the **pencil** icon adjacent to the dataset in the history | |
96 2. A new menu will appear in the center pane of the interface | |
97 3. Click **Datatype** tab | |
98 4. Set **New Type** to **BAM** | |
99 5. Click **Save** | |
100 | |
101 The medatada will be re-detected and you will be able to see the list of reference sequences in the "**Select references (chromosomes and contigs) you would like to restrict bam to**" drop-down. | |
102 </token> | |
103 </macros> | 172 </macros> |