Mercurial > repos > devteam > samtools_mpileup
annotate macros.xml @ 7:edbe9587b15d draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
author | iuc |
---|---|
date | Mon, 03 Sep 2018 13:09:45 -0400 |
parents | 483949f5c3b0 |
children | 6fc185405512 |
rev | line source |
---|---|
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
1 <macros> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
2 <xml name="requirements"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
3 <requirements> |
7
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
4 <requirement type="package" version="@TOOL_VERSION@">samtools</requirement> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
5 <yield/> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
6 </requirements> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
7 </xml> |
7
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
8 <token name="@TOOL_VERSION@">1.9</token> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
9 <token name="@FLAGS@">#set $flags = sum(map(int, str($filter).split(',')))</token> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
10 <token name="@PREPARE_IDX_MULTIPLE@"><![CDATA[ |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
11 ##prepare input and indices |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
12 #for $i, $bam in enumerate( $input_bams ): |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
13 ln -s '$bam' '${i}' && |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
14 #if $bam.is_of_type('bam'): |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
15 #if str( $bam.metadata.bam_index ) != "None": |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
16 ln -s '${bam.metadata.bam_index}' '${i}.bai' && |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
17 #else: |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
18 samtools index '${i}' '${i}.bai' && |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
19 #end if |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
20 #elif $bam.is_of_type('cram'): |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
21 #if str( $bam.metadata.cram_index ) != "None": |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
22 ln -s '${bam.metadata.cram_index}' '${i}.crai' && |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
23 #else: |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
24 samtools index '${i}' '${i}.crai' && |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
25 #end if |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
26 #end if |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
27 #end for |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
28 ]]></token> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
29 <xml name="flag_options"> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
30 <option value="1">read is paired</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
31 <option value="2">read is mapped in a proper pair</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
32 <option value="4">read is unmapped</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
33 <option value="8">mate is unmapped</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
34 <option value="16">read reverse strand</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
35 <option value="32">mate reverse strand</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
36 <option value="64">read is the first in a pair</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
37 <option value="128">read is the second in a pair</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
38 <option value="256">alignment or read is not primary</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
39 <option value="512">read fails platform/vendor quality checks</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
40 <option value="1024">read is a PCR or optical duplicate</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
41 <option value="2048">supplementary alignment</option> |
edbe9587b15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 831f76c1ac20172b902d9edf79aced718feb96e2
iuc
parents:
6
diff
changeset
|
42 </xml> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
43 <xml name="citations"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
44 <citations> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
45 <citation type="bibtex"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
46 @misc{SAM_def, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
47 title={Definition of SAM/BAM format}, |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
5
diff
changeset
|
48 url = {https://samtools.github.io/hts-specs/},} |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
49 </citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
50 <citation type="doi">10.1093/bioinformatics/btp352</citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
51 <citation type="doi">10.1093/bioinformatics/btr076</citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
52 <citation type="doi">10.1093/bioinformatics/btr509</citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
53 <citation type="bibtex"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
54 @misc{Danecek_et_al, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
55 Author={Danecek, P., Schiffels, S., Durbin, R.}, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
56 title={Multiallelic calling model in bcftools (-m)}, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
57 url = {http://samtools.github.io/bcftools/call-m.pdf},} |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
58 </citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
59 <citation type="bibtex"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
60 @misc{Durbin_VCQC, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
61 Author={Durbin, R.}, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
62 title={Segregation based metric for variant call QC}, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
63 url = {http://samtools.github.io/bcftools/rd-SegBias.pdf},} |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
64 </citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
65 <citation type="bibtex"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
66 @misc{Li_SamMath, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
67 Author={Li, H.}, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
68 title={Mathematical Notes on SAMtools Algorithms}, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
69 url = {http://www.broadinstitute.org/gatk/media/docs/Samtools.pdf},} |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
70 </citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
71 <citation type="bibtex"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
72 @misc{SamTools_github, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
73 title={SAMTools GitHub page}, |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
74 url = {https://github.com/samtools/samtools},} |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
75 </citation> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
76 </citations> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
77 </xml> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
78 <xml name="version_command"> |
6
483949f5c3b0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools/samtools_mpileup commit 411130b45dc30f7f24f41cdeec5e148c5d8faf40
iuc
parents:
5
diff
changeset
|
79 <version_command><![CDATA[samtools 2>&1 | grep Version]]></version_command> |
3
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
80 </xml> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
81 <xml name="stdio"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
82 <stdio> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
83 <exit_code range="1:" level="fatal" description="Error" /> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
84 </stdio> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
85 </xml> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
86 <token name="@no-chrom-options@"> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
87 ----- |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
88 |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
89 .. class:: warningmark |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
90 |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
91 **No options available? How to re-detect metadata** |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
92 |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
93 If you see a "No options available" within the "**Select references (chromosomes and contigs) you would like to restrict bam to**" drop down, you need to re-detect metadata for the dataset you are trying to process. To do this follow these steps: |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
94 |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
95 1. Click on the **pencil** icon adjacent to the dataset in the history |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
96 2. A new menu will appear in the center pane of the interface |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
97 3. Click **Datatype** tab |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
98 4. Set **New Type** to **BAM** |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
99 5. Click **Save** |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
100 |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
101 The medatada will be re-detected and you will be able to see the list of reference sequences in the "**Select references (chromosomes and contigs) you would like to restrict bam to**" drop-down. |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
102 </token> |
da0203c3461a
planemo upload commit 9c291d7ad7c82e6051fe3e5ddffbe7a5edf6f006
devteam
parents:
diff
changeset
|
103 </macros> |