Mercurial > repos > devteam > samtools_mpileup
annotate macros.xml @ 13:9da0311ab1dd draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 1354b1358df89a922c3243f7e27ce789094b8644"
author | iuc |
---|---|
date | Sun, 19 Dec 2021 15:57:35 +0000 |
parents | 329deb17a9f7 |
children | b61f5d6a7f25 |
rev | line source |
---|---|
4 | 1 <macros> |
2 <xml name="requirements"> | |
3 <requirements> | |
9
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
4 <requirement type="package" version="@TOOL_VERSION@">samtools</requirement> |
4 | 5 <yield/> |
6 </requirements> | |
7 </xml> | |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
8 <token name="@TOOL_VERSION@">1.13</token> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
9 <token name="@PROFILE@">20.05</token> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
10 <token name="@FLAGS@"><![CDATA[ |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
11 #set $flags = 0 |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
12 #if $filter |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
13 #set $flags = sum(map(int, str($filter).split(','))) |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
14 #end if |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
15 ]]></token> |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
16 <token name="@PREPARE_IDX@"><![CDATA[ |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
17 ##prepare input and indices |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
18 ln -s '$input' infile && |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
19 #if $input.is_of_type('bam'): |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
20 #if str( $input.metadata.bam_index ) != "None": |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
21 ln -s '${input.metadata.bam_index}' infile.bai && |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
22 #else: |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
23 samtools index infile infile.bai && |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
24 #end if |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
25 #elif $input.is_of_type('cram'): |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
26 #if str( $input.metadata.cram_index ) != "None": |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
27 ln -s '${input.metadata.cram_index}' infile.crai && |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
28 #else: |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
29 samtools index infile infile.crai && |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
30 #end if |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
31 #end if |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
32 ]]></token> |
9
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
33 <token name="@PREPARE_IDX_MULTIPLE@"><![CDATA[ |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
34 ##prepare input and indices |
9
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
35 #for $i, $bam in enumerate( $input_bams ): |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
36 ln -s '$bam' '${i}' && |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
37 #if $bam.is_of_type('bam'): |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
38 #if str( $bam.metadata.bam_index ) != "None": |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
39 ln -s '${bam.metadata.bam_index}' '${i}.bai' && |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
40 #else: |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
41 samtools index '${i}' '${i}.bai' && |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
42 #end if |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
43 #elif $bam.is_of_type('cram'): |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
44 #if str( $bam.metadata.cram_index ) != "None": |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
45 ln -s '${bam.metadata.cram_index}' '${i}.crai' && |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
46 #else: |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
47 samtools index '${i}' '${i}.crai' && |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
48 #end if |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
49 #end if |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
50 #end for |
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
51 ]]></token> |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
52 <token name="@PREPARE_FASTA_IDX@"><![CDATA[ |
12
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
53 ## Make the user-selected reference genome, if any, accessible through |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
54 ## a shell variable $reffa, index the reference if necessary, and make |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
55 ## the fai-index file available through a shell variable $reffai. |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
56 |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
57 ## For a cached genome simply sets the shell variables to point to the |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
58 ## genome file and its precalculated index. |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
59 ## For a genome from the user's history, if that genome is a plain |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
60 ## fasta file, the code creates a symlink in the pwd, creates the fai |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
61 ## index file next to it, then sets the shell variables to point to the |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
62 ## symlink and its index. |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
63 ## For a fasta.gz dataset from the user's history, it tries the same, |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
64 ## but this will only succeed if the file got compressed with bgzip. |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
65 ## For a regular gzipped file samtools faidx will fail, in which case |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
66 ## the code falls back to decompressing to plain fasta before |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
67 ## reattempting the indexing. |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
68 ## Indexing of a bgzipped file produces a regular fai index file *and* |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
69 ## a compressed gzi file. The former is identical to the fai index of |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
70 ## the uncompressed fasta. |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
71 |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
72 ## If the user has not selected a reference (it's an optional parameter |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
73 ## in some samtools wrappers), a cheetah boolean use_ref is set to |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
74 ## False to encode that fact. |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
75 |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
76 #set use_ref=True |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
77 #if $addref_cond.addref_select == "history": |
12
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
78 #if $addref_cond.ref.is_of_type('fasta'): |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
79 reffa="reference.fa" && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
80 ln -s '${addref_cond.ref}' \$reffa && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
81 samtools faidx \$reffa && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
82 #else: |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
83 reffa="reference.fa.gz" && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
84 ln -s '${addref_cond.ref}' \$reffa && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
85 { |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
86 samtools faidx \$reffa || |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
87 { |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
88 echo "Failed to index compressed reference. Trying decompressed ..." 1>&2 && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
89 gzip -dc \$reffa > reference.fa && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
90 reffa="reference.fa" && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
91 samtools faidx \$reffa; |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
92 } |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
93 } && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
94 #end if |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
95 reffai=\$reffa.fai && |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
96 #elif $addref_cond.addref_select == "cached": |
12
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
97 ## in case of cached the absolute path is used which allows to read |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
98 ## a cram file without specifying the reference |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
99 reffa='${addref_cond.ref.fields.path}' && |
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
100 reffai=\$reffa.fai && |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
101 #else |
12
329deb17a9f7
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit c5ded4208dd70e88596ddc725795a2401773f02d"
iuc
parents:
11
diff
changeset
|
102 #set use_ref=False |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
103 #end if |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
104 ]]></token> |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
105 |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
106 <xml name="optional_reference"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
107 <conditional name="addref_cond"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
108 <param name="addref_select" type="select" label="Use a reference sequence"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
109 <help>@HELP@</help> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
110 <option value="no">No</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
111 <option value="history">Use a genome/index from the history</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
112 <option value="cached">Use a built-in genome</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
113 </param> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
114 <when value="no"/> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
115 <when value="history"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
116 <param name="ref" argument="@ARGUMENT@" type="data" format="fasta,fasta.gz" label="Reference"/> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
117 </when> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
118 <when value="cached"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
119 <param name="ref" argument="@ARGUMENT@" type="select" label="Reference"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
120 <options from_data_table="fasta_indexes"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
121 <filter type="data_meta" ref="input" key="dbkey" column="dbkey"/> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
122 </options> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
123 <validator type="no_options" message="No reference genome is available for the build associated with the selected input dataset"/> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
124 </param> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
125 </when> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
126 </conditional> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
127 </xml> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
128 <xml name="mandatory_reference" token_help="" token_argument=""> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
129 <conditional name="addref_cond"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
130 <param name="addref_select" type="select" label="Use a reference sequence"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
131 <help>@HELP@</help> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
132 <option value="history">Use a genome/index from the history</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
133 <option value="cached">Use a built-in genome</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
134 </param> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
135 <when value="history"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
136 <param name="ref" argument="@ARGUMENT@" type="data" format="fasta,fasta.gz" label="Reference"/> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
137 </when> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
138 <when value="cached"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
139 <param name="ref" argument="@ARGUMENT@" type="select" label="Reference"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
140 <options from_data_table="fasta_indexes"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
141 <filter type="data_meta" ref="input" key="dbkey" column="dbkey"/> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
142 <validator message="No reference genome is available for the build associated with the selected input dataset" type="no_options" /> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
143 </options> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
144 </param> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
145 </when> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
146 </conditional> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
147 </xml> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
148 |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
149 |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
150 <token name="@ADDTHREADS@"><![CDATA[ |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
151 ##compute the number of ADDITIONAL threads to be used by samtools (-@) |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
152 addthreads=\${GALAXY_SLOTS:-1} && (( addthreads-- )) && |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
153 ]]></token> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
154 <token name="@ADDMEMORY@"><![CDATA[ |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
155 ##compute the number of memory available to samtools sort (-m) |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
156 ##use only 75% of available: https://github.com/samtools/samtools/issues/831 |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
157 addmemory=\${GALAXY_MEMORY_MB_PER_SLOT:-768} && |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
158 ((addmemory=addmemory*75/100)) && |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
159 ]]></token> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
160 <xml name="seed_input"> |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
161 <param name="seed" type="integer" optional="True" label="Seed for random number generator" help="If empty a random seed is used." /> |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
162 </xml> |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
163 <xml name="flag_options" token_s1="false" token_s2="false" token_s4="false" token_s8="false" token_s16="false" token_s32="false" token_s64="false" token_s128="false" token_s256="false" token_s512="false" token_s1024="false" token_s2048="false"> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
164 <option value="1" selected="@S1@">Read is paired</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
165 <option value="2" selected="@S2@">Read is mapped in a proper pair</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
166 <option value="4" selected="@S4@">Read is unmapped</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
167 <option value="8" selected="@S8@">Mate is unmapped</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
168 <option value="16" selected="@S16@">Read is mapped to the reverse strand of the reference</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
169 <option value="32" selected="@S32@">Mate is mapped to the reverse strand of the reference</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
170 <option value="64" selected="@S64@">Read is the first in a pair</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
171 <option value="128" selected="@S128@">Read is the second in a pair</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
172 <option value="256" selected="@S256@">Alignment of the read is not primary</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
173 <option value="512" selected="@S512@">Read fails platform/vendor quality checks</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
174 <option value="1024" selected="@S1024@">Read is a PCR or optical duplicate</option> |
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
175 <option value="2048" selected="@S2048@">Alignment is supplementary</option> |
9
fa7ad9b89f4a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
8
diff
changeset
|
176 </xml> |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
177 |
11
111f83918fe6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 0f75269223c0821c6c82acf98fde947d0f816f2b"
iuc
parents:
10
diff
changeset
|
178 <!-- region specification macros and tokens for tools that allow the specification |
10
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
179 of region by bed file / space separated list of regions --> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
180 <token name="@REGIONS_FILE@"><![CDATA[ |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
181 #if $cond_region.select_region == 'tab': |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
182 -t '$cond_region.targetregions' |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
183 #end if |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
184 ]]></token> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
185 <token name="@REGIONS_MANUAL@"><![CDATA[ |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
186 #if $cond_region.select_region == 'text': |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
187 #for $i, $x in enumerate($cond_region.regions_repeat): |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
188 '${x.region}' |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
189 #end for |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
190 #end if |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
191 ]]></token> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
192 <xml name="regions_macro"> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
193 <conditional name="cond_region"> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
194 <param name="select_region" type="select" label="Filter by regions" help="restricts output to only those alignments which overlap the specified region(s)"> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
195 <option value="no" selected="True">No</option> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
196 <option value="text">Manualy specify regions</option> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
197 <option value="tab">Regions from tabular file</option> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
198 </param> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
199 <when value="no"/> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
200 <when value="text"> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
201 <repeat name="regions_repeat" min="1" default="1" title="Regions"> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
202 <param name="region" type="text" label="region" help="format chr:from-to"> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
203 <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> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
204 </param> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
205 </repeat> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
206 </when> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
207 <when value="tab"> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
208 <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)" /> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
209 </when> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
210 </conditional> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
211 </xml> |
8da515fbc1bf
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit a18f79e7cfe15fd6e1a5f70533616c379e4e7c6a"
iuc
parents:
9
diff
changeset
|
212 |
4 | 213 <xml name="citations"> |
214 <citations> | |
215 <citation type="bibtex"> | |
216 @misc{SAM_def, | |
217 title={Definition of SAM/BAM format}, | |
8
583abf29fc8e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
218 url = {https://samtools.github.io/hts-specs/},} |
4 | 219 </citation> |
220 <citation type="doi">10.1093/bioinformatics/btp352</citation> | |
221 <citation type="doi">10.1093/bioinformatics/btr076</citation> | |
222 <citation type="doi">10.1093/bioinformatics/btr509</citation> | |
223 <citation type="bibtex"> | |
224 @misc{Danecek_et_al, | |
225 Author={Danecek, P., Schiffels, S., Durbin, R.}, | |
226 title={Multiallelic calling model in bcftools (-m)}, | |
227 url = {http://samtools.github.io/bcftools/call-m.pdf},} | |
228 </citation> | |
229 <citation type="bibtex"> | |
230 @misc{Durbin_VCQC, | |
231 Author={Durbin, R.}, | |
232 title={Segregation based metric for variant call QC}, | |
233 url = {http://samtools.github.io/bcftools/rd-SegBias.pdf},} | |
234 </citation> | |
235 <citation type="bibtex"> | |
236 @misc{Li_SamMath, | |
237 Author={Li, H.}, | |
238 title={Mathematical Notes on SAMtools Algorithms}, | |
239 url = {http://www.broadinstitute.org/gatk/media/docs/Samtools.pdf},} | |
240 </citation> | |
241 <citation type="bibtex"> | |
242 @misc{SamTools_github, | |
243 title={SAMTools GitHub page}, | |
244 url = {https://github.com/samtools/samtools},} | |
245 </citation> | |
246 </citations> | |
247 </xml> | |
248 <xml name="version_command"> | |
8
583abf29fc8e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
4
diff
changeset
|
249 <version_command><![CDATA[samtools 2>&1 | grep Version]]></version_command> |
4 | 250 </xml> |
251 <xml name="stdio"> | |
252 <stdio> | |
253 <exit_code range="1:" level="fatal" description="Error" /> | |
254 </stdio> | |
255 </xml> | |
256 </macros> |