annotate biotradis_bacteria_tradis.xml @ 11:47269fae5647 draft default tip

"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 4d5e56c87ec94e7853b88a4d0a6f20e411640885-dirty"
author thanhlv
date Fri, 17 Jan 2020 12:47:22 -0500
parents 4e8358bc80f9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
10
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
28 #if str($smalt_settings.smalt_k)!=""
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
29 --smalt_k $smalt_settings.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
10
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
31 #if str($smalt_settings.smalt_s)!=""
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
32 --smalt_s $smalt_settings.smalt_s
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
33 #end if
10
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
34 --smalt_y $smalt_settings.smalt_y
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
35 --smalt_r $smalt_settings.smalt_r
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
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" />
10
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
55 <section name="smalt_settings" title="Optional setting for SMALT" expanded="False">
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
56 <param argument="--smalt_k" type="integer" value="" optional="True" label="Custom k-mer value for SMALT mapping"/>
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
57 <param argument="--smalt_s" type="integer" value="" optional="True" label="Custom step size for SMALT mapping"/>
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
58 <param argument="--smalt_y" type="float" value="0.96" label="Custom y parameter for SMALT"/>
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
59 <param argument="--smalt_r" type="integer" value="-1" label="Custom r parameter for SMALT"/>
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
60 </section>
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
61 <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
62 </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
63
d44c3626166e planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff changeset
64 <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
65 <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
66 <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
67 </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
68 <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
69 <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
70 <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
71 </collection>
10
4e8358bc80f9 "planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 35e807998700f046b29e0b8100416cf6ea0f930b-dirty"
thanhlv
parents: 9
diff changeset
72 <data name="fastq_stats" format="txt" label="${tool.name} on ${on_string}: Fastq Stats" from_work_dir="fq.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
73 </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
74
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 <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
76 <![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
77 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
78 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
79 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
80 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
81 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
82 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
83 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
84 ]]> </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
85 <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
86
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 </tool>