comparison singleFitness.xml @ 1:5f2dfd76e755 draft

Uploaded
author antmarge
date Sat, 18 Mar 2017 16:37:29 -0400
parents
children
comparison
equal deleted inserted replaced
0:d3227d69c228 1:5f2dfd76e755
1 <!-- Margaret Antonio 17.01.08 -->
2
3 <tool id="singleFitness" name="Single Fitness" version="0.1.0">
4
5 <description>assess single insertion mutation effect on organismal fitness</description>
6
7 <command interpreter="perl">
8 singleFitness.pl
9 -c $cutoff
10 -o $outfile
11
12 $input
13 #for $a in $additionalcsv
14 ${a.input2}
15 #end for
16
17 </command>
18
19 <inputs>
20 <param name="input" type="data" label="CSV Fitness File(s)"/>
21 <repeat name="additionalcsv" title="Additional csv fitness file(s)">
22 <param name="input2" type="data" label="Select" />
23 </repeat>
24 <param name="cutoff" type="integer" value="10" label="Cutoff"/>
25 <param name="out" type="text" value="singleVal.csv" label="Name of output file"/>
26
27 </inputs>
28
29 <outputs>
30 <data format="csv" name="outfile" />
31 </outputs>
32
33 <help>
34 **Tool Description**
35
36 This tool takes calculates a single insertion mutation's fitness effect on an organism based on fitness calculation data from multiple libraries.
37
38 **Options**
39
40 *The csv fitness file(s)*: These are the csv (comma separated values) files containing the fitness values that will be used in downstream analyses. Since they should have been produced by the "Calculate Fitness" tool, each line besides the header should represent the following information for an insertion location: position,strand,count_1,count_2,ratio,mt_freq_t1,mt_freq_t2,pop_freq_t1,pop_freq_t2,gene,D,W,nW
41
42
43 *Cutoff*: This value lets you ignore the fitness scores of any insertion locations with an average count (the number of counts from t1 and t2 divided by 2) less than it.
44
45 </help>
46
47 </tool>