Mercurial > repos > gga > chado_expression_add_expression
view expression_add_expression.xml @ 13:26b07ec8b28c draft
"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 170209d14cabe6ce8ab7b9f06df7fbf36af2ba43"
author | gga |
---|---|
date | Tue, 04 May 2021 12:52:21 +0000 |
parents | 126fc4d52d4e |
children |
line wrap: on
line source
<?xml version="1.0"?> <tool id="expression_add_expression" name="Chado expression add" version="@WRAPPER_VERSION@"> <description></description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <code file="chado.py"/> <command detect_errors="aggressive"><![CDATA[ @START_PSQL@ && chakin expression add_expression '$organism_id' '$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@ ]]></command> <inputs> <expand macro="psql_target"/> <!-- arguments --> <param argument="organism_id" type="select" dynamic_options="list_organisms()" label="Organism" /> <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> <data format="txt" name="results"/> <data format="postgresql" name="outfile" from_work_dir="postgresql_out.tar.bz2" label="${tool.name} on ${on_string}"> <filter>psql_target['method'] == "pgtools"</filter> </data> </outputs> <help> Add an expression matrix file to the database @HELP@ </help> </tool>