changeset 1:5f2dfd76e755 draft

Uploaded
author antmarge
date Sat, 18 Mar 2017 16:37:29 -0400
parents d3227d69c228
children 3b7c93cec1f8
files singleFitness.xml
diffstat 1 files changed, 47 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/singleFitness.xml	Sat Mar 18 16:37:29 2017 -0400
@@ -0,0 +1,47 @@
+<!-- Margaret Antonio  17.01.08 -->
+
+<tool id="singleFitness" name="Single Fitness" version="0.1.0">
+    
+    <description>assess single insertion mutation effect on organismal fitness</description>
+    
+    <command interpreter="perl">
+        singleFitness.pl
+        -c $cutoff
+        -o $outfile
+        
+        $input
+        #for $a in $additionalcsv
+        ${a.input2}
+        #end for
+        
+    </command>
+    
+    <inputs>
+        <param name="input" type="data" label="CSV Fitness File(s)"/>
+        <repeat name="additionalcsv" title="Additional csv fitness file(s)">
+            <param name="input2" type="data" label="Select" />
+        </repeat>
+        <param name="cutoff" type="integer" value="10" label="Cutoff"/>
+        <param name="out" type="text" value="singleVal.csv" label="Name of output file"/>
+    
+    </inputs>
+    
+    <outputs>
+        <data format="csv" name="outfile"  />
+    </outputs>
+    
+    <help>
+        **Tool Description**
+        
+        This tool takes calculates a single insertion mutation's fitness effect on an organism based on fitness calculation data from multiple libraries.
+        
+        **Options**
+        
+        *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
+        
+        
+        *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.
+        
+    </help>
+    
+</tool>