Mercurial > repos > thanhlv > biotradis
annotate biotradis_bacteria_tradis.xml @ 9:cbe965d49727 draft
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
author | thanhlv |
---|---|
date | Fri, 17 Jan 2020 11:32:36 -0500 |
parents | 09c1f97a5bcc |
children | 4e8358bc80f9 |
rev | line source |
---|---|
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
1 <tool id="bacteria_tradis" name="bacteria tradis" version="@VERSION@"> |
4
7366ea56a6f3
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
3
diff
changeset
|
2 <description>Generates a BAM file with tags added to read strings</description> |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
3 <macros> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
4 <import>macros.xml</import> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
5 </macros> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
6 <expand macro="requirements" /> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
8 #import re |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
9 |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
10 ## Creates symlinks for each input file based on the Galaxy 'element_identifier' |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
11 ## Used so that a human-readable name appears in the output table (instead of 'dataset_xyz.dat') |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
12 #set $named_input_files = '' |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
13 #for $input_file in $input_files |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
14 ## Add single quotes around each input file identifier |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
15 #set $_input_file = "'{}'".format($input_file.element_identifier) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
16 ln -s '${input_file}' ${_input_file} && |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
17 echo ${_input_file} >> fq.list && |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
18 #end for |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
19 |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
20 bacteria_tradis -f fq.list |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
21 -t $tag |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
22 -r $ref |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
23 -td $tag_dir |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
24 -mm $mm |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
25 -m $m |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
26 #if $smalt: |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
27 $smalt |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
28 #if str($smalt_k)!="" |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
29 --smalt_k $smalt_k |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
30 #end if |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
31 #if str($smalt_s)!="" |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
32 --smalt_s $smalt_s |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
33 #end if |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
34 --smalt_y $smalt_y |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
35 --smalt_r $smalt_r |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
36 -n "\${GALAXY_SLOTS:-2}" |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
37 #end if |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
38 $verbose |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
39 && mkdir plots bams |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
40 && mv *insert_site_plot.gz ./plots |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
41 && mv *mapped.bam* ./bams |
7
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
42 ]]> </command> |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
43 <inputs> |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
44 <param name="input_files" type="data" format="fastqsanger,fastqsanger.gz,fastqsanger.bz2" multiple="true" label="Input files" help="Support multiple files"/> |
7
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
45 <param name="tag" type="text" optional="true" label="Tag" help="Tag to search for" /> |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
46 <param name="ref" type="data" format="fasta" label="Reference geome" help="Fasta format" /> |
7
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
47 <param name="tag_dir" type="select" label="Tag direction" help="3 or 5(optional. default = 3)"> |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
48 <option value="3" selected="true">3</option> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
49 <option value="5">5</option> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
50 </param> |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
51 <param name="mm" type="integer" value="0" label="Number of mismatches allowed when matching tag"/> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
52 <param name="m" type="integer" value="30" label="Mapping quality cutoff score"/> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
53 <param name="out_bam" type="boolean" truevalue="yes" falsevalue="no" checked="false" label="Output mapped bam files"/> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
54 <param name="smalt" type="boolean" truevalue="--smalt" falsevalue="" checked="false" label="Use smalt as the mapper" help="Default mapper is bwa" /> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
55 <param argument="--smalt_k" type="integer" value="" optional="True" label="Custom k-mer value for SMALT mapping"/> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
56 <param argument="--smalt_s" type="integer" value="" optional="True" label="Custom step size for SMALT mapping"/> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
57 <param argument="--smalt_y" type="float" value="0.96" label="Custom y parameter for SMALT"/> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
58 <param argument="--smalt_r" type="integer" value="-1" label="Custom r parameter for SMALT"/> |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
59 <param argument="--verbose" type="boolean" truevalue="-v" falsevalue="" checked="false" label="verbose debugging output" help="(Default:No)" /> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
60 </inputs> |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
61 |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
62 <outputs> |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
63 <collection name="insert_plots" format="gz" type="list" label="Insert size plots"> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
64 <discover_datasets pattern="__name_and_ext__" directory="plots" visible="true" /> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
65 </collection> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
66 <collection name="mapped_bam" type="list" format="bam" label="Mapped bam files"> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
67 <filter>out_bam is True</filter> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
68 <discover_datasets pattern="__name_and_ext__" directory="bams" visible="true" /> |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
69 </collection> |
7
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
70 <data name="fastq_stats" format="txt" label="${tool.name} on ${on_string}: Fastq Stats" from_work_dir="fastqs.stats"/> |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
71 </outputs> |
7
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
72 |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
73 <help> |
7
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
74 <![CDATA[ |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
75 Run a TraDIS analysis. This involves: |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
76 1: filtering the data with tags matching that passed via -t option |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
77 2: removing the tags from the sequences |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
78 3: mapping |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
79 4: creating an insertion site plot |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
80 5: creating a stats summary |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
81 |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
82 Usage: bacteria_tradis [options] |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
83 |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
84 Options: |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
85 -f : text file listing fastq files with tradis tags attached |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
86 -t : tag to search for (optional. If not set runs bwa in tagless mode with no filtering.) |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
87 -r : reference genome in fasta format (.fa) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
88 -td : tag direction - 3 or 5 (optional. default = 3) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
89 -mm : number of mismatches allowed when matching tag (optional. default = 0) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
90 -m : mapping quality cutoff score (optional. default = 30) |
9
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
91 -k : custom k-mer value (min seed length) (optional) |
cbe965d49727
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 44b6f6a2bdcd4ba2dabc3d65c7feefcd2ff3b6db-dirty"
thanhlv
parents:
7
diff
changeset
|
92 --smalt : use smalt rather than bwa as the mapper |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
93 --smalt_k : custom k-mer value for SMALT mapping (optional) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
94 --smalt_s : custom step size for SMALT mapping (optional) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
95 --smalt_y : custom y parameter for SMALT (optional. default = 0.96) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
96 --smalt_r : custom r parameter for SMALT (optional. default = -1) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
97 -n : number of threads to use for SMALT and samtools sort (optional. default = 1) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
98 -e : set defaults for essentiality experiment (smalt_r = 0, -m = 0) |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
99 -v : verbose debugging output |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
100 |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
101 Documentation can be found at `site <https://github.com/sanger-pathogens/Bio-Tradis>`_. |
7
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
102 ]]> </help> |
09c1f97a5bcc
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 1c12becfd708c0635632ab92620a846764ec4559-dirty"
thanhlv
parents:
5
diff
changeset
|
103 <expand macro="citations" /> |
3
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
104 |
d44c3626166e
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
105 </tool> |