comparison tradis_gene_insert_sites.xml @ 0:738e58ed9cc2 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis commit 1c0a0f88149bf8863a89c58bace81e070b3adb5a"
author iuc
date Wed, 29 Jan 2020 10:41:06 -0500
parents
children 58234d95978d
comparison
equal deleted inserted replaced
-1:000000000000 0:738e58ed9cc2
1 <tool id="tradis_gene_insert_sites" name="Bio-TraDis counts to gene insertion data" version="@VERSION@">
2 <description></description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command>
8 <![CDATA[
9 tradis_gene_insert_sites -trim3 '$trim3' -trim5 '$trim5' '$input_annot' '$input_counts'
10 ]]>
11 </command>
12
13 <inputs>
14 <param name="input_counts" type="data" format="tabular" label="Read counts" help="Read counts at each nucleotide position for both strands. The first column contains forward strand counts, and the second contains reverse strand counts."/>
15 <param name="input_annot" type="data" format="txt" label="EMBL file containing the reference genome annotations"/>
16 <param name="trim3" type="float" value="0.1" min="0" max="1" label="Portion of the gene to trim in 3' end'" help="Trim reads at the 3'end of genes. Some transposon insertions can be little disruptive when they occur end of genes. Trim to ignore these reads."/>
17 <param name="trim5" type="float" value="0" min="0" max="1" label="Portion of the gene to trim" help="Trim reads at the 5'end of genes. Some transposon insertions can be little disruptive when they occur end of genes. Trim to ignore these reads."/>
18
19 </inputs>
20
21 <outputs>
22 <data name="gene_insert_sites" format="csv" from_work_dir="./*.csv"/>
23 </outputs>
24
25 <tests>
26 <test>
27 <param name="input_counts" ftype="tabular" value="tiny.out.gz.CP009273.1_60_120.insert_site_plot.gz"/>
28 <param name="input_annot" ftype="txt" value="tiny_ref.embl"/>
29 <param name="trim3" ftype="float" value="0"/>
30 <param name="trim5" ftype="float" value="0"/>
31 <output name="gene_insert_sites" file="tiny.out.gz.CP009273.1_60_120.tradis_gene_insert_sites.csv" compare="sim_size" delta="200" />
32 </test>
33 </tests>
34 <help>
35 <![CDATA[
36
37 **What is does**
38
39 Bio-TraDis provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format.
40
41 tradis_gene_insert_sites that combine the counts at each position and an annotation file to provide the number of reads and insertion for each feature.
42
43 -----
44
45 **Output files**
46
47 The tool outputs a table containing the columns :
48 - locus_tag
49 - gene_name
50 - ncrna : Is the feature a non-coding DNA. 1=yes, 0=no.
51 - start
52 - end
53 - strand
54 - read_count : Numer of reads mapping on the feature
55 - ins_index : Insertion index, number of insertion divided by the gene length
56 - gene_length
57 - ins_count : Number of insertion within the feature.
58 - fcn : Function
59
60 -----
61
62 **More information**
63
64 .. class:: infomark
65
66 Additional information about Bio-TraDis can be found at https://github.com/sanger-pathogens/Bio-Tradis
67 ]]>
68 </help>
69
70 <expand macro="citations" />
71
72 </tool>
73
74
75
76