Mercurial > repos > thanhlv > biotradis
annotate biotradis_bacteria_tradis.xml @ 0:afe9a515d145 draft
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
author | thanhlv |
---|---|
date | Thu, 25 Jul 2019 06:03:12 -0400 |
parents | |
children | eb1e9759c24e |
rev | line source |
---|---|
0
afe9a515d145
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="add_tradis_tags" name="add tradis tags" version="@VERSION@"> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
2 <description>Generates a BAM file with tags added to read strings.</description> |
afe9a515d145
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> |
afe9a515d145
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> |
afe9a515d145
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> |
afe9a515d145
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" /> |
afe9a515d145
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[ |
afe9a515d145
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 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
9 |
afe9a515d145
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' |
afe9a515d145
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') |
afe9a515d145
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 = '' |
afe9a515d145
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 |
afe9a515d145
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 |
afe9a515d145
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) |
afe9a515d145
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} && |
afe9a515d145
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 && |
afe9a515d145
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 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
19 |
afe9a515d145
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 |
afe9a515d145
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 |
afe9a515d145
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 |
afe9a515d145
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 |
afe9a515d145
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 |
afe9a515d145
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 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
26 #if str($smalt_k)!="" |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
27 --smalt_k $smalt_k |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
28 #end if |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
29 #if str($smalt_s)!="" |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
30 --smalt_s $smalt_s |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
31 #end if |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
32 --smalt_y $smalt_y |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
33 --smalt_r $smalt_r |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
34 -n "\${GALAXY_SLOTS:-2}" |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
35 #if $verbose |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
36 --verbose |
afe9a515d145
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 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
38 && tar cvzf insert_site_plot.tar.gz *insert_site_plot.gz |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
39 && tar cvzf mapped.tar.gz *mapped.bam* |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
40 ]]></command> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
41 <inputs> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
42 <param name="input_files" type="data" format="fastqsanger,fastqsanger.gz,fastqsanger.bz2" multiple="true" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
43 <param name="tag" type="text" label="Tag" help="Tag to search for" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
44 <param name="ref" type="data" format="fasta" label="Reference geome" help="Fasta format" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
45 <param name="tag_dir" type="select" label="Tag direction" help="3 or 5(optional. default = 3)" > |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
46 <option value="3" selected="true">3</option> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
47 <option value="5">5</option> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
48 </param> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
49 <param name="mm" type="integer" value="0" label="Number of mismatches allowed when matching tag" help="(optional. default = 0)" /> |
afe9a515d145
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 name="m" type="integer" value="30" label="Mapping quality cutoff score" help="(optional. default = 30)" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
51 <param argument="--smalt_k" type="integer" value="" optional="True" label="Custom k-mer value for SMALT mapping" help="(optional)" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
52 <param argument="--smalt_s" type="integer" value="" optional="True" label="Custom step size for SMALT mapping" help="(optional)" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
53 <param argument="--smalt_y" type="integer" value="0.96" label="Custom y parameter for SMALT" help="(optional. default = 0.96)" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
54 <param argument="--smalt_r" type="integer" value="-1" label="custom r parameter for SMALT" help="(optional. default = -1)" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
55 <param argument="--verbose" type="boolean" truevalue="-v" falsevalue="" checked="false" label="verbose debugging output" help="(Default:No)" /> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
56 </inputs> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
57 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
58 <outputs> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
59 <data name="insert_size_plots" format="tar.gz" label="${tool.name} on ${on_string}: Insert size plot" from_work_dir="insert_site_plot.tar.gz"/> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
60 <data name="mapped_bam" format="tar.gz" label="${tool.name} on ${on_string}: Insert size plot" from_work_dir="mapped.tar.gz"/> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
61 <data name="fastq_stats" format="txt" label="${tool.name} on ${on_string}: Fastq Stats" from_work_dir="fastqs.stats"/> |
afe9a515d145
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> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
63 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
64 <help> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
65 <![CDATA[ |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
66 Run a TraDIS analysis. This involves: |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
67 1: filtering the data with tags matching that passed via -t option |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
68 2: removing the tags from the sequences |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
69 3: mapping |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
70 4: creating an insertion site plot |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
71 5: creating a stats summary |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
72 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
73 Usage: bacteria_tradis [options] |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
74 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
75 Options: |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
76 -f : text file listing fastq files with tradis tags attached |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
77 -t : tag to search for |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
78 -r : reference genome in fasta format (.fa) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
79 -td : tag direction - 3 or 5 (optional. default = 3) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
80 -mm : number of mismatches allowed when matching tag (optional. default = 0) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
81 -m : mapping quality cutoff score (optional. default = 30) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
82 --smalt_k : custom k-mer value for SMALT mapping (optional) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
83 --smalt_s : custom step size for SMALT mapping (optional) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
84 --smalt_y : custom y parameter for SMALT (optional. default = 0.96) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
85 --smalt_r : custom r parameter for SMALT (optional. default = -1) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
86 -n : number of threads to use for SMALT and samtools sort (optional. default = 1) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
87 -e : set defaults for essentiality experiment (smalt_r = 0, -m = 0) |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
88 -v : verbose debugging output |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
89 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
90 Documentation can be found at `site <https://github.com/sanger-pathogens/Bio-Tradis>`_. |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
91 ]]></help> |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
92 |
afe9a515d145
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/biotradis commit 2e1b1f737f3a3d7cfc6350c6936fbb0bd84a5dad-dirty
thanhlv
parents:
diff
changeset
|
93 </tool> |