Mercurial > repos > dfornika > medaka_consensus
annotate medaka_consensus.xml @ 1:2bcf9108d73c draft default tip
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
author | dfornika |
---|---|
date | Wed, 11 Mar 2020 03:34:28 +0000 |
parents | eecb8c891134 |
children |
rev | line source |
---|---|
1
2bcf9108d73c
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
0
diff
changeset
|
1 <tool id="medaka_consensus" name="medaka_consensus" version="@VERSION@+galaxy0" profile="19.01"> |
0
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
2 <description>Creates a consensus sequence from an alignment generated from nanopore sequence data</description> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
3 <macros> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
4 <token name="@VERSION@">0.11.5</token> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
5 </macros> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
6 <requirements> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
7 <requirement type="package" version="@VERSION@">medaka</requirement> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
8 <requirement type="package" version="1.9">samtools</requirement> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
9 </requirements> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
10 <version_command>medaka --version</version_command> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
11 <command detect_errors="exit_code"><![CDATA[ |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
12 ln -s '${input_alignment}' alignment.bam && |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
13 samtools index alignment.bam && |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
14 medaka consensus |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
15 --threads \${GALAXY_SLOTS:-4} |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
16 --model '${model}' |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
17 alignment.bam |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
18 '${consensus_hdf}' |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
19 > '${log}' |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
20 ]]></command> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
21 <inputs> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
22 <param name="input_alignment" type="data" format="bam" label="Input Alignment"/> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
23 <param name="model" type="select" label="Model"> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
24 <option value="r941_min_fast_g303">r941_min_fast_g303</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
25 <option value="r941_min_high_g303" selected="True">r941_min_high_g303</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
26 <option value="r941_min_high_g330">r941_min_high_g330</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
27 <option value="r941_min_high_g344">r941_min_high_g344</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
28 <option value="r941_prom_fast_g303">r941_prom_fast_g303</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
29 <option value="r941_prom_high_g303">r941_prom_high_g303</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
30 <option value="r941_prom_high_g344">r941_prom_high_g344</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
31 <option value="r941_prom_high_g330">r941_prom_high_g330</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
32 <option value="r10_min_high_g303">r10_min_high_g303</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
33 <option value="r10_min_high_g340">r10_min_high_g340</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
34 <option value="r103_min_high_g345">r103_min_high_g345</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
35 <option value="r941_prom_snp_g303">r941_prom_snp_g303</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
36 <option value="r941_prom_variant_g303">r941_prom_variant_g303</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
37 <option value="r941_min_high_g340_rle">r941_min_high_g340_rle</option> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
38 </param> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
39 </inputs> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
40 <outputs> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
41 <data name="consensus_hdf" format="binary" label="${tool.name} on ${on_string}: consensus hdf" /> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
42 <data name="log" format="txt" label="${tool.name} on ${on_string}: Log" from_work_dir="log.txt"/> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
43 </outputs> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
44 <tests> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
45 </tests> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
46 <help><![CDATA[ |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
47 ]]></help> |
eecb8c891134
"planemo upload for repository https://github.com/public-health-bioinformatics/galaxytools/tree/master/tools/medaka commit 54b753ab7f1805cdef74b8eac46cbe4fa039c9b6-dirty"
dfornika
parents:
diff
changeset
|
48 </tool> |