2
|
1 <tool id="metarnaseq" name="RNA-seq data meta-analysis">
|
|
2 <description>perform meta-analysis thanks to metaRNAseq</description>
|
8
|
3 <!--requirements>
|
|
4 <container type="docker">sblanck/smat</container>
|
|
5 <requirement type="package" version="0.1.0">r-smagexp</requirement>
|
|
6 </requirements-->
|
2
|
7 <command interpreter="python">
|
|
8 <![CDATA[
|
|
9 stderr_wrapper.py Rscript
|
|
10 ${__tool_directory__}/MetaRNASeq.R
|
|
11 #for $currentInput in $inputList
|
|
12 "${currentInput}"
|
|
13 "${currentInput.name}"
|
|
14 #end for
|
|
15 $top_table
|
|
16 $diagnostic_html
|
|
17 "$diagnostic_html.files_path"
|
|
18 ${__tool_directory__}/MetaRNASeq_tpl.html
|
|
19 ]]>
|
|
20 </command>
|
|
21
|
|
22 <inputs>
|
|
23 <param format="tabular" name="inputList" multiple="true" type="data" optional="false" label="Counts file" help="Must have the same number of row in each study. The experimental conditions must be specified in the header of each file"/>
|
|
24 </inputs>
|
|
25
|
|
26 <outputs>
|
|
27 <data format="tabular" name="top_table" label="Summary of meta-analysis and single studie analysis from ${tool.name} on ${on_string}"/>
|
|
28 <data format="html" name="diagnostic_html" label="Charts for ${tool.name} on ${on_string}"/>
|
|
29 </outputs>
|
|
30
|
|
31 <help>
|
|
32
|
|
33 </help>
|
|
34
|
|
35 </tool>
|