Mercurial > repos > iuc > edger
annotate edger.xml @ 5:fb9b9f0f2f06 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 91bdcc6a5a46173be6546d590cdf3f311c2b1476
author | iuc |
---|---|
date | Tue, 05 Feb 2019 20:57:30 -0500 |
parents | 4730985c816f |
children | 555659de7321 |
rev | line source |
---|---|
5
fb9b9f0f2f06
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 91bdcc6a5a46173be6546d590cdf3f311c2b1476
iuc
parents:
4
diff
changeset
|
1 <tool id="edger" name="edgeR" version="3.24.1"> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
2 <description> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
3 Perform differential expression of count data |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
4 </description> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
5 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
6 <requirements> |
5
fb9b9f0f2f06
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 91bdcc6a5a46173be6546d590cdf3f311c2b1476
iuc
parents:
4
diff
changeset
|
7 <requirement type="package" version="3.24.1">bioconductor-edger</requirement> |
fb9b9f0f2f06
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 91bdcc6a5a46173be6546d590cdf3f311c2b1476
iuc
parents:
4
diff
changeset
|
8 <requirement type="package" version="3.38.3">bioconductor-limma</requirement> |
4
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
9 <requirement type="package" version="0.2.20">r-rjson</requirement> |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
10 <requirement type="package" version="1.20.2">r-getopt</requirement> |
1
2a16413ec60d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 22882a8eabae0dcc15938423852d1325303b0b78
iuc
parents:
0
diff
changeset
|
11 <requirement type="package" version="1.4.30">r-statmod</requirement> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
12 <!-- required for alpha function used with plotMD --> |
4
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
13 <requirement type="package" version="1.0.0">r-scales</requirement> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
14 </requirements> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
15 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
16 <version_command><![CDATA[ |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
17 echo $(R --version | grep version | grep -v GNU)", edgeR version" $(R --vanilla --slave -e "library(edgeR); cat(sessionInfo()\$otherPkgs\$edgeR\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", limma version" $(R --vanilla --slave -e "library(limma); cat(sessionInfo()\$otherPkgs\$limma\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", scales version" $(R --vanilla --slave -e "library(scales); cat(sessionInfo()\$otherPkgs\$scales\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", rjson version" $(R --vanilla --slave -e "library(rjson); cat(sessionInfo()\$otherPkgs\$rjson\$Version)" 2> /dev/null | grep -v -i "WARNING: ")", getopt version" $(R --vanilla --slave -e "library(getopt); cat(sessionInfo()\$otherPkgs\$getopt\$Version)" 2> /dev/null | grep -v -i "WARNING: ") |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
18 ]]></version_command> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
19 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
20 <command detect_errors="exit_code"><![CDATA[ |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
21 #import json |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
22 Rscript '$__tool_directory__/edger.R' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
23 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
24 -R '$outReport' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
25 -o '$outReport.files_path' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
26 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
27 #if $input.format=="files": |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
28 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
29 ## Adapted from DESeq2 wrapper |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
30 #set $temp_factor_names = list() |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
31 #for $fact in $input.rep_factor: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
32 #set $temp_factor = list() |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
33 #for $g in $fact.rep_group: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
34 #set $count_files = list() |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
35 #for $file in $g.countsFile: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
36 $count_files.append(str($file)) |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
37 #end for |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
38 $temp_factor.append( {str($g.groupName): $count_files} ) |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
39 #end for |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
40 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
41 $temp_factor.reverse() |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
42 $temp_factor_names.append([str($fact.factorName), $temp_factor]) |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
43 #end for |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
44 -j '#echo json.dumps(temp_factor_names)#' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
45 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
46 #elif $input.format=="matrix": |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
47 -m '$input.counts' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
48 #if $input.fact.ffile=='yes': |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
49 -f '$input.fact.finfo' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
50 #else: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
51 -i '${ '|'.join( ['%s::%s' % ($x.factorName, $x.groupNames) for x in $input.fact.rep_factor] ) }' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
52 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
53 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
54 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
55 #if $anno.annoOpt=='yes': |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
56 -a '$anno.geneanno' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
57 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
58 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
59 -C '${ ','.join( ['%s' % $x.contrast for x in $rep_contrast] ) }' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
60 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
61 #if $f.filt.filt_select == 'yes': |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
62 #if $f.filt.cformat.format_select == 'cpm': |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
63 -c '$f.filt.cformat.cpmReq' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
64 -s '$f.filt.cformat.cpmSampleReq' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
65 #elif $f.filt.cformat.format_select == 'counts': |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
66 -z '$f.filt.cformat.cntReq' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
67 #if $f.filt.cformat.samples.count_select == 'total': |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
68 -y |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
69 #elif $f.filt.cformat.samples.count_select == 'sample': |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
70 -s '$f.filt.cformat.samples.cntSampleReq' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
71 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
72 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
73 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
74 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
75 #if $out.normCounts: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
76 -x |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
77 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
78 #if $out.rdaOption: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
79 -r |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
80 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
81 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
82 -l '$adv.lfc' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
83 -p '$adv.pVal' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
84 -d '$adv.pAdjust' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
85 -n '$adv.normalisationOption' |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
86 #if $adv.robOption: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
87 -b |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
88 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
89 #if $adv.lrtOption: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
90 -t |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
91 #end if |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
92 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
93 && |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
94 mkdir ./output_dir |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
95 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
96 && |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
97 cp '$outReport.files_path'/*.tsv output_dir/ |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
98 |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
99 #if $out.rscript: |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
100 && cp '$__tool_directory__/edger.R' '$rscript' |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
101 #end if |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
102 ]]></command> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
103 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
104 <inputs> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
105 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
106 <!-- Counts and Factors --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
107 <conditional name="input"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
108 <param name="format" type="select" label="Count Files or Matrix?" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
109 help="You can choose to input either separate count files (one per sample) or a single count matrix"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
110 <option value="files">Separate Count Files</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
111 <option value="matrix">Single Count Matrix</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
112 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
113 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
114 <when value="files"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
115 <repeat name="rep_factor" title="Factor" min="1"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
116 <param name="factorName" type="text" label="Name" help="Name of experiment factor of interest (e.g. Genotype). One factor must be entered and there must be two or more groups per factor. Optional additional factors (e.g. Batch) can be entered using the Insert Factor button below, see Help section for more information. NOTE: Please only use letters, numbers or underscores."> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
117 <sanitizer> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
118 <valid initial="string.letters,string.digits"><add value="_" /></valid> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
119 </sanitizer> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
120 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
121 <repeat name="rep_group" title="Group" min="2" default="2"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
122 <param name="groupName" type="text" label="Name" |
3
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
123 help="Name of group that the counts files belong to (e.g. WT or Mut). NOTE: Please only use letters, numbers or underscores (case sensitive)."> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
124 <sanitizer> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
125 <valid initial="string.letters,string.digits"><add value="_" /></valid> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
126 </sanitizer> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
127 </param> |
3
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
128 <param name="countsFile" type="data" format="tabular" multiple="true" label="Counts files"/> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
129 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
130 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
131 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
132 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
133 <when value="matrix"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
134 <param name="counts" type="data" format="tabular" label="Count Matrix"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
135 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
136 <conditional name="fact"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
137 <param name="ffile" type="select" label="Input factor information from file?" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
138 help="You can choose to input the factor and group information for the samples from a file or manually enter below."> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
139 <option value="no">No</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
140 <option value="yes">Yes</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
141 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
142 <when value="yes"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
143 <param name="finfo" type="data" format="tabular" label="Factor File"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
144 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
145 <when value="no" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
146 <repeat name="rep_factor" title="Factor" min="1"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
147 <param name="factorName" type="text" label="Factor Name" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
148 help="Name of experiment factor of interest (e.g. Genotype). One factor must be entered and there must be two or more groups per factor. Additional factors (e.g. Batch) can be entered using the Insert Factor button below, see Help section below. NOTE: Please only use letters, numbers or underscores."> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
149 <validator type="empty_field" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
150 <validator type="regex" message="Please only use letters, numbers or underscores">^[\w]+$</validator> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
151 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
152 <param name="groupNames" type="text" label="Groups" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
153 help="Enter the group names for the samples separated with commas e.g. WT,WT,WT,Mut,Mut,Mut. The order of the names must match the order of the samples in the columns of the count matrix. NOTE: Please only use letters, numbers or underscores (case sensitive)."> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
154 <validator type="empty_field" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
155 <validator type="regex" message="Please only use letters, numbers or underscores, and separate levels by commas">^[\w,]+$</validator> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
156 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
157 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
158 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
159 </conditional> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
160 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
161 </conditional> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
162 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
163 <!-- Gene Annotations --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
164 <conditional name="anno"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
165 <param name="annoOpt" type="select" label="Use Gene Annotations?" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
166 help="If you provide an annotation file, annotations will be added to the table(s) of differential expression results to provide descriptions for each gene. See Help section below."> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
167 <option value="no">No</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
168 <option value="yes">Yes</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
169 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
170 <when value="yes"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
171 <param name="geneanno" type="data" format="tabular" label="Gene Annotations"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
172 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
173 <when value="no" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
174 </conditional> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
175 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
176 <!-- Contrasts --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
177 <repeat name="rep_contrast" title="Contrast" min="1" default="1"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
178 <param name="contrast" type="text" label="Contrast of Interest" help="Names of two groups to compare separated by a hyphen e.g. Mut-WT. If the order is Mut-WT the fold changes in the results will be up/down in Mut relative to WT. If you have more than one contrast enter each separately using the Insert Contrast button below. For more info, see Chapter 8 in the limma User's guide: https://www.bioconductor.org/packages/release/bioc/vignettes/limma/inst/doc/usersguide.pdf"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
179 <validator type="empty_field" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
180 <validator type="regex" message="Please only use letters, numbers or underscores">^[\w-]+$</validator> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
181 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
182 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
183 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
184 <!-- Filter Options --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
185 <section name="f" expanded="false" title="Filter Low Counts"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
186 <conditional name="filt"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
187 <param name="filt_select" type="select" label="Filter lowly expressed genes?" help="Treat genes with very low expression as unexpressed and filter out. See the Filter Low Counts section below for more information. Default: No"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
188 <option value="no" selected="true">No</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
189 <option value="yes">Yes</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
190 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
191 <when value="yes"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
192 <conditional name="cformat"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
193 <param name="format_select" type="select" label="Filter on CPM or Count values?" help="It is slightly better to base the filtering on count-per-million (CPM) rather than the raw count values so as to avoid favoring genes expressed in samples sequenced to a higher depth. "> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
194 <option value="cpm">CPM</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
195 <option value="counts">Counts</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
196 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
197 <when value="cpm"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
198 <param name="cpmReq" type="float" value="1" min="0" label="Minimum CPM" help="Treat genes with CPM below this value as unexpressed and filter out. See the Filter Low Counts section below for more information."/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
199 <param name="cpmSampleReq" type="integer" value="0" min="0" label="Minimum Samples" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
200 help="Filter out all genes that do not meet the Minimum CPM in at least this many samples. See the Filter Low Counts section below for more information."/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
201 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
202 <when value="counts"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
203 <param name="cntReq" type="integer" value="0" min="0" label="Minimum Count" help="Filter out all genes that do not meet this minimum count. You can choose below to apply this filter to the total count for all samples or specify the number of samples under Minimum Samples. See the Filter Low Counts section below for more information." /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
204 <conditional name="samples"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
205 <param name="count_select" type="select" label="Filter on Total Count or per Sample Count values?" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
206 <option value="total">Total</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
207 <option value="sample">Sample</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
208 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
209 <when value="total"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
210 <param name="totReq" type="boolean" truevalue="1" falsevalue="0" checked="false" label="Filter on Total Count" help="Apply the Minimum Count filter to genes after summing counts for all samples. See the Filter Low Counts section below for more information." /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
211 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
212 <when value="sample"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
213 <param name="cntSampleReq" type="integer" value="0" min="0" label="Minimum Samples" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
214 help="Filter out all genes that do not meet the Minimum Count in at least this many samples. See the Filter Low Counts section below for more information."/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
215 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
216 </conditional> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
217 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
218 </conditional> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
219 </when> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
220 <when value="no" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
221 </conditional> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
222 </section> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
223 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
224 <!-- Output Options --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
225 <section name="out" expanded="false" title="Output Options"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
226 <param name="normCounts" type="boolean" truevalue="1" falsevalue="0" checked="false" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
227 label="Output Normalised Counts Table?" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
228 help="Output a file containing the normalised counts, these are in log2 counts per million (logCPM). Default: No"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
229 </param> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
230 <param name="rscript" type="boolean" truevalue="True" falsevalue="False" checked="False" label="Output Rscript?" help="If this option is set to Yes, the Rscript used will be provided as a text file in the output. Default: No"/> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
231 <param name="rdaOption" type="boolean" truevalue="1" falsevalue="0" checked="false" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
232 label="Output RData file?" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
233 help="Output all the data used by R to construct the plots and tables, can be loaded into R. A link to the RData file will be provided in the HTML report. Default: No"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
234 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
235 </section> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
236 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
237 <!-- Advanced Options --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
238 <section name="adv" expanded="false" title="Advanced Options"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
239 <param name="lfc" type="float" value="0" min="0" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
240 label="Minimum Log2 Fold Change" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
241 help="Genes above this threshold and below the p-value threshold are considered significant and highlighted in the MD plot. Default: 0."/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
242 <param name="pVal" type="float" value="0.05" min="0" max="1" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
243 label="P-Value Adjusted Threshold" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
244 help="Genes below this threshold are considered significant and highlighted in the MD plot. If either BH(1995) or BY(2001) are selected then this value is a false-discovery-rate control. If Holm(1979) is selected then this is an adjusted p-value for family-wise error rate. Default: 0.05."/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
245 <param name="pAdjust" type="select" label="P-Value Adjustment Method" help="Default: BH"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
246 <option value="BH" selected="true">Benjamini and Hochberg (1995)</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
247 <option value="BY">Benjamini and Yekutieli (2001)</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
248 <option value="holm">Holm (1979)</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
249 <option value="none">None</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
250 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
251 <param name="normalisationOption" type="select" label="Normalisation Method" help="Default: TMM"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
252 <option value="TMM" selected="true">TMM</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
253 <option value="RLE">RLE</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
254 <option value="upperquartile">Upperquartile</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
255 <option value="none">None (Don't normalise)</option> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
256 </param> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
257 <param name="robOption" type="boolean" truevalue="1" falsevalue="0" checked="true" label="Use Robust Settings?" help="Using robust settings is usually recommended to protect against outlier genes. Default: Yes" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
258 <param name="lrtOption" type="boolean" truevalue="1" falsevalue="0" checked="false" label="Use Likelihood Ratio Test?" help="Use likelihood ratio test instead of quasi-likelihood F-test. Default: No"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
259 </section> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
260 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
261 </inputs> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
262 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
263 <outputs> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
264 <data name="outReport" format="html" label="${tool.name} on ${on_string}: Report" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
265 <collection name="outTables" type="list" label="${tool.name} on ${on_string}: Tables"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
266 <discover_datasets pattern="(?P<name>.+)\.tsv$" format="tabular" directory="output_dir" visible="false" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
267 </collection> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
268 <data name="rscript" format="txt" label="${tool.name} on ${on_string}: Rscript"> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
269 <filter>out['rscript']</filter> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
270 </data> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
271 </outputs> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
272 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
273 <tests> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
274 <!-- Ensure report is output --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
275 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
276 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
277 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
278 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
279 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
280 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
281 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
282 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
283 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
284 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
285 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
286 <param name="contrast" value="WT-Mut" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
287 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
288 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
289 <output_collection name="outTables" count="2"> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
290 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
291 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
292 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
293 <has_text_matching expression="11304.*0.4582" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
294 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
295 </element> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
296 <element name="edgeR_WT-Mut" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
297 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
298 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
299 <has_text_matching expression="11304.*-0.4582" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
300 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
301 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
302 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
303 <output name="outReport" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
304 <assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
305 <has_text text="edgeR Analysis Output" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
306 <has_text text="quasi-likelihood" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
307 <not_has_text text="likelihood ratio" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
308 <not_has_text text="RData" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
309 </assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
310 </output> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
311 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
312 <!-- Ensure annotation file input works --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
313 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
314 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
315 <param name="annoOpt" value="yes" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
316 <param name="geneanno" value="anno.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
317 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
318 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
319 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
320 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
321 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
322 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
323 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
324 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
325 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
326 <output_collection name="outTables" count="1"> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
327 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
328 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
329 <has_text_matching expression="EntrezID.*Symbol.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
330 <has_text_matching expression="11304.*Abca4.*0.4582" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
331 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
332 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
333 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
334 </test> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
335 <!-- Ensure RScript and RData file can be output --> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
336 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
337 <param name="format" value="matrix" /> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
338 <param name="rscript" value="True"/> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
339 <param name="rdaOption" value="true" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
340 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
341 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
342 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
343 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
344 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
345 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
346 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
347 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
348 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
349 <output name="outReport" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
350 <assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
351 <has_text text="RData" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
352 </assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
353 </output> |
4
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
354 <output name="rscript"> |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
355 <assert_contents> |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
356 <has_text_matching expression="Task run time" /> |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
357 </assert_contents> |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
358 </output> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
359 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
360 <!-- Ensure secondary factors work --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
361 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
362 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
363 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
364 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
365 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
366 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
367 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
368 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
369 <param name="factorName" value="Batch"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
370 <param name="groupNames" value="b1,b2,b3,b1,b2,b3"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
371 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
372 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
373 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
374 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
375 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
376 <output_collection name="outTables" count="1" > |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
377 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
378 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
379 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
380 <has_text_matching expression="11304.*0.4584" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
381 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
382 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
383 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
384 </test> |
4
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
385 <!-- Ensure factors file with unordered samples works --> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
386 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
387 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
388 <param name="ffile" value="yes" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
389 <param name="finfo" value="factorinfo.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
390 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
391 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
392 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
393 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
394 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
395 <output_collection name="outTables" count="1"> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
396 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
397 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
398 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
399 <has_text_matching expression="11304.*0.4584" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
400 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
401 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
402 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
403 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
404 <!-- Ensure normalised counts file output works--> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
405 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
406 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
407 <param name="normCounts" value="true" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
408 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
409 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
410 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
411 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
412 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
413 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
414 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
415 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
416 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
417 <output_collection name="outTables" count="2"> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
418 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
419 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
420 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
421 <has_text_matching expression="11304.*0.4582" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
422 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
423 </element> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
424 <element name="edgeR_normcounts" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
425 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
426 <has_text_matching expression="GeneID.*Mut1.*Mut2.*Mut3.*WT1.*WT2.*WT3" /> |
5
fb9b9f0f2f06
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 91bdcc6a5a46173be6546d590cdf3f311c2b1476
iuc
parents:
4
diff
changeset
|
427 <has_text_matching expression="11304.*15.75" /> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
428 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
429 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
430 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
431 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
432 <!-- Ensure likelihood ratio option works --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
433 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
434 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
435 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
436 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
437 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
438 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
439 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
440 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
441 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
442 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
443 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
444 <param name="lrtOption" value="true" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
445 <output name="outReport" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
446 <assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
447 <has_text text="likelihood ratio" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
448 <not_has_text text="quasi-likelihood" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
449 </assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
450 </output> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
451 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
452 <!-- Ensure multiple counts files input works --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
453 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
454 <param name="format" value="files" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
455 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
456 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
457 <repeat name="rep_group"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
458 <param name="groupName" value="WT"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
459 <param name="countsFile" value="WT1.counts,WT2.counts,WT3.counts"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
460 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
461 <repeat name="rep_group"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
462 <param name="groupName" value="Mut"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
463 <param name="countsFile" value="Mut1.counts,Mut2.counts,Mut3.counts"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
464 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
465 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
466 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
467 <param name="factorName" value="Batch"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
468 <repeat name="rep_group"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
469 <param name="groupName" value="b1"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
470 <param name="countsFile" value="WT1.counts,Mut1.counts"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
471 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
472 <repeat name="rep_group"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
473 <param name="groupName" value="b2"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
474 <param name="countsFile" value="WT2.counts,Mut2.counts"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
475 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
476 <repeat name="rep_group"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
477 <param name="groupName" value="b3"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
478 <param name="countsFile" value="WT3.counts,Mut3.counts"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
479 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
480 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
481 <param name="annoOpt" value="yes" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
482 <param name="geneanno" value="anno.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
483 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
484 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
485 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
486 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
487 <param name="contrast" value="WT-Mut" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
488 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
489 <param name="normCounts" value="true" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
490 <output_collection name="outTables" count="3"> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
491 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
492 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
493 <has_text_matching expression="EntrezID.*Symbol.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
494 <has_text_matching expression="11304.*Abca4.*0.4584" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
495 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
496 </element> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
497 <element name="edgeR_WT-Mut" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
498 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
499 <has_text_matching expression="logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
500 <has_text_matching expression="11304.*Abca4.*-0.4584" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
501 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
502 </element> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
503 <element name="edgeR_normcounts" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
504 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
505 <has_text_matching expression="Mut1.*Mut2.*Mut3.*WT1.*WT2.*WT3" /> |
5
fb9b9f0f2f06
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 91bdcc6a5a46173be6546d590cdf3f311c2b1476
iuc
parents:
4
diff
changeset
|
506 <has_text_matching expression="11304.*Abca4.*15.75" /> |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
507 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
508 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
509 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
510 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
511 <!-- Ensure filtering on CPM in Mnimum Samples works --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
512 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
513 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
514 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
515 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
516 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
517 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
518 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
519 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
520 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
521 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
522 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
523 <param name="filt_select" value="yes" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
524 <param name="format_select" value="cpm" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
525 <!-- real cpmReq values would be a lot lower |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
526 this is just for this tiny test dataset --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
527 <param name="cpmReq" value="1000" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
528 <param name="cpmSampleReq" value="3" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
529 <output name="outReport" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
530 <assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
531 <has_text text="CPM in at least" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
532 <not_has_text text="after summing counts for all samples" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
533 <not_has_text text="counts in at least" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
534 </assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
535 </output> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
536 <output_collection name="outTables" count="1" > |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
537 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
538 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
539 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
540 <has_text_matching expression="11304.*0.4568" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
541 <not_has_text text="-0.0682" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
542 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
543 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
544 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
545 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
546 <!-- Ensure filtering on Count in Minmum Samples works --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
547 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
548 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
549 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
550 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
551 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
552 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
553 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
554 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
555 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
556 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
557 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
558 <param name="filt_select" value="yes" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
559 <param name="format_select" value="counts" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
560 <param name="cntReq" value="10" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
561 <param name="count_select" value="sample" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
562 <param name="cntSampleReq" value="3" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
563 <output name="outReport" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
564 <assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
565 <has_text text="counts in at least" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
566 <not_has_text text="after summing counts for all samples" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
567 <not_has_text text="CPM in at least" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
568 </assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
569 </output> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
570 <output_collection name="outTables" count="1" > |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
571 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
572 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
573 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
574 <has_text_matching expression="11304.*0.4568" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
575 <not_has_text text="-0.0682" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
576 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
577 </element> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
578 |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
579 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
580 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
581 <!-- Ensure filtering on Total Count works --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
582 <test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
583 <param name="format" value="matrix" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
584 <param name="counts" value="matrix.txt" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
585 <repeat name="rep_factor"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
586 <param name="factorName" value="Genotype"/> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
587 <param name="groupNames" value="Mut,Mut,Mut,WT,WT,WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
588 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
589 <repeat name="rep_contrast"> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
590 <param name="contrast" value="Mut-WT" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
591 </repeat> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
592 <param name="normalisationOption" value="TMM" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
593 <param name="filt_select" value="yes" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
594 <param name="format_select" value="counts" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
595 <!-- real cntReq values would be a lot lower |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
596 this is just for this tiny test dataset --> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
597 <param name="cntReq" value="1000" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
598 <param name="count_select" value="total" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
599 <param name="totReq" value="true" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
600 <output name="outReport" > |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
601 <assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
602 <has_text text="after summing counts for all samples" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
603 <not_has_text text="counts in at least" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
604 <not_has_text text="CPM in at least" /> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
605 </assert_contents> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
606 </output> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
607 <output_collection name="outTables" count="1" > |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
608 <element name="edgeR_Mut-WT" ftype="tabular" > |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
609 <assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
610 <has_text_matching expression="GeneID.*logFC.*logCPM.*F.*PValue.*FDR" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
611 <has_text_matching expression="11304.*0.4568" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
612 <not_has_text text="-0.0682" /> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
613 </assert_contents> |
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
614 </element> |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
615 </output_collection> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
616 </test> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
617 </tests> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
618 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
619 <help><![CDATA[ |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
620 .. class:: infomark |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
621 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
622 **What it does** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
623 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
624 Given a counts matrix, or a set of counts files, for example from **featureCounts**, and optional information about the genes, this tool |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
625 produces plots and tables useful in the analysis of differential gene expression. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
626 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
627 This tool uses the `edgeR`_ quasi-likelihood pipeline (edgeR-quasi) for differential expression analysis. This statistical methodology uses negative binomial generalized linear models, but with F-tests instead of likelihood ratio tests. This method provides stricter error rate control than other negative binomial based pipelines, including the traditional edgeR pipelines or DESeq2. While the limma pipelines are recommended for large-scale datasets, because of their speed and flexibility, the edgeR-quasi pipeline gives better performance in low-count situations. For the data analyzed in this `edgeR workflow article`_ ,the edgeR-quasi, limma-voom and limma-trend pipelines are all equally suitable and give similar results. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
628 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
629 .. _edgeR: http://www.bioconductor.org/packages/release/bioc/html/edgeR.html |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
630 .. _edgeR workflow article: https://f1000research.com/articles/5-1438 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
631 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
632 ----- |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
633 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
634 **Inputs** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
635 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
636 **Counts Data:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
637 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
638 The counts data can either be input as separate counts files (one sample per file) or a single count matrix (one sample per column). The rows correspond to genes, and columns correspond to the counts for the samples. Values must be tab separated, with the first row containing the sample/column labels and the first column containing the row/gene labels. Gene identifiers can be of any type but must be unique and not repeated within a counts file. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
639 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
640 Example - **Separate Count Files**: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
641 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
642 ========== ======= |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
643 **GeneID** **WT1** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
644 ---------- ------- |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
645 11287 1699 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
646 11298 1905 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
647 11302 6 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
648 11303 2099 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
649 11304 356 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
650 11305 2528 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
651 ========== ======= |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
652 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
653 Example - **Single Count Matrix**: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
654 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
655 ========== ======= ======= ======= ======== ======== ======== |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
656 **GeneID** **WT1** **WT2** **WT3** **Mut1** **Mut2** **Mut3** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
657 ---------- ------- ------- ------- -------- -------- -------- |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
658 11287 1699 1528 1601 1463 1441 1495 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
659 11298 1905 1744 1834 1345 1291 1346 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
660 11302 6 8 7 5 6 5 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
661 11303 2099 1974 2100 1574 1519 1654 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
662 11304 356 312 337 361 397 346 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
663 11305 2528 2438 2493 1762 1942 2027 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
664 ========== ======= ======= ======= ======== ======== ======== |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
665 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
666 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
667 **Gene Annotations:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
668 Optional input for gene annotations, this can contain more |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
669 information about the genes than just an ID number. The annotations will |
3
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
670 be available in the differential expression results table and the optional normalised counts table. The file must contain a header row and have the gene IDs in the first column. The number of rows should match that of the counts files, add NA for any gene IDs with no annotation. The Galaxy tool **annotateMyIDs** can be used to obtain annotations for human, mouse, fly and zebrafish. |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
671 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
672 Example: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
673 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
674 ========== ========== =================================================== |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
675 **GeneID** **Symbol** **GeneName** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
676 ---------- ---------- --------------------------------------------------- |
3
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
677 11287 Pzp pregnancy zone protein |
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
678 11298 Aanat arylalkylamine N-acetyltransferase |
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
679 11302 Aatk apoptosis-associated tyrosine kinase |
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
680 11303 Abca1 ATP-binding cassette, sub-family A (ABC1), member 1 |
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
681 11304 Abca4 ATP-binding cassette, sub-family A (ABC1), member 4 |
d79ed3ec25fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit e646be741e315df9332b5206cec1e47c11370ff1
iuc
parents:
2
diff
changeset
|
682 11305 Abca2 ATP-binding cassette, sub-family A (ABC1), member 2 |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
683 ========== ========== =================================================== |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
684 |
4
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
685 **Factor Information:** |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
686 Enter factor names and groups in the tool form, or provide a tab-separated file that has the names of the samples in the first column and one header row. The sample names must be the same as the names in the columns of the count matrix. The second column should contain the primary factor levels (e.g. WT, Mut) with optional additional columns for any secondary factors. |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
687 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
688 Example: |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
689 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
690 ========== ============ ========= |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
691 **Sample** **Genotype** **Batch** |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
692 ---------- ------------ --------- |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
693 WT1 WT b1 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
694 WT2 WT b2 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
695 WT3 WT b3 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
696 Mut1 Mut b1 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
697 Mut2 Mut b2 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
698 Mut3 Mut b3 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
699 ========== ============ ========= |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
700 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
701 *Factor Name:* The name of the experimental factor being investigated e.g. Genotype, Treatment. One factor must be entered and spaces must not be used. Optionally, additional factors can be included, these are variables that might influence your experiment e.g. Batch, Gender, Subject. If additional factors are entered, an additive linear model will be used. |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
702 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
703 *Groups:* The names of the groups for the factor. These must be entered in the same order as the samples (to which the groups correspond) are listed in the columns of the counts matrix. Spaces must not be used and if entered into the tool form above, the values should be separated by commas. |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
704 |
4730985c816f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 230fc767e2e402ee460440afab0e348f2ccab179
iuc
parents:
3
diff
changeset
|
705 |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
706 **Contrasts of Interest:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
707 The contrasts you wish to make between levels. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
708 A common contrast would be a simple difference between two levels: "Mut-WT" |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
709 represents the difference between the mutant and wild type genotypes. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
710 Multiple contrasts must be entered separately using the Insert Contrast button, spaces must not be used. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
711 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
712 **Filter Low Counts:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
713 Genes with very low counts across all libraries provide little evidence for differential expression. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
714 In the biological point of view, a gene must be expressed at some minimal level before |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
715 it is likely to be translated into a protein or to be biologically important. In addition, the |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
716 pronounced discreteness of these counts interferes with some of the statistical approximations |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
717 that are used later in the pipeline. These genes should be filtered out prior to further |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
718 analysis. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
719 As a rule of thumb, genes are dropped if they can’t possibly be expressed in all the samples |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
720 for any of the conditions. Users can set their own definition of genes being expressed. Usually |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
721 a gene is required to have a count of 5-10 in a library to be considered expressed in that |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
722 library. Users should also filter with count-per-million (CPM) rather than filtering on the |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
723 counts directly, as the latter does not account for differences in library sizes between samples. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
724 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
725 Option to ignore the genes that do not show significant levels of |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
726 expression, this filtering is dependent on two criteria: CPM/count and number of samples. You can specify to filter on CPM (Minimum CPM) or count (Minimum Count) values: |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
727 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
728 * **Minimum CPM:** This is the minimum count per million that a gene must have in at |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
729 least the number of samples specified under Minimum Samples. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
730 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
731 * **Minimum Count:** This is the minimum count that a gene must have. It can be combined with either Filter |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
732 on Total Count or Minimum Samples. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
733 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
734 * **Filter on Total Count:** This can be used with the Minimum Count filter to keep genes |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
735 with a minimum total read count. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
736 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
737 * **Minimum Samples:** This is the number of samples in which the Minimum CPM/Count |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
738 requirement must be met in order for that gene to be kept. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
739 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
740 If the Minimum Samples filter is applied, only genes that exhibit a CPM/count greater than the required amount in at least the number of samples specified will be used for analysis. Care should be taken to |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
741 ensure that the sample requirement is appropriate. In the case of an experiment |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
742 with two experimental groups each with two members, if there is a change from |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
743 insignificant CPM/count to significant CPM/count but the sample requirement is set to 3, |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
744 then this will cause that gene to fail the criteria. When in doubt simply do not |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
745 filter or consult the `edgeR workflow article`_ for filtering recommendations. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
746 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
747 **Advanced Options:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
748 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
749 By default error rate for multiple testing is controlled using Benjamini and |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
750 Hochberg's false discovery rate control at a threshold value of 0.05. However |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
751 there are options to change this to custom values. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
752 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
753 * **Minimum log2-fold-change Required:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
754 In addition to meeting the requirement for the adjusted statistic for |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
755 multiple testing, the observation must have an absolute log2-fold-change |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
756 greater than this threshold to be considered significant, thus highlighted |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
757 in the MD plot. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
758 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
759 * **Adjusted Threshold:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
760 Set the threshold for the resulting value of the multiple testing control |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
761 method. Only observations whose statistic falls below this value is |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
762 considered significant, thus highlighted in the MD plot. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
763 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
764 * **P-Value Adjustment Method:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
765 Change the multiple testing control method, the options are BH(1995) and |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
766 BY(2001) which are both false discovery rate controls. There is also |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
767 Holm(1979) which is a method for family-wise error rate control. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
768 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
769 **Normalisation Method:** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
770 The most obvious technical factor that affects the read counts, other than gene expression |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
771 levels, is the sequencing depth of each RNA sample. edgeR adjusts any differential expression |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
772 analysis for varying sequencing depths as represented by differing library sizes. This is |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
773 part of the basic modeling procedure and flows automatically into fold-change or p-value |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
774 calculations. It is always present, and doesn’t require any user intervention. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
775 The second most important technical influence on differential expression is one that is less |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
776 obvious. RNA-seq provides a measure of the relative abundance of each gene in each RNA |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
777 sample, but does not provide any measure of the total RNA output on a per-cell basis. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
778 This commonly becomes important when a small number of genes are very highly expressed |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
779 in one sample, but not in another. The highly expressed genes can consume a substantial |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
780 proportion of the total library size, causing the remaining genes to be under-sampled in that |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
781 sample. Unless this RNA composition effect is adjusted for, the remaining genes may falsely |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
782 appear to be down-regulated in that sample . The edgeR `calcNormFactors` function normalizes for RNA composition by finding a set of scaling factors for the library sizes that minimize the log-fold changes between the samples for most genes. The default method for computing these scale factors uses a trimmed mean of M values (TMM) between each pair of samples. We call the product of the original library size and the scaling factor the *effective library size*. The effective library size replaces the original library size in all downsteam analyses. TMM is the recommended method for most RNA-Seq data where the majority (more than half) of the genes are believed not differentially expressed between any pair of the samples. You can change the normalisation method under **Advanced Options** above. For more information, see the `calcNormFactors` section in the `edgeR User's Guide`_. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
783 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
784 **Robust Settings** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
785 Option to use robust settings. Using robust settings (robust=TRUE) with the edgeR estimateDisp and glmQLFit functions is usually recommended to protect against outlier genes. This is turned on by default. Note that it is only used with the quasi-likelihood F test method. For more information, see the `edgeR workflow article`_. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
786 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
787 **Test Method** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
788 Option to use the likelihood ratio test instead of the quasi-likelihood F test. For more information, see the `edgeR workflow article`_. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
789 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
790 .. _edgeR User's Guide: http://www.bioconductor.org/packages/release/bioc/html/edgeR.html |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
791 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
792 ----- |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
793 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
794 **Outputs** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
795 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
796 This tool outputs |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
797 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
798 * a table of differentially expressed genes for each contrast of interest |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
799 * a HTML report with plots and additional information |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
800 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
801 Optionally, under **Output Options** you can choose to output |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
802 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
803 * a normalised counts table |
2
a1634a9c2ee1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit 910ffba48cb5f981aad1e00b77056bbbec7f9617
iuc
parents:
1
diff
changeset
|
804 * the R script used by this tool |
0
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
805 * an RData file |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
806 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
807 ----- |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
808 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
809 **Citations** |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
810 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
811 Please try to cite the appropriate articles when you publish results obtained using software, as such citation is the main means by which the authors receive credit for their work. For the edgeR method itself, please cite Robinson et al., 2010, and for this tool (which was developed from the Galaxy limma-voom tool) please cite Liu et al., 2015. |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
812 |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
813 ]]></help> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
814 <citations> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
815 <citation type="doi">10.1093/bioinformatics/btp616</citation> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
816 <citation type="doi">10.1093/nar/gkv412</citation> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
817 </citations> |
9bdff28ae1b1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger commit eac022c9c6e51e661c1513306b9fefdad673487d
iuc
parents:
diff
changeset
|
818 </tool> |