comparison MetaRNAseq.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="metarnaseq" name="metaRNASeq">
2 <description>metaRNASeq wrapper</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/MetaRNASeq/MetaRNASeq.R
10 #for $currentInput in $inputList
11 "${currentInput}"
12 "${currentInput.name}"
13 #end for
14 $comparison
15 $method
16 $mod
17 $top_table
18 $diagnostic_html
19 "$diagnostic_html.files_path"
20 /galaxy-tools/transcriptomics/MetaRNAseq/MetaRNASeq_tpl.html
21 </command>
22
23 <inputs>
24 <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"/>
25
26 <param name="method" type="select" label="Compute dispersion method" help="">
27 <option value="pooled">Pooled</option>
28 <option value="pooled-CR">Pooled-CR</option>
29 <option value="per-condition">Per-condition</option>
30 <option value="blind">Blind</option>
31 </param>
32 <param name="mod" type="select" label="Compute dispersion sharingmod" help="">
33 <option value="maximum">Maximum</option>
34 <option value="fit-only">Fit-only</option>
35 <option value="gene-est-only">Gene-est-only</option>
36 </param>
37
38 <param name="comparison" type="text" size="30" optional="false" label="Comparison type" help="A comma separated tuple (no spaces) of the comparison you want to do. Must use the names from the Column Types list. E.g. comparing kidney to liver: kidney,liver. Comparing liver to kidney: liver,kidney">
39 <validator type="empty_field"/>
40 <validator type="regex" message="Must be a comma-separated tuple with no spaces">^\w+,\w+$</validator>
41 </param>
42 </inputs>
43
44 <outputs>
45 <data format="tabular" name="top_table" label="Summary of meta-analysis and single studie analysis from ${tool.name} on ${on_string}"/>
46 <data format="html" name="diagnostic_html" label="Charts for ${tool.name} on ${on_string}"/>
47 </outputs>
48
49 <help>
50 NOTE: This metaRNASeq Galaxy tool can only be run on counts files.
51 </help>
52
53 </tool>