annotate macros.xml @ 2:30388d878f81 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
author iuc
date Thu, 02 Jul 2020 05:25:02 -0400
parents db000c6007a0
children bb8cfc6f6e0c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
020e144b5f78 Uploaded
devteam
parents:
diff changeset
1 <macros>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
2 <xml name="requirements">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
3 <requirements>
2
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
4 <requirement type="package" version="@TOOL_VERSION@">samtools</requirement>
0
020e144b5f78 Uploaded
devteam
parents:
diff changeset
5 <yield/>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
6 </requirements>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
7 </xml>
2
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
8 <token name="@TOOL_VERSION@">1.9</token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
9 <token name="@FLAGS@">#set $flags = sum(map(int, str($filter).split(',')))</token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
10 <token name="@PREPARE_IDX@"><![CDATA[
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
11 ##prepare input and indices
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
12 ln -s '$input' infile &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
13 #if $input.is_of_type('bam'):
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
14 #if str( $input.metadata.bam_index ) != "None":
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
15 ln -s '${input.metadata.bam_index}' infile.bai &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
16 #else:
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
17 samtools index infile infile.bai &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
18 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
19 #elif $input.is_of_type('cram'):
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
20 #if str( $input.metadata.cram_index ) != "None":
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
21 ln -s '${input.metadata.cram_index}' infile.crai &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
22 #else:
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
23 samtools index infile infile.crai &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
24 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
25 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
26 ]]></token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
27 <token name="@PREPARE_IDX_MULTIPLE@"><![CDATA[
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
28 ##prepare input and indices
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
29 #for $i, $bam in enumerate( $input_bams ):
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
30 ln -s '$bam' '${i}' &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
31 #if $bam.is_of_type('bam'):
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
32 #if str( $bam.metadata.bam_index ) != "None":
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
33 ln -s '${bam.metadata.bam_index}' '${i}.bai' &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
34 #else:
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
35 samtools index '${i}' '${i}.bai' &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
36 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
37 #elif $bam.is_of_type('cram'):
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
38 #if str( $bam.metadata.cram_index ) != "None":
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
39 ln -s '${bam.metadata.cram_index}' '${i}.crai' &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
40 #else:
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
41 samtools index '${i}' '${i}.crai' &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
42 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
43 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
44 #end for
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
45 ]]></token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
46 <token name="@PREPARE_FASTA_IDX@"><![CDATA[
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
47 ##checks for reference data ($addref_cond.addref_select=="history" or =="cached")
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
48 ##and sets the -t/-T parameters accordingly:
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
49 ##- in case of history a symbolic link is used because samtools (view) will generate
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
50 ## the index which might not be possible in the directory containing the fasta file
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
51 ##- in case of cached the absolute path is used which allows to read the cram file
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
52 ## without specifying the reference
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
53 #if $addref_cond.addref_select == "history":
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
54 ln -s '${addref_cond.ref}' reference.fa &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
55 samtools faidx reference.fa &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
56 #set reffa="reference.fa"
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
57 #set reffai="reference.fa.fai"
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
58 #elif $addref_cond.addref_select == "cached":
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
59 #set reffa=str($addref_cond.ref.fields.path)
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
60 #set reffai=str($addref_cond.ref.fields.path)+".fai"
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
61 #else
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
62 #set reffa=None
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
63 #set reffai=None
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
64 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
65 ]]></token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
66 <token name="@ADDTHREADS@"><![CDATA[
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
67 ##compute the number of ADDITIONAL threads to be used by samtools (-@)
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
68 addthreads=\${GALAXY_SLOTS:-1} && (( addthreads-- )) &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
69 ]]></token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
70 <token name="@ADDMEMORY@"><![CDATA[
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
71 ##compute the number of memory available to samtools sort (-m)
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
72 ##use only 75% of available: https://github.com/samtools/samtools/issues/831
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
73 addmemory=\${GALAXY_MEMORY_MB_PER_SLOT:-768} &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
74 ((addmemory=addmemory*75/100)) &&
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
75 ]]></token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
76 <xml name="seed_input">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
77 <param name="seed" type="integer" optional="True" label="Seed for random number generator" help="If empty a random seed is used." />
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
78 </xml>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
79 <xml name="flag_options">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
80 <option value="1">Read is paired</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
81 <option value="2">Read is mapped in a proper pair</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
82 <option value="4">Read is unmapped</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
83 <option value="8">Mate is unmapped</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
84 <option value="16">Read is mapped to the reverse strand of the reference</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
85 <option value="32">Mate is mapped to the reverse strand of the reference</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
86 <option value="64">Read is the first in a pair</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
87 <option value="128">Read is the second in a pair</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
88 <option value="256">Alignment of the read is not primary</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
89 <option value="512">Read fails platform/vendor quality checks</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
90 <option value="1024">Read is a PCR or optical duplicate</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
91 <option value="2048">Alignment is supplementary</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
92 </xml>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
93
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
94 <!-- region specification macros and tokens for tools that allow the specification
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
95 of region by bed file / space separated list of regions -->
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
96 <token name="@REGIONS_FILE@"><![CDATA[
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
97 #if $cond_region.select_region == 'tab':
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
98 -t '$cond_region.targetregions'
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
99 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
100 ]]></token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
101 <token name="@REGIONS_MANUAL@"><![CDATA[
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
102 #if $cond_region.select_region == 'text':
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
103 #for $i, $x in enumerate($cond_region.regions_repeat):
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
104 '${x.region}'
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
105 #end for
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
106 #end if
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
107 ]]></token>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
108 <xml name="regions_macro">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
109 <conditional name="cond_region">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
110 <param name="select_region" type="select" label="Filter by regions" help="restricts output to only those alignments which overlap the specified region(s)">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
111 <option value="no" selected="True">No</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
112 <option value="text">Manualy specify regions</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
113 <option value="tab">Regions from tabular file</option>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
114 </param>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
115 <when value="no"/>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
116 <when value="text">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
117 <repeat name="regions_repeat" min="1" default="1" title="Regions">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
118 <param name="region" type="text" label="region" help="format chr:from-to">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
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>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
120 </param>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
121 </repeat>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
122 </when>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
123 <when value="tab">
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
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)" />
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
125 </when>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
126 </conditional>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
127 </xml>
30388d878f81 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit f667915d861dbf0a25cc8fd132cc956d82e73ee9"
iuc
parents: 1
diff changeset
128
0
020e144b5f78 Uploaded
devteam
parents:
diff changeset
129 <xml name="citations">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
130 <citations>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
131 <citation type="bibtex">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
132 @misc{SAM_def,
020e144b5f78 Uploaded
devteam
parents:
diff changeset
133 title={Definition of SAM/BAM format},
1
db000c6007a0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 0
diff changeset
134 url = {https://samtools.github.io/hts-specs/},}
0
020e144b5f78 Uploaded
devteam
parents:
diff changeset
135 </citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
136 <citation type="doi">10.1093/bioinformatics/btp352</citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
137 <citation type="doi">10.1093/bioinformatics/btr076</citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
138 <citation type="doi">10.1093/bioinformatics/btr509</citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
139 <citation type="bibtex">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
140 @misc{Danecek_et_al,
020e144b5f78 Uploaded
devteam
parents:
diff changeset
141 Author={Danecek, P., Schiffels, S., Durbin, R.},
020e144b5f78 Uploaded
devteam
parents:
diff changeset
142 title={Multiallelic calling model in bcftools (-m)},
020e144b5f78 Uploaded
devteam
parents:
diff changeset
143 url = {http://samtools.github.io/bcftools/call-m.pdf},}
020e144b5f78 Uploaded
devteam
parents:
diff changeset
144 </citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
145 <citation type="bibtex">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
146 @misc{Durbin_VCQC,
020e144b5f78 Uploaded
devteam
parents:
diff changeset
147 Author={Durbin, R.},
020e144b5f78 Uploaded
devteam
parents:
diff changeset
148 title={Segregation based metric for variant call QC},
020e144b5f78 Uploaded
devteam
parents:
diff changeset
149 url = {http://samtools.github.io/bcftools/rd-SegBias.pdf},}
020e144b5f78 Uploaded
devteam
parents:
diff changeset
150 </citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
151 <citation type="bibtex">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
152 @misc{Li_SamMath,
020e144b5f78 Uploaded
devteam
parents:
diff changeset
153 Author={Li, H.},
020e144b5f78 Uploaded
devteam
parents:
diff changeset
154 title={Mathematical Notes on SAMtools Algorithms},
020e144b5f78 Uploaded
devteam
parents:
diff changeset
155 url = {http://www.broadinstitute.org/gatk/media/docs/Samtools.pdf},}
020e144b5f78 Uploaded
devteam
parents:
diff changeset
156 </citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
157 <citation type="bibtex">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
158 @misc{SamTools_github,
020e144b5f78 Uploaded
devteam
parents:
diff changeset
159 title={SAMTools GitHub page},
020e144b5f78 Uploaded
devteam
parents:
diff changeset
160 url = {https://github.com/samtools/samtools},}
020e144b5f78 Uploaded
devteam
parents:
diff changeset
161 </citation>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
162 </citations>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
163 </xml>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
164 <xml name="version_command">
1
db000c6007a0 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_reheader commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents: 0
diff changeset
165 <version_command><![CDATA[samtools 2>&1 | grep Version]]></version_command>
0
020e144b5f78 Uploaded
devteam
parents:
diff changeset
166 </xml>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
167 <xml name="stdio">
020e144b5f78 Uploaded
devteam
parents:
diff changeset
168 <stdio>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
169 <exit_code range="1:" level="fatal" description="Error" />
020e144b5f78 Uploaded
devteam
parents:
diff changeset
170 </stdio>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
171 </xml>
020e144b5f78 Uploaded
devteam
parents:
diff changeset
172 </macros>