diff expression_add_expression.xml @ 7:126fc4d52d4e draft

"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 1640878827bdc3870b6f34eded3a3f7571a1849f"
author gga
date Wed, 21 Aug 2019 05:10:30 -0400
parents 546ea3a2a7f7
children
line wrap: on
line diff
--- a/expression_add_expression.xml	Thu Jul 11 08:36:59 2019 -0400
+++ b/expression_add_expression.xml	Wed Aug 21 05:10:30 2019 -0400
@@ -1,5 +1,5 @@
 <?xml version="1.0"?>
-<tool id="expression_add_expression" name="Chado expression add" version="@WRAPPER_VERSION@.1">
+<tool id="expression_add_expression" name="Chado expression add" version="@WRAPPER_VERSION@">
     <description></description>
     <macros>
         <import>macros.xml</import>
@@ -14,6 +14,20 @@
 '$analysis_id'
 '$file_path'
 
+#if $unit:
+  --unit '$unit'
+#end if
+
+--query_type '$query_type'
+
+$match_on_name
+
+#if $re_name:
+  --re_name '$re_name'
+#end if
+
+$skip_missing
+
  > '$results'
 
 @ZIP_PSQL@
@@ -25,6 +39,18 @@
         <param argument="analysis_id" type="select" dynamic_options="list_analyses()"  label="Analysis" />
         <param name="file_path" label="Expression matrix" argument="file_path" type="data" format="tabular" help="Tabular file where columns are experimental conditions, and rows are features" />
 
+	      <param name="unit" label="Unit" argument="--unit" type="text" help="The units associated with the loaded values (ie, FPKM, RPKM, raw counts)" />
+
+        <param name="query_type" label="Query type" argument="--query_type" type="text" help="The feature type (e.g. 'gene', 'mRNA', 'polypeptide', 'contig') of the query. It must be a valid Sequence Ontology term." value="mRNA" />
+
+        <param name="match_on_name" label="Match On Name" argument="--match_on_name" type="boolean" truevalue="--match_on_name" falsevalue="" help="Match features using their name instead of their uniquename" />
+
+        <param name="re_name" label="Name regular expression" argument="--re_name" type="text" help="Regular expression to extract the feature name from the input file (first capturing group will be used)." optional="true">
+            <expand macro="sanitized"/>
+        </param>
+
+        <param name="skip_missing" label="Skip Missing" argument="--skip_missing" type="boolean" truevalue="--skip_missing" falsevalue="" help="Skip lines with unknown features instead of aborting everything." />
+
         <expand macro="wait_for"/>
     </inputs>
     <outputs>