Mercurial > repos > sblanck > meta_ma
comparison CustomAnalyse.xml @ 0:27ffdb495852 draft default tip
Imported from capsule None
| author | sblanck |
|---|---|
| date | Wed, 13 Apr 2016 07:40:02 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:27ffdb495852 |
|---|---|
| 1 <tool id="customAnalyse" name="CustomAnalyse" version="0.1.0"> | |
| 2 <description>Custom Analyse</description> | |
| 3 <requirements> | |
| 4 <container type="docker">sblanck/testtool:latest</container> | |
| 5 </requirements> | |
| 6 <command> | |
| 7 | |
| 8 /galaxy-tools/stderr_wrapper.py Rscript | |
| 9 /galaxy-tools/transcriptomics/CustomAnalyse/CustomAnalyse.R | |
| 10 #for $input in $inputs | |
| 11 "${input}" | |
| 12 "${input.name}" | |
| 13 #end for | |
| 14 "${target}" | |
| 15 "${selectCondition1}" | |
| 16 "${selectCondition2}" | |
| 17 $result_export_eset | |
| 18 $result_export_conditions | |
| 19 $result_html | |
| 20 $result_html.files_path | |
| 21 /galaxy-tools/transcriptomics/CustomAnalyse/CustomAnalyse_tpl.html | |
| 22 </command> | |
| 23 | |
| 24 <inputs> | |
| 25 | |
| 26 <param name="inputs" type="data" format="cel" multiple="true" label=".CEL files" help=".CEL files to be used"/> | |
| 27 | |
| 28 <param name="target" type="data" format="txt" label="target file" help="target file associated with the .CEL file dataset"/> | |
| 29 | |
| 30 <!--param name="normalisation" type="select" label="Preprocessing/normalization"> | |
| 31 <options> | |
| 32 <option value="rma">rma</option> | |
| 33 <option value="quantile">quantile normalization</option> | |
| 34 <option value="log2">log2</option> | |
| 35 <option value="none">none</option> | |
| 36 </options> | |
| 37 </param--> | |
| 38 | |
| 39 <param name="selectCondition1" type="select" display="checkboxes" label="Condition 1" multiple="true"> | |
| 40 <options from_dataset="target"> | |
| 41 <column name="name" index="0"/> | |
| 42 <column name="value" index="0"/> | |
| 43 </options> | |
| 44 </param> | |
| 45 | |
| 46 <param name="selectCondition2" type="select" display="checkboxes" label="Condition 2" multiple="true"> | |
| 47 <options from_dataset="target"> | |
| 48 <column name="name" index="0"/> | |
| 49 <column name="value" index="0"/> | |
| 50 </options> | |
| 51 </param> | |
| 52 | |
| 53 </inputs> | |
| 54 <outputs> | |
| 55 <data format="html" name="result_html" label="Annotations"/> | |
| 56 <data format="rdata" name="result_export_eset" label="export expressionSet"/> | |
| 57 <data format="cond" name="result_export_conditions" label="export conditions"/> | |
| 58 </outputs> | |
| 59 | |
| 60 <help> | |
| 61 NOTE: This wrapper performs p-value combination from multiples studies with the same probes. If you need to normalize your data, use "matrix_normalisation" tool on each file. Then, use "Merge Standard datasets(copied)" tool to make a multiple file dataset. | |
| 62 </help> | |
| 63 | |
| 64 </tool> |
