13
|
1 <tool id="deseq2" name="DESeq2" version="2.0">
|
|
2 <description>Determines differentially expressed transcripts from read alignments</description>
|
1
|
3 <requirements>
|
13
|
4 <requirement type="binary">Rscript</requirement>
|
|
5 <requirement type="R-module">DESeq2</requirement>
|
1
|
6 <requirement type="package" version="3.0.1">R_3_0_1</requirement>
|
13
|
7 <requirement type="set_environment">DESEQ2_SCRIPT_PATH</requirement>
|
1
|
8 </requirements>
|
13
|
9 <command interpreter="Rscript">
|
|
10 deseq2.R
|
|
11 -o "$deseq_out"
|
|
12 -p "$plots"
|
|
13 -i "$input_matrix"
|
|
14
|
|
15 #if $filter_sel.filter_sel_opts == 'all_vs_all':
|
|
16 -s 'all_vs_all'
|
|
17 #else:
|
|
18 -s ## build a string like '1:2 5:6'
|
|
19 "${filter_sel.control_cols} ${filter_sel.experiement_cols}"
|
|
20 #end if
|
|
21
|
0
|
22 </command>
|
|
23 <inputs>
|
13
|
24 <param format="tabular" name="input_matrix" type="data" label="Countmatrix" help="You can create a count matrix with the tool ..."/>
|
|
25
|
|
26 <conditional name="filter_sel">
|
|
27 <param name="filter_sel_opts" type="select" label="Select properties to filter">
|
|
28 <option value="all_vs_all">All against all</option>
|
|
29 <option value="specific">specific</option>
|
|
30 </param>
|
|
31 <when value="specific">
|
|
32
|
|
33 <param name="control_cols" label="Select columns containing treatment." type="data_column" data_ref="input_matrix"
|
|
34 numerical="True" multiple="true" use_header_names="true" size="120" display="checkboxes">
|
|
35 <validator type="no_options" message="Please select at least one column."/>
|
|
36 </param>
|
|
37
|
|
38 <param name="experiement_cols" label="Select columns containing treatment." type="data_column" data_ref="input_matrix"
|
|
39 numerical="True" multiple="true" use_header_names="true" size="120" display="checkboxes">
|
|
40 <validator type="no_options" message="Please select at least one column."/>
|
|
41 </param>
|
|
42
|
|
43 </when>
|
|
44 <when value="all_v_all" />
|
|
45 </conditional>
|
|
46
|
0
|
47 </inputs>
|
|
48
|
13
|
49 <outputs>
|
|
50 <data format="txt" name="deseq_out" label="DESeq2 result file"/>
|
|
51 <data format="pdf" name="plots" label="Plot collection"/>
|
|
52 <data format="txt" name="log" label="DESeq2 log file"/>
|
|
53 </outputs>
|
0
|
54
|
13
|
55 <help>
|
|
56
|
|
57 .. class:: infomark
|
0
|
58
|
13
|
59 **What it does**
|
|
60
|
|
61 `DESeq` is a tool for differential expression testing of RNA-Seq data.
|
0
|
62
|
|
63
|
13
|
64 **Inputs**
|
0
|
65
|
13
|
66 `DESeq` requires three input files to run:
|
|
67
|
|
68 1. Annotation file in GFF3, containing the necessary information about the transcripts that are to be quantified.
|
|
69 2. The BAM alignment files grouped into replicate groups, each containing several replicates. BAM files store the read alignments in a compressed format. They can be generated using the `SAM-to-BAM` tool in the NGS: SAM Tools section. (The script will also work with only two groups containing only a single replicate each. However, this analysis has less statistical power and is therefor not recommended.)
|
|
70
|
|
71 **Output**
|
|
72
|
|
73 `DESeq` generates a text file containing the gene name and the p-value.
|
|
74
|
|
75 ------
|
|
76
|
|
77 **Licenses**
|
|
78
|
|
79 If **DESeq** is used to obtain results for scientific publications it
|
|
80 should be cited as [1]_.
|
|
81
|
|
82 **References**
|
|
83
|
|
84 .. [1] Anders, S and Huber, W (2010): `Differential expression analysis for sequence count data`_.
|
|
85
|
|
86 .. _Differential expression analysis for sequence count data: http://dx.doi.org/10.1186/gb-2010-11-10-r106
|
|
87
|
|
88 ------
|
|
89
|
|
90 For more information see http://www.sequenceontology.org/gff3.shtml
|
|
91
|
|
92 **SAM/BAM format** The Sequence Alignment/Map (SAM) format is a
|
|
93 tab-limited text format that stores large nucleotide sequence
|
|
94 alignments. BAM is the binary version of a SAM file that allows for
|
|
95 fast and intensive data processing. The format specification and the
|
|
96 description of SAMtools can be found on
|
|
97 http://samtools.sourceforge.net/.
|
|
98
|
|
99 ------
|
|
100
|
|
101 DESeq-hts Wrapper Version 0.3 (Feb 2012)
|
|
102
|
|
103 </help>
|
0
|
104 </tool>
|