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

Uploaded
author antmarge
date Wed, 29 Mar 2017 19:55:25 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
1 <tool id="compGenes" name="Compare Genes" version="0.1.0">
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
2
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
3 <!-- Margaret Antonio 17.01.08 -->
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
4
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
5 <description> compare gene aggregate fitness from two different experiments</description>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
6
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
7 <requirements>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
8 <requirement type="package" version="5.18.1">perl</requirement>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
9 <requirement type="package" version="2.45">perl_getopt_long</requirement>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
10 <requirement type="package" version="1.02">perl_statistics_distributions</requirement>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
11 </requirements>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
12
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
13 <command interpreter="perl">
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
14 compGenes.pl
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
15 -input1 $input1
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
16 -input2 $input2
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
17 -l1 $l1
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
18 -l2 $l2
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
19 -o $outfile
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
20 </command>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
21
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
22 <inputs>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
23 <param name="input1" type="data" label="csv gene aggregate fitness file #1"/>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
24 <param name="input2" type="data" label="csv gene aggregate fitness file #2"/>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
25 <param name="l1" type="text" value ="input1" label="Label for input #1"/>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
26 <param name="l2" type="text" value ="input2" label="Label for input #2"/>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
27 </inputs>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
28
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
29 <outputs>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
30 <data format="csv" name="outfile" />
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
31 </outputs>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
32
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
33 <help>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
34 **What it does**
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
35
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
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;
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
37
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
38
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
39 **The options explained**
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
40
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
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
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
42
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
43 Label 1 and 2: Labels for the column headers for files in the comparison
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
44
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
45
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
46 The name of your output file: self-explanatory. Remember to have it end in ".csv".
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
47
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
48
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
49 </help>
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
50
2efae0932a7a Uploaded
antmarge
parents:
diff changeset
51 </tool>