comparison tradis_essentiality.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_essentiality" name="Bio-TraDis Essentiality Predictions" version="@VERSION@">
2 <description></description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command>
8 <![CDATA[
9 ln -s '$input_insert_file' input.csv &&
10 tradis_essentiality.R input.csv
11 ]]>
12 </command>
13
14 <inputs>
15 <param name="input_insert_file" type="data" format="csv" label="Gene insertion counts" help="Ourput file of `Bio-TraDis counts to gene insertion data` tool"/>
16 </inputs>
17
18 <outputs>
19
20 <data name="ess_genes" format="csv" label="${tool.name} on ${on_string} : Essential genes" from_work_dir="input.csv.essen.csv"/>
21 <data name="ambig_genes" format="csv" label="${tool.name} on ${on_string} : Unclassified genes" from_work_dir="input.csv.ambig.csv"/>
22 <data name="all_genes" format="csv" label="${tool.name} on ${on_string} : All genes" from_work_dir="input.csv.all.csv"/>
23 <data name="qc_results" format="pdf" label="${tool.name} on ${on_string} : QC report" from_work_dir="input.csv.QC_and_changepoint_plots.pdf"/>
24 </outputs>
25
26 <tests>
27 <test>
28 <param name="input_insert_file" ftype="csv" value="test.csv"/>
29 <output name="ess_genes" file="test.csv.essen.csv" compare="sim_size" delta="200" />
30 <output name="ambig_genes" file="test.csv.ambig.csv" compare="sim_size" delta="200" />
31 <output name="all_genes" file="test.csv.all.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_essentiality tool performs an Essentiality analysis using the annotation counts output of tradis_gene_insert_sites tool
42
43 -----
44
45 **Output files**
46
47 - Essential genes table : Table containing the essential genes
48 - Unclassified genes : Table containing genes that couldn't be classified as essential or non essential
49 - All genes : Table containing all genes
50 - QC report : PDF file containing the regression plot
51
52 All tables contain the following columns:
53 - locus_tag
54 - gene_name
55 - ncrna : Non-coding RNA, 1 if the feature is a non coding DNA, 0 if not.
56 - start
57 - end
58 - strand
59 - read_count : Total number of reads mapping on the feature
60 - ins_index : Insertion index, number of insertion divided by the gene length
61 - gene_length
62 - ins_count : Number of insertion within the feature.
63 - fcn : Function
64
65 -----
66
67 **More information**
68
69 .. class:: infomark
70
71 Additional information about Bio-TraDis can be found at https://github.com/sanger-pathogens/Bio-Tradis
72 ]]>
73 </help>
74
75 <expand macro="citations" />
76
77 </tool>
78
79
80
81