comparison compGenes.xml @ 15:2efae0932a7a draft default tip

Uploaded
author antmarge
date Wed, 29 Mar 2017 19:55:25 -0400
parents
children
comparison
equal deleted inserted replaced
14:d37b0646ed29 15:2efae0932a7a
1 <tool id="compGenes" name="Compare Genes" version="0.1.0">
2
3 <!-- Margaret Antonio 17.01.08 -->
4
5 <description> compare gene aggregate fitness from two different experiments</description>
6
7 <requirements>
8 <requirement type="package" version="5.18.1">perl</requirement>
9 <requirement type="package" version="2.45">perl_getopt_long</requirement>
10 <requirement type="package" version="1.02">perl_statistics_distributions</requirement>
11 </requirements>
12
13 <command interpreter="perl">
14 compGenes.pl
15 -input1 $input1
16 -input2 $input2
17 -l1 $l1
18 -l2 $l2
19 -o $outfile
20 </command>
21
22 <inputs>
23 <param name="input1" type="data" label="csv gene aggregate fitness file #1"/>
24 <param name="input2" type="data" label="csv gene aggregate fitness file #2"/>
25 <param name="l1" type="text" value ="input1" label="Label for input #1"/>
26 <param name="l2" type="text" value ="input2" label="Label for input #2"/>
27 </inputs>
28
29 <outputs>
30 <data format="csv" name="outfile" />
31 </outputs>
32
33 <help>
34 **What it does**
35
36 This tool compares genes for an organism under different conditions. It takes two geneAgregate outputs and compares them calculating the difference in mean fitness for each gene. Example usage: compare organism in presence of control vs antibiotic. For different strains/genomes, where gene ids are not the same, use compStrains.pl;
37
38
39 **The options explained**
40
41 Input 1 and 2: These are the csv (comma separated values) files containing the gene fitness values. Since they should have been produced by the "Aggregate Fitness" tool, each line besides the header should represent the following information for a gene: Locus, Fitness, NumberofInsertions, StandardDev of insertion fitness, Standard Error of insertion fitness, and Marking
42
43 Label 1 and 2: Labels for the column headers for files in the comparison
44
45
46 The name of your output file: self-explanatory. Remember to have it end in ".csv".
47
48
49 </help>
50
51 </tool>