diff dexseq.xml @ 4:251393b72616 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq commit 56ac32067af9f3cd721a4caee469207b21bb3abf
author iuc
date Tue, 11 Dec 2018 00:19:18 -0500
parents 6e8b61c54ff3
children 278b189248cd
line wrap: on
line diff
--- a/dexseq.xml	Sat Jul 28 03:44:02 2018 -0400
+++ b/dexseq.xml	Tue Dec 11 00:19:18 2018 -0500
@@ -1,26 +1,26 @@
 <tool id="dexseq" name="DEXSeq" version="@VERSION@.0">
     <description>Determines differential exon usage from count tables</description>
-     <macros>
+    <macros>
         <import>macros.xml</import>
     </macros>
     <expand macro="requirements">
-        <requirement type="package" version="1.20.0">r-getopt</requirement>
-        <requirement type="package" version="0.2.15">r-rjson</requirement>
+        <requirement type="package" version="1.20.2">r-getopt</requirement>
+        <requirement type="package" version="0.2.20">r-rjson</requirement>
     </expand>
     <code file="dexseq_helper.py" />
     <stdio>
         <regex match="Execution halted"
-           source="both"
-           level="fatal"
-           description="Execution halted." />
+            source="both"
+            level="fatal"
+            description="Execution halted." />
         <regex match="Input-Error 01"
-           source="both"
-           level="fatal"
-           description="Error in your input parameters: Make sure you only apply factors to selected samples." />
+            source="both"
+            level="fatal"
+            description="Error in your input parameters: Make sure you only apply factors to selected samples." />
         <regex match="Error in"
-           source="both"
-           level="fatal"
-           description="An undefined error occured, please check your input carefully and contact your administrator." />
+            source="both"
+            level="fatal"
+            description="An undefined error occured, please check your input carefully and contact your administrator." />
         <regex match="Error:"
             source="both"
             level="fatal"
@@ -96,8 +96,8 @@
         <param name="fdr_cutoff" type="float" min="0.0" max="1.0" value="0.05" label="All the genes under this FDR threshold will be shown in the html report"/>
     </inputs>
     <outputs>
-        <data format="tabular" name="dexseq_out" label="DEXSeq result file on ${on_string}" />
-        <data format="html" name="htmlreport" label="DEXSeq report on ${on_string}">
+        <data name="dexseq_out" format="tabular" label="DEXSeq result file on ${on_string}" />
+        <data name="htmlreport" format="html" label="DEXSeq report on ${on_string}">
             <filter>report is True</filter>
         </data>
     </outputs>
@@ -114,7 +114,7 @@
             </repeat>
             <param name="report" value="False"/>
             <param name="fdr_cutoff" value="1"/>
-            <output name="dexseq_out" file="dexseq_result.tabular" ftype="tabular"/>
+            <output name="dexseq_out" file="dexseq_result.tabular" ftype="tabular" compare="sim_size"/>
         </test>
         <!-- Ensure report works-->
         <test expect_num_outputs="2">
@@ -128,7 +128,7 @@
             </repeat>
             <param name="report" value="True"/>
             <param name="fdr_cutoff" value="1"/>
-            <output name="dexseq_out" file="dexseq_result.tabular" ftype="tabular"/>
+            <output name="dexseq_out" file="dexseq_result.tabular" ftype="tabular" compare="sim_size"/>
         </test>
         <!-- Ensure two factors works-->
         <test expect_num_outputs="1">
@@ -149,7 +149,7 @@
             </repeat>
             <param name="report" value="False"/>
             <param name="fdr_cutoff" value="0.05"/>
-            <output name="dexseq_out" file="dexseq_result_2fact.tabular" ftype="tabular"/>
+            <output name="dexseq_out" file="dexseq_result_2fact.tabular" ftype="tabular" compare="sim_size"/>
         </test>
     </tests>
     <help><![CDATA[
@@ -163,10 +163,10 @@
 **Inputs**
 
 DEXSeq_ takes count tables generated from the dexseq_count as input. Count tables must be generated for each sample individually.
-DEXSeq_ is capable of handling multiple factors that effect your experiment. The first factor you input is considered as the primary
-factor that affects gene expressions. You also input several secondary factors that might
-influence your experiment. But the final output will be changes in genes due to primary factor in presence of secondary factors. Each factor has two levels/states.
-You need to select appropriate count table from your history for each factor level.
+DEXSeq_ is capable of handling multiple factors that affect your experiment. The first factor you input is considered to be the primary
+factor that affects gene expressions. You can also input several secondary factors that might
+influence your experiment but the final output will be changes in genes due to primary factor in the presence of secondary factors. Each factor has two levels/states.
+You need to select an appropriate count table from your history for each factor level.
 
 The following table gives some examples of factors and their levels:
 
@@ -184,7 +184,7 @@
 Gender    Female         Male
 ========= ============== ===============
 
-*Note*: Output log2 fold changes are based on primary factor level 1 vs. factor level2. Here the order of factor levels is important. For example, for the factor 'condition' given in above table, DEXSeq computes fold changes of 'Knockdown' samples against 'Wildtype', i.e. the values correspond to up or down regulations of genes in Knockdown samples.
+*Note*: Output log2 fold changes are based on primary factor level 1 vs. factor level 2. Here the order of factor levels is important. For example, for the factor 'condition' given in the above table, DEXSeq computes fold changes of 'Knockdown' samples against 'Wildtype', i.e. the values correspond to up or down regulations of genes in Knockdown samples.
 
 **Output**