Mercurial > repos > iuc > limma_voom
annotate limma_voom.R @ 19:c9c6427edfe9 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
author | iuc |
---|---|
date | Tue, 28 May 2019 10:04:10 -0400 |
parents | 97e06a4c7c75 |
children | 0921444c832d |
rev | line source |
---|---|
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1 # This tool takes in a matrix of feature counts as well as gene annotations and |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
2 # outputs a table of top expressions as well as various plots for differential |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
3 # expression analysis |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
4 # |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
5 # ARGS: htmlPath", "R", 1, "character" -Path to html file linking to other outputs |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
6 # outPath", "o", 1, "character" -Path to folder to write all output to |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
7 # filesPath", "j", 2, "character" -JSON list object if multiple files input |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
8 # matrixPath", "m", 2, "character" -Path to count matrix |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
9 # factFile", "f", 2, "character" -Path to factor information file |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
10 # factInput", "i", 2, "character" -String containing factors if manually input |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
11 # annoPath", "a", 2, "character" -Path to input containing gene annotations |
19
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
12 # contrastFile", "C", 1, "character" -Path to contrasts information file |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
13 # contrastInput", "D", 1, "character" -String containing contrasts of interest |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
14 # cpmReq", "c", 2, "double" -Float specifying cpm requirement |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
15 # cntReq", "z", 2, "integer" -Integer specifying minimum total count requirement |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
16 # sampleReq", "s", 2, "integer" -Integer specifying cpm requirement |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
17 # normCounts", "x", 0, "logical" -String specifying if normalised counts should be output |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
18 # rdaOpt", "r", 0, "logical" -String specifying if RData should be output |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
19 # lfcReq", "l", 1, "double" -Float specifying the log-fold-change requirement |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
20 # pValReq", "p", 1, "double" -Float specifying the p-value requirement |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
21 # pAdjOpt", "d", 1, "character" -String specifying the p-value adjustment method |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
22 # normOpt", "n", 1, "character" -String specifying type of normalisation used |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
23 # robOpt", "b", 0, "logical" -String specifying if robust options should be used |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
24 # trend", "t", 1, "double" -Float for prior.count if limma-trend is used instead of voom |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
25 # weightOpt", "w", 0, "logical" -String specifying if voomWithQualityWeights should be used |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
26 # topgenes", "G", 1, "integer" -Integer specifying no. of genes to highlight in volcano and heatmap |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
27 # treatOpt", "T", 0, "logical" -String specifying if TREAT function should be used |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
28 # plots, "P", 1, "character" -String specifying additional plots to be created |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
29 # |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
30 # OUT: |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
31 # Density Plots (if filtering) |
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
32 # Box Plots (if normalising) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
33 # MDS Plot |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
34 # Voom/SA plot |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
35 # MD Plot |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
36 # Volcano Plot |
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
37 # Heatmap |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
38 # Expression Table |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
39 # HTML file linking to the ouputs |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
40 # Optional: |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
41 # Normalised counts Table |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
42 # RData file |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
43 # |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
44 # |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
45 # Author: Shian Su - registertonysu@gmail.com - Jan 2014 |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
46 # Modified by: Maria Doyle - Jun 2017, Jan 2018, May 2018 |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
47 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
48 # Record starting time |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
49 timeStart <- as.character(Sys.time()) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
50 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
51 # Load all required libraries |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
52 library(methods, quietly=TRUE, warn.conflicts=FALSE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
53 library(statmod, quietly=TRUE, warn.conflicts=FALSE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
54 library(splines, quietly=TRUE, warn.conflicts=FALSE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
55 library(edgeR, quietly=TRUE, warn.conflicts=FALSE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
56 library(limma, quietly=TRUE, warn.conflicts=FALSE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
57 library(scales, quietly=TRUE, warn.conflicts=FALSE) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
58 library(getopt, quietly=TRUE, warn.conflicts=FALSE) |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
59 library(gplots, quietly=TRUE, warn.conflicts=FALSE) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
60 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
61 ################################################################################ |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
62 ### Function Declaration |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
63 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
64 # Function to sanitise contrast equations so there are no whitespaces |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
65 # surrounding the arithmetic operators, leading or trailing whitespace |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
66 sanitiseEquation <- function(equation) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
67 equation <- gsub(" *[+] *", "+", equation) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
68 equation <- gsub(" *[-] *", "-", equation) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
69 equation <- gsub(" *[/] *", "/", equation) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
70 equation <- gsub(" *[*] *", "*", equation) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
71 equation <- gsub("^\\s+|\\s+$", "", equation) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
72 return(equation) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
73 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
74 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
75 # Function to sanitise group information |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
76 sanitiseGroups <- function(string) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
77 string <- gsub(" *[,] *", ",", string) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
78 string <- gsub("^\\s+|\\s+$", "", string) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
79 return(string) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
80 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
81 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
82 # Function to change periods to whitespace in a string |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
83 unmake.names <- function(string) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
84 string <- gsub(".", " ", string, fixed=TRUE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
85 return(string) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
86 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
87 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
88 # Generate output folder and paths |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
89 makeOut <- function(filename) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
90 return(paste0(opt$outPath, "/", filename)) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
91 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
92 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
93 # Generating design information |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
94 pasteListName <- function(string) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
95 return(paste0("factors$", string)) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
96 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
97 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
98 # Create cata function: default path set, default seperator empty and appending |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
99 # true by default (Ripped straight from the cat function with altered argument |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
100 # defaults) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
101 cata <- function(..., file = opt$htmlPath, sep = "", fill = FALSE, labels = NULL, |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
102 append = TRUE) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
103 if (is.character(file)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
104 if (file == "") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
105 file <- stdout() |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
106 else if (substring(file, 1L, 1L) == "|") { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
107 file <- pipe(substring(file, 2L), "w") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
108 on.exit(close(file)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
109 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
110 else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
111 file <- file(file, ifelse(append, "a", "w")) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
112 on.exit(close(file)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
113 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
114 .Internal(cat(list(...), file, sep, fill, labels, append)) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
115 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
116 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
117 # Function to write code for html head and title |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
118 HtmlHead <- function(title) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
119 cata("<head>\n") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
120 cata("<title>", title, "</title>\n") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
121 cata("</head>\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
122 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
123 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
124 # Function to write code for html links |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
125 HtmlLink <- function(address, label=address) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
126 cata("<a href=\"", address, "\" target=\"_blank\">", label, "</a><br />\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
127 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
128 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
129 # Function to write code for html images |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
130 HtmlImage <- function(source, label=source, height=500, width=500) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
131 cata("<img src=\"", source, "\" alt=\"", label, "\" height=\"", height) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
132 cata("\" width=\"", width, "\"/>\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
133 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
134 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
135 # Function to write code for html list items |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
136 ListItem <- function(...) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
137 cata("<li>", ..., "</li>\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
138 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
139 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
140 TableItem <- function(...) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
141 cata("<td>", ..., "</td>\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
142 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
143 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
144 TableHeadItem <- function(...) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
145 cata("<th>", ..., "</th>\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
146 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
147 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
148 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
149 ### Input Processing |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
150 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
151 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
152 # Collect arguments from command line |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
153 args <- commandArgs(trailingOnly=TRUE) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
154 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
155 # Get options, using the spec as defined by the enclosed list. |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
156 # Read the options from the default: commandArgs(TRUE). |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
157 spec <- matrix(c( |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
158 "htmlPath", "R", 1, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
159 "outPath", "o", 1, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
160 "filesPath", "j", 2, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
161 "matrixPath", "m", 2, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
162 "factFile", "f", 2, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
163 "factInput", "i", 2, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
164 "annoPath", "a", 2, "character", |
19
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
165 "contrastFile", "C", 1, "character", |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
166 "contrastInput", "D", 1, "character", |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
167 "cpmReq", "c", 1, "double", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
168 "totReq", "y", 0, "logical", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
169 "cntReq", "z", 1, "integer", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
170 "sampleReq", "s", 1, "integer", |
12
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
171 "filtCounts", "F", 0, "logical", |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
172 "normCounts", "x", 0, "logical", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
173 "rdaOpt", "r", 0, "logical", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
174 "lfcReq", "l", 1, "double", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
175 "pValReq", "p", 1, "double", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
176 "pAdjOpt", "d", 1, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
177 "normOpt", "n", 1, "character", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
178 "robOpt", "b", 0, "logical", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
179 "trend", "t", 1, "double", |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
180 "weightOpt", "w", 0, "logical", |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
181 "topgenes", "G", 1, "integer", |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
182 "treatOpt", "T", 0, "logical", |
11
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
183 "plots", "P", 1, "character", |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
184 "libinfoOpt", "L", 0, "logical"), |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
185 byrow=TRUE, ncol=4) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
186 opt <- getopt(spec) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
187 |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
188 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
189 if (is.null(opt$matrixPath) & is.null(opt$filesPath)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
190 cat("A counts matrix (or a set of counts files) is required.\n") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
191 q(status=1) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
192 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
193 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
194 if (is.null(opt$cpmReq)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
195 filtCPM <- FALSE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
196 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
197 filtCPM <- TRUE |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
198 } |
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
199 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
200 if (is.null(opt$cntReq) || is.null(opt$sampleReq)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
201 filtSmpCount <- FALSE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
202 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
203 filtSmpCount <- TRUE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
204 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
205 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
206 if (is.null(opt$totReq)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
207 filtTotCount <- FALSE |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
208 } else { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
209 filtTotCount <- TRUE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
210 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
211 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
212 if (is.null(opt$rdaOpt)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
213 wantRda <- FALSE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
214 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
215 wantRda <- TRUE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
216 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
217 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
218 if (is.null(opt$annoPath)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
219 haveAnno <- FALSE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
220 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
221 haveAnno <- TRUE |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
222 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
223 |
12
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
224 if (is.null(opt$filtCounts)) { |
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
225 wantFilt <- FALSE |
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
226 } else { |
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
227 wantFilt <- TRUE |
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
228 } |
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
229 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
230 if (is.null(opt$normCounts)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
231 wantNorm <- FALSE |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
232 } else { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
233 wantNorm <- TRUE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
234 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
235 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
236 if (is.null(opt$robOpt)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
237 wantRobust <- FALSE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
238 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
239 wantRobust <- TRUE |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
240 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
241 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
242 if (is.null(opt$weightOpt)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
243 wantWeight <- FALSE |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
244 } else { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
245 wantWeight <- TRUE |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
246 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
247 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
248 if (is.null(opt$trend)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
249 wantTrend <- FALSE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
250 deMethod <- "limma-voom" |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
251 } else { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
252 wantTrend <- TRUE |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
253 deMethod <- "limma-trend" |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
254 priorCount <- opt$trend |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
255 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
256 |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
257 if (is.null(opt$treatOpt)) { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
258 wantTreat <- FALSE |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
259 } else { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
260 wantTreat <- TRUE |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
261 } |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
262 |
11
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
263 if (is.null(opt$libinfoOpt)) { |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
264 wantLibinfo <- FALSE |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
265 } else { |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
266 wantLibinfo <- TRUE |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
267 } |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
268 |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
269 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
270 if (!is.null(opt$filesPath)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
271 # Process the separate count files (adapted from DESeq2 wrapper) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
272 library("rjson") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
273 parser <- newJSONParser() |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
274 parser$addData(opt$filesPath) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
275 factorList <- parser$getObject() |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
276 factors <- sapply(factorList, function(x) x[[1]]) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
277 filenamesIn <- unname(unlist(factorList[[1]][[2]])) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
278 sampleTable <- data.frame(sample=basename(filenamesIn), |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
279 filename=filenamesIn, |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
280 row.names=filenamesIn, |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
281 stringsAsFactors=FALSE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
282 for (factor in factorList) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
283 factorName <- factor[[1]] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
284 sampleTable[[factorName]] <- character(nrow(sampleTable)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
285 lvls <- sapply(factor[[2]], function(x) names(x)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
286 for (i in seq_along(factor[[2]])) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
287 files <- factor[[2]][[i]][[1]] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
288 sampleTable[files,factorName] <- lvls[i] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
289 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
290 sampleTable[[factorName]] <- factor(sampleTable[[factorName]], levels=lvls) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
291 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
292 rownames(sampleTable) <- sampleTable$sample |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
293 rem <- c("sample","filename") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
294 factors <- sampleTable[, !(names(sampleTable) %in% rem), drop=FALSE] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
295 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
296 #read in count files and create single table |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
297 countfiles <- lapply(sampleTable$filename, function(x){read.delim(x, row.names=1)}) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
298 counts <- do.call("cbind", countfiles) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
299 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
300 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
301 # Process the single count matrix |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
302 counts <- read.table(opt$matrixPath, header=TRUE, sep="\t", strip.white=TRUE, stringsAsFactors=FALSE, check.names=FALSE) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
303 row.names(counts) <- counts[, 1] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
304 counts <- counts[ , -1] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
305 countsRows <- nrow(counts) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
306 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
307 # Process factors |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
308 if (is.null(opt$factInput)) { |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
309 factorData <- read.table(opt$factFile, header=TRUE, sep="\t", strip.white=TRUE) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
310 if(!setequal(factorData[, 1], colnames(counts))) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
311 stop("Sample IDs in counts and factors files don't match") |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
312 # order samples as in counts matrix |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
313 factorData <- factorData[match(colnames(counts), factorData[, 1]), ] |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
314 factors <- factorData[, -1, drop=FALSE] |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
315 } else { |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
316 factors <- unlist(strsplit(opt$factInput, "|", fixed=TRUE)) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
317 factorData <- list() |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
318 for (fact in factors) { |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
319 newFact <- unlist(strsplit(fact, split="::")) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
320 factorData <- rbind(factorData, newFact) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
321 } # Factors have the form: FACT_NAME::LEVEL,LEVEL,LEVEL,LEVEL,... The first factor is the Primary Factor. |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
322 |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
323 # Set the row names to be the name of the factor and delete first row |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
324 row.names(factorData) <- factorData[, 1] |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
325 factorData <- factorData[, -1] |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
326 factorData <- sapply(factorData, sanitiseGroups) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
327 factorData <- sapply(factorData, strsplit, split=",") |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
328 # Transform factor data into data frame of R factor objects |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
329 factors <- data.frame(factorData) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
330 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
331 } |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
332 # check there are the same number of samples in counts and factors |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
333 if(nrow(factors) != ncol(counts)) { |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
334 stop("There are a different number of samples in the counts files and factors") |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
335 } |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
336 # make groups valid R names, required for makeContrasts |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
337 factors <- sapply(factors, make.names) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
338 factors <- data.frame(factors) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
339 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
340 # if annotation file provided |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
341 if (haveAnno) { |
11
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
342 geneanno <- read.table(opt$annoPath, header=TRUE, sep="\t", quote= "", strip.white=TRUE, stringsAsFactors=FALSE) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
343 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
344 |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
345 #Create output directory |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
346 dir.create(opt$outPath, showWarnings=FALSE) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
347 |
19
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
348 # Process contrasts |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
349 if (is.null(opt$contrastInput)) { |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
350 contrastData <- read.table(opt$contrastFile, header=TRUE, sep="\t", quote= "", strip.white=TRUE, stringsAsFactors=FALSE) |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
351 contrastData <- contrastData[, 1, drop=TRUE] |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
352 } else { |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
353 # Split up contrasts seperated by comma into a vector then sanitise |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
354 contrastData <- unlist(strsplit(opt$contrastInput, split=",")) |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
355 } |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
356 |
c9c6427edfe9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4c0406815cb76175d7d90b2874310635694126f5
iuc
parents:
18
diff
changeset
|
357 # in case input groups start with numbers this will make the names valid R names, required for makeContrasts |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
358 contrastData <- sanitiseEquation(contrastData) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
359 contrastData <- gsub(" ", ".", contrastData, fixed=TRUE) |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
360 cons <- NULL |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
361 for (i in contrastData) { |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
362 i <- strsplit(i, split="-") |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
363 i <- lapply(i, make.names) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
364 i <- lapply(i, paste, collapse="-") |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
365 cons <- append(cons, unlist(i)) |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
366 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
367 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
368 plots <- character() |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
369 if (!is.null(opt$plots)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
370 plots <- unlist(strsplit(opt$plots, split=",")) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
371 } |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
372 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
373 denOutPng <- makeOut("densityplots.png") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
374 denOutPdf <- makeOut("densityplots.pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
375 cpmOutPdf <- makeOut("cpmplots.pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
376 boxOutPng <- makeOut("boxplots.png") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
377 boxOutPdf <- makeOut("boxplots.pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
378 mdsscreeOutPng <- makeOut("mdsscree.png") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
379 mdsscreeOutPdf <- makeOut("mdsscree.pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
380 mdsxOutPdf <- makeOut("mdsplot_extra.pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
381 mdsxOutPng <- makeOut("mdsplot_extra.png") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
382 mdsamOutPdf <- makeOut("mdplots_samples.pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
383 mdOutPdf <- character() # Initialise character vector |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
384 volOutPdf <- character() |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
385 heatOutPdf <- character() |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
386 stripOutPdf <- character() |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
387 mdvolOutPng <- character() |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
388 topOut <- character() |
9
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
389 glimmaOut <- character() |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
390 for (i in 1:length(cons)) { |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
391 con <- cons[i] |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
392 con <- gsub("\\(|\\)", "", con) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
393 mdOutPdf[i] <- makeOut(paste0("mdplot_", con, ".pdf")) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
394 volOutPdf[i] <- makeOut(paste0("volplot_", con, ".pdf")) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
395 heatOutPdf[i] <- makeOut(paste0("heatmap_", con, ".pdf")) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
396 stripOutPdf[i] <- makeOut(paste0("stripcharts_", con, ".pdf")) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
397 mdvolOutPng[i] <- makeOut(paste0("mdvolplot_", con, ".png")) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
398 topOut[i] <- makeOut(paste0(deMethod, "_", con, ".tsv")) |
9
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
399 glimmaOut[i] <- makeOut(paste0("glimma_", con, "/MD-Plot.html")) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
400 } |
13
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
401 filtOut <- makeOut(paste0(deMethod, "_", "filtcounts")) |
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
402 normOut <- makeOut(paste0(deMethod, "_", "normcounts")) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
403 rdaOut <- makeOut(paste0(deMethod, "_analysis.RData")) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
404 sessionOut <- makeOut("session_info.txt") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
405 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
406 # Initialise data for html links and images, data frame with columns Label and |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
407 # Link |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
408 linkData <- data.frame(Label=character(), Link=character(), |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
409 stringsAsFactors=FALSE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
410 imageData <- data.frame(Label=character(), Link=character(), |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
411 stringsAsFactors=FALSE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
412 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
413 # Initialise vectors for storage of up/down/neutral regulated counts |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
414 upCount <- numeric() |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
415 downCount <- numeric() |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
416 flatCount <- numeric() |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
417 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
418 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
419 ### Data Processing |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
420 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
421 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
422 # Extract counts and annotation data |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
423 print("Extracting counts") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
424 data <- list() |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
425 data$counts <- counts |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
426 if (haveAnno) { |
4
a61a6e62e91f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 6a458881c0819b75e55e64b3f494679d43bb9ee8
iuc
parents:
3
diff
changeset
|
427 # order annotation by genes in counts (assumes gene ids are in 1st column of geneanno) |
a61a6e62e91f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 6a458881c0819b75e55e64b3f494679d43bb9ee8
iuc
parents:
3
diff
changeset
|
428 annoord <- geneanno[match(row.names(counts), geneanno[,1]), ] |
a61a6e62e91f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 6a458881c0819b75e55e64b3f494679d43bb9ee8
iuc
parents:
3
diff
changeset
|
429 data$genes <- annoord |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
430 } else { |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
431 data$genes <- data.frame(GeneID=row.names(counts)) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
432 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
433 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
434 # Creating naming data |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
435 samplenames <- colnames(data$counts) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
436 sampleanno <- data.frame("sampleID"=samplenames, factors) |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
437 row.names(factors) <- samplenames # for "Summary of experimental data" table |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
438 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
439 # Creating colours for the groups |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
440 cols <- as.numeric(factors[, 1]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
441 col.group <- palette()[cols] |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
442 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
443 # If filter crieteria set, filter out genes that do not have a required cpm/counts in a required number of |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
444 # samples. Default is no filtering |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
445 preFilterCount <- nrow(data$counts) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
446 nsamples <- ncol(data$counts) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
447 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
448 if (filtCPM || filtSmpCount || filtTotCount) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
449 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
450 if (filtTotCount) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
451 keep <- rowSums(data$counts) >= opt$cntReq |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
452 } else if (filtSmpCount) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
453 keep <- rowSums(data$counts >= opt$cntReq) >= opt$sampleReq |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
454 } else if (filtCPM) { |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
455 myCPM <- cpm(data$counts) |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
456 thresh <- myCPM >= opt$cpmReq |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
457 keep <- rowSums(thresh) >= opt$sampleReq |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
458 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
459 if ("c" %in% plots) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
460 # Plot CPM vs raw counts (to check threshold) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
461 pdf(cpmOutPdf, width=6.5, height=10) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
462 par(mfrow=c(3, 2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
463 for (i in 1:nsamples) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
464 plot(data$counts[, i], myCPM[, i], xlim=c(0,50), ylim=c(0,3), main=samplenames[i], xlab="Raw counts", ylab="CPM") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
465 abline(v=10, col="red", lty=2, lwd=2) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
466 abline(h=opt$cpmReq, col=4) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
467 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
468 linkName <- "CpmPlots.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
469 linkAddr <- "cpmplots.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
470 linkData <- rbind(linkData, data.frame(Label=linkName, Link=linkAddr, stringsAsFactors=FALSE)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
471 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
472 } |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
473 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
474 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
475 data$counts <- data$counts[keep, ] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
476 data$genes <- data$genes[keep, , drop=FALSE] |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
477 |
12
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
478 if (wantFilt) { |
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
479 print("Outputting filtered counts") |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
480 filt_counts <- data.frame(data$genes, data$counts, check.names=FALSE) |
12
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
481 write.table(filt_counts, file=filtOut, row.names=FALSE, sep="\t", quote=FALSE) |
13
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
482 linkData <- rbind(linkData, data.frame(Label=paste0(deMethod, "_", "filtcounts.tsv"), Link=paste0(deMethod, "_", "filtcounts"), stringsAsFactors=FALSE)) |
12
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
483 } |
81796eb60bd0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 33651907e4d5d6672537b80142c022d2b4951e8c
iuc
parents:
11
diff
changeset
|
484 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
485 # Plot Density |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
486 if ("d" %in% plots) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
487 # PNG |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
488 png(denOutPng, width=1000, height=500) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
489 par(mfrow=c(1,2), cex.axis=0.8) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
490 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
491 # before filtering |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
492 lcpm1 <- cpm(counts, log=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
493 plot(density(lcpm1[, 1]), col=col.group[1], lwd=2, las=2, main="", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
494 title(main="Density Plot: Raw counts", xlab="Log-cpm") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
495 for (i in 2:nsamples){ |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
496 den <- density(lcpm1[, i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
497 lines(den$x, den$y, col=col.group[i], lwd=2) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
498 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
499 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
500 # after filtering |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
501 lcpm2 <- cpm(data$counts, log=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
502 plot(density(lcpm2[,1]), col=col.group[1], lwd=2, las=2, main="", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
503 title(main="Density Plot: Filtered counts", xlab="Log-cpm") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
504 for (i in 2:nsamples){ |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
505 den <- density(lcpm2[, i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
506 lines(den$x, den$y, col=col.group[i], lwd=2) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
507 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
508 legend("topright", samplenames, text.col=col.group, bty="n") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
509 imgName <- "Densityplots.png" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
510 imgAddr <- "densityplots.png" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
511 imageData <- rbind(imageData, data.frame(Label=imgName, Link=imgAddr, stringsAsFactors=FALSE)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
512 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
513 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
514 # PDF |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
515 pdf(denOutPdf, width=14) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
516 par(mfrow=c(1,2), cex.axis=0.8) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
517 plot(density(lcpm1[, 1]), col=col.group[1], lwd=2, las=2, main="", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
518 title(main="Density Plot: Raw counts", xlab="Log-cpm") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
519 for (i in 2:nsamples){ |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
520 den <- density(lcpm1[, i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
521 lines(den$x, den$y, col=col.group[i], lwd=2) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
522 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
523 plot(density(lcpm2[, 1]), col=col.group[1], lwd=2, las=2, main="", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
524 title(main="Density Plot: Filtered counts", xlab="Log-cpm") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
525 for (i in 2:nsamples){ |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
526 den <- density(lcpm2[, i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
527 lines(den$x, den$y, col=col.group[i], lwd=2) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
528 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
529 legend("topright", samplenames, text.col=col.group, bty="n") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
530 linkName <- "DensityPlots.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
531 linkAddr <- "densityplots.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
532 linkData <- rbind(linkData, data.frame(Label=linkName, Link=linkAddr, stringsAsFactors=FALSE)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
533 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
534 } |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
535 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
536 |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
537 postFilterCount <- nrow(data$counts) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
538 filteredCount <- preFilterCount-postFilterCount |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
539 |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
540 # Generating the DGEList object "y" |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
541 print("Generating DGEList object") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
542 data$samples <- sampleanno |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
543 data$samples$lib.size <- colSums(data$counts) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
544 data$samples$norm.factors <- 1 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
545 row.names(data$samples) <- colnames(data$counts) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
546 y <- new("DGEList", data) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
547 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
548 print("Generating Design") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
549 factorList <- sapply(names(factors), pasteListName) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
550 formula <- "~0" |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
551 for (i in 1:length(factorList)) { |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
552 formula <- paste(formula,factorList[i], sep="+") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
553 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
554 formula <- formula(formula) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
555 design <- model.matrix(formula) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
556 for (i in 1:length(factorList)) { |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
557 colnames(design) <- gsub(factorList[i], "", colnames(design), fixed=TRUE) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
558 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
559 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
560 # Calculating normalising factors |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
561 print("Calculating Normalisation Factors") |
11
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
562 logcounts <- y #store for plots |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
563 y <- calcNormFactors(y, method=opt$normOpt) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
564 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
565 # Generate contrasts information |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
566 print("Generating Contrasts") |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
567 contrasts <- makeContrasts(contrasts=cons, levels=design) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
568 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
569 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
570 ### Data Output |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
571 ################################################################################ |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
572 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
573 # Plot Box plots (before and after normalisation) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
574 if (opt$normOpt != "none" & "b" %in% plots) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
575 png(boxOutPng, width=1000, height=500) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
576 par(mfrow=c(1,2), mar=c(6,4,2,2)+0.1) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
577 labels <- colnames(counts) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
578 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
579 lcpm1 <- cpm(y$counts, log=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
580 boxplot(lcpm1, las=2, col=col.group, xaxt="n", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
581 axis(1, at=seq_along(labels), labels = FALSE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
582 abline(h=median(lcpm1), col=4) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
583 text(x=seq_along(labels), y=par("usr")[3]-1, srt=45, adj=1, labels=labels, xpd=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
584 title(main="Box Plot: Unnormalised counts", ylab="Log-cpm") |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
585 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
586 lcpm2 <- cpm(y, log=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
587 boxplot(lcpm2, las=2, col=col.group, xaxt="n", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
588 axis(1, at=seq_along(labels), labels = FALSE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
589 text(x=seq_along(labels), y=par("usr")[3]-1, srt=45, adj=1, labels=labels, xpd=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
590 abline(h=median(lcpm2), col=4) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
591 title(main="Box Plot: Normalised counts", ylab="Log-cpm") |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
592 |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
593 imgName <- "Boxplots.png" |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
594 imgAddr <- "boxplots.png" |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
595 imageData <- rbind(imageData, data.frame(Label=imgName, Link=imgAddr, stringsAsFactors=FALSE)) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
596 invisible(dev.off()) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
597 |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
598 pdf(boxOutPdf, width=14) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
599 par(mfrow=c(1,2), mar=c(6,4,2,2)+0.1) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
600 boxplot(lcpm1, las=2, col=col.group, xaxt="n", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
601 axis(1, at=seq_along(labels), labels = FALSE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
602 abline(h=median(lcpm1), col=4) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
603 text(x=seq_along(labels), y=par("usr")[3]-1, srt=45, adj=1, labels=labels, xpd=TRUE) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
604 title(main="Box Plot: Unnormalised counts", ylab="Log-cpm") |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
605 boxplot(lcpm2, las=2, col=col.group, xaxt="n", xlab="") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
606 axis(1, at=seq_along(labels), labels = FALSE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
607 text(x=seq_along(labels), y=par("usr")[3]-1, srt=45, adj=1, labels=labels, xpd=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
608 abline(h=median(lcpm2), col=4) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
609 title(main="Box Plot: Normalised counts", ylab="Log-cpm") |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
610 linkName <- "BoxPlots.pdf" |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
611 linkAddr <- "boxplots.pdf" |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
612 linkData <- rbind(linkData, data.frame(Label=linkName, Link=linkAddr, stringsAsFactors=FALSE)) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
613 invisible(dev.off()) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
614 } |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
615 |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
616 # Plot MDS |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
617 print("Generating MDS plot") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
618 labels <- names(counts) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
619 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
620 # Scree plot (Variance Explained) code copied from Glimma |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
621 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
622 # get column of matrix |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
623 getCols <- function(x, inds) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
624 x[, inds, drop=FALSE] |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
625 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
626 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
627 x <- cpm(y, log=TRUE) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
628 ndim <- nsamples - 1 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
629 nprobes <- nrow(x) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
630 top <- 500 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
631 top <- min(top, nprobes) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
632 cn <- colnames(x) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
633 bad <- rowSums(is.finite(x)) < nsamples |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
634 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
635 if (any(bad)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
636 warning("Rows containing infinite values have been removed") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
637 x <- x[!bad, , drop=FALSE] |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
638 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
639 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
640 dd <- matrix(0, nrow=nsamples, ncol=nsamples, dimnames=list(cn, cn)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
641 topindex <- nprobes - top + 1L |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
642 for (i in 2L:(nsamples)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
643 for (j in 1L:(i - 1L)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
644 dists <- (getCols(x, i) - getCols(x, j))^2 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
645 dists <- sort.int(dists, partial = topindex ) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
646 topdist <- dists[topindex:nprobes] |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
647 dd[i, j] <- sqrt(mean(topdist)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
648 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
649 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
650 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
651 a1 <- suppressWarnings(cmdscale(as.dist(dd), k=min(ndim, 8), eig=TRUE)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
652 eigen <- data.frame(name = 1:min(ndim, 8), eigen = round(a1$eig[1:min(ndim, 8)]/sum(a1$eig), 2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
653 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
654 png(mdsscreeOutPng, width=1000, height=500) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
655 par(mfrow=c(1, 2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
656 plotMDS(y, labels=samplenames, col=as.numeric(factors[, 1]), main="MDS Plot: Dims 1 and 2") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
657 barplot(eigen$eigen, names.arg=eigen$name, main = "Scree Plot: Variance Explained", xlab = "Dimension", ylab = "Proportion", las=1) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
658 imgName <- paste0("MDSPlot_", names(factors)[1], ".png") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
659 imgAddr <- "mdsscree.png" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
660 imageData <- rbind(imageData, data.frame(Label=imgName, Link=imgAddr, stringsAsFactors=FALSE)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
661 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
662 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
663 pdf(mdsscreeOutPdf, width=14) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
664 par(mfrow=c(1, 2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
665 plotMDS(y, labels=samplenames, col=as.numeric(factors[, 1]), main="MDS Plot: Dims 1 and 2") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
666 barplot(eigen$eigen, names.arg=eigen$name, main = "Scree Plot: Variance Explained", xlab = "Dimension", ylab = "Proportion", las=1) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
667 linkName <- paste0("MDSPlot_", names(factors)[1], ".pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
668 linkAddr <- "mdsscree.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
669 linkData <- rbind(linkData, data.frame(Label=linkName, Link=linkAddr, stringsAsFactors=FALSE)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
670 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
671 |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
672 # generate Glimma interactive MDS Plot |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
673 if ("i" %in% plots) { |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
674 Glimma::glMDSPlot(y, labels=samplenames, groups=factors[, 1], |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
675 folder="glimma_MDS", launch=FALSE) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
676 linkName <- "Glimma_MDSPlot.html" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
677 linkAddr <- "glimma_MDS/MDS-Plot.html" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
678 linkData <- rbind(linkData, c(linkName, linkAddr)) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
679 } |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
680 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
681 if ("x" %in% plots) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
682 png(mdsxOutPng, width=1000, height=500) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
683 par(mfrow=c(1, 2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
684 for (i in 2:3) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
685 dim1 <- i |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
686 dim2 <- i + 1 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
687 plotMDS(y, dim=c(dim1, dim2), labels=samplenames, col=as.numeric(factors[, 1]), main=paste("MDS Plot: Dims", dim1, "and", dim2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
688 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
689 imgName <- paste0("MDSPlot_extra.png") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
690 imgAddr <- paste0("mdsplot_extra.png") |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
691 imageData <- rbind(imageData, data.frame(Label=imgName, Link=imgAddr, stringsAsFactors=FALSE)) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
692 invisible(dev.off()) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
693 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
694 pdf(mdsxOutPdf, width=14) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
695 par(mfrow=c(1, 2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
696 for (i in 2:3) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
697 dim1 <- i |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
698 dim2 <- i + 1 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
699 plotMDS(y, dim=c(dim1, dim2), labels=samplenames, col=as.numeric(factors[, 1]), main=paste("MDS Plot: Dims", dim1, "and", dim2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
700 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
701 linkName <- "MDSPlot_extra.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
702 linkAddr <- "mdsplot_extra.pdf" |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
703 linkData <- rbind(linkData, data.frame(Label=linkName, Link=linkAddr, stringsAsFactors=FALSE)) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
704 invisible(dev.off()) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
705 } |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
706 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
707 if ("m" %in% plots) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
708 # Plot MD plots for individual samples |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
709 print("Generating MD plots for samples") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
710 pdf(mdsamOutPdf, width=6.5, height=10) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
711 par(mfrow=c(3, 2)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
712 for (i in 1:nsamples) { |
11
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
713 if (opt$normOpt != "none") { |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
714 plotMD(logcounts, column=i, main=paste(colnames(logcounts)[i], "(before)")) |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
715 abline(h=0, col="red", lty=2, lwd=2) |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
716 } |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
717 plotMD(y, column=i) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
718 abline(h=0, col="red", lty=2, lwd=2) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
719 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
720 linkName <- "MDPlots_Samples.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
721 linkAddr <- "mdplots_samples.pdf" |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
722 linkData <- rbind(linkData, c(linkName, linkAddr)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
723 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
724 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
725 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
726 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
727 if (wantTrend) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
728 # limma-trend approach |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
729 logCPM <- cpm(y, log=TRUE, prior.count=opt$trend) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
730 fit <- lmFit(logCPM, design) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
731 fit$genes <- y$genes |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
732 fit <- contrasts.fit(fit, contrasts) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
733 if (wantRobust) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
734 fit <- eBayes(fit, trend=TRUE, robust=TRUE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
735 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
736 fit <- eBayes(fit, trend=TRUE, robust=FALSE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
737 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
738 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
739 plotData <- logCPM |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
740 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
741 # Save normalised counts (log2cpm) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
742 if (wantNorm) { |
4
a61a6e62e91f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 6a458881c0819b75e55e64b3f494679d43bb9ee8
iuc
parents:
3
diff
changeset
|
743 write.table(logCPM, file=normOut, row.names=TRUE, sep="\t", quote=FALSE) |
13
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
744 linkData <- rbind(linkData, c((paste0(deMethod, "_", "normcounts.tsv")), (paste0(deMethod, "_", "normcounts")))) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
745 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
746 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
747 # limma-voom approach |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
748 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
749 if (wantWeight) { |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
750 voomWtsOutPdf <- makeOut("voomwtsplot.pdf") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
751 voomWtsOutPng <- makeOut("voomwtsplot.png") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
752 # Creating voom data object and plot |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
753 png(voomWtsOutPng, width=1000, height=500) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
754 vData <- voomWithQualityWeights(y, design=design, plot=TRUE) |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
755 imgName <- "VoomWithQualityWeightsPlot.png" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
756 imgAddr <- "voomwtsplot.png" |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
757 imageData <- rbind(imageData, c(imgName, imgAddr)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
758 invisible(dev.off()) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
759 |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
760 pdf(voomWtsOutPdf, width=14) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
761 vData <- voomWithQualityWeights(y, design=design, plot=TRUE) |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
762 linkName <- "VoomWithQualityWeightsPlot.pdf" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
763 linkAddr <- "voomwtsplot.pdf" |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
764 linkData <- rbind(linkData, c(linkName, linkAddr)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
765 invisible(dev.off()) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
766 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
767 # Generating fit data and top table with weights |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
768 wts <- vData$weights |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
769 voomFit <- lmFit(vData, design, weights=wts) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
770 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
771 } else { |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
772 voomOutPdf <- makeOut("voomplot.pdf") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
773 voomOutPng <- makeOut("voomplot.png") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
774 # Creating voom data object and plot |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
775 png(voomOutPng, width=500, height=500) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
776 vData <- voom(y, design=design, plot=TRUE) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
777 imgName <- "VoomPlot" |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
778 imgAddr <- "voomplot.png" |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
779 imageData <- rbind(imageData, c(imgName, imgAddr)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
780 invisible(dev.off()) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
781 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
782 pdf(voomOutPdf) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
783 vData <- voom(y, design=design, plot=TRUE) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
784 linkName <- "VoomPlot.pdf" |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
785 linkAddr <- "voomplot.pdf" |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
786 linkData <- rbind(linkData, c(linkName, linkAddr)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
787 invisible(dev.off()) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
788 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
789 # Generate voom fit |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
790 voomFit <- lmFit(vData, design) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
791 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
792 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
793 # Save normalised counts (log2cpm) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
794 if (wantNorm) { |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
795 norm_counts <- data.frame(vData$genes, vData$E, check.names=FALSE) |
4
a61a6e62e91f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 6a458881c0819b75e55e64b3f494679d43bb9ee8
iuc
parents:
3
diff
changeset
|
796 write.table(norm_counts, file=normOut, row.names=FALSE, sep="\t", quote=FALSE) |
13
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
797 linkData <- rbind(linkData, c((paste0(deMethod, "_", "normcounts.tsv")), (paste0(deMethod, "_", "normcounts")))) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
798 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
799 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
800 # Fit linear model and estimate dispersion with eBayes |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
801 voomFit <- contrasts.fit(voomFit, contrasts) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
802 if (wantRobust) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
803 fit <- eBayes(voomFit, robust=TRUE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
804 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
805 fit <- eBayes(voomFit, robust=FALSE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
806 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
807 plotData <- vData |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
808 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
809 |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
810 # plot final model mean-variance trend with plotSA |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
811 saOutPng <- makeOut("saplot.png") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
812 saOutPdf <- makeOut("saplot.pdf") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
813 |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
814 png(saOutPng, width=500, height=500) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
815 plotSA(fit, main="Final model: Mean-variance trend (SA Plot)") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
816 imgName <- "SAPlot.png" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
817 imgAddr <- "saplot.png" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
818 imageData <- rbind(imageData, c(imgName, imgAddr)) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
819 invisible(dev.off()) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
820 |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
821 pdf(saOutPdf) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
822 plotSA(fit, main="Final model: Mean-variance trend (SA Plot)") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
823 linkName <- "SAPlot.pdf" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
824 linkAddr <- "saplot.pdf" |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
825 linkData <- rbind(linkData, c(linkName, linkAddr)) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
826 invisible(dev.off()) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
827 |
11
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
828 # Save library size info |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
829 if (wantLibinfo) { |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
830 efflibsize <- round(y$samples$lib.size * y$samples$norm.factors) |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
831 libsizeinfo <- cbind(y$samples, EffectiveLibrarySize=efflibsize) |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
832 libsizeinfo$lib.size <- round(libsizeinfo$lib.size) |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
833 names(libsizeinfo)[names(libsizeinfo)=="sampleID"] <- "SampleID" |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
834 names(libsizeinfo)[names(libsizeinfo)=="lib.size"] <- "LibrarySize" |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
835 names(libsizeinfo)[names(libsizeinfo)=="norm.factors"] <- "NormalisationFactor" |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
836 write.table(libsizeinfo, file="libsizeinfo", row.names=FALSE, sep="\t", quote=FALSE) |
7e8af58c8052
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 4bcbd83574ecf7194f3370aa883a9573563afdbc
iuc
parents:
10
diff
changeset
|
837 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
838 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
839 print("Generating DE results") |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
840 |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
841 if (wantTreat) { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
842 print("Applying TREAT method") |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
843 if (wantRobust) { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
844 fit <- treat(fit, lfc=opt$lfcReq, robust=TRUE) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
845 } else { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
846 fit <- treat(fit, lfc=opt$lfcReq, robust=FALSE) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
847 } |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
848 } |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
849 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
850 status = decideTests(fit, adjust.method=opt$pAdjOpt, p.value=opt$pValReq, |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
851 lfc=opt$lfcReq) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
852 sumStatus <- summary(status) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
853 |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
854 for (i in 1:length(cons)) { |
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
855 con <- cons[i] |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
856 con <- gsub("\\(|\\)", "", con) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
857 # Collect counts for differential expression |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
858 upCount[i] <- sumStatus["Up", i] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
859 downCount[i] <- sumStatus["Down", i] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
860 flatCount[i] <- sumStatus["NotSig", i] |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
861 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
862 # Write top expressions table |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
863 if (wantTreat) { |
16
5d903d528193
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 349e35a66009449851b21e2810bc5aaa58225fca
iuc
parents:
14
diff
changeset
|
864 top <- topTreat(fit, coef=i, adjust.method=opt$pAdjOpt, number=Inf, sort.by="P") |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
865 } else{ |
16
5d903d528193
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 349e35a66009449851b21e2810bc5aaa58225fca
iuc
parents:
14
diff
changeset
|
866 top <- topTable(fit, coef=i, adjust.method=opt$pAdjOpt, number=Inf, sort.by="P") |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
867 } |
4
a61a6e62e91f
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 6a458881c0819b75e55e64b3f494679d43bb9ee8
iuc
parents:
3
diff
changeset
|
868 write.table(top, file=topOut[i], row.names=FALSE, sep="\t", quote=FALSE) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
869 linkName <- paste0(deMethod, "_", con, ".tsv") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
870 linkAddr <- paste0(deMethod, "_", con, ".tsv") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
871 linkData <- rbind(linkData, c(linkName, linkAddr)) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
872 |
5
d8a55b5f0de0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f0db9544002b02d3ccffb8c983b5c8baef6bacd
iuc
parents:
4
diff
changeset
|
873 # Plot MD (log ratios vs mean average) using limma package on weighted |
d8a55b5f0de0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f0db9544002b02d3ccffb8c983b5c8baef6bacd
iuc
parents:
4
diff
changeset
|
874 pdf(mdOutPdf[i]) |
d8a55b5f0de0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f0db9544002b02d3ccffb8c983b5c8baef6bacd
iuc
parents:
4
diff
changeset
|
875 limma::plotMD(fit, status=status[, i], coef=i, |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
876 main=paste("MD Plot:", unmake.names(con)), |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
877 hl.col=alpha(c("firebrick", "blue"), 0.4), values=c(1, -1), |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
878 xlab="Average Expression", ylab="logFC") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
879 abline(h=0, col="grey", lty=2) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
880 linkName <- paste0("MDPlot_", con, ".pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
881 linkAddr <- paste0("mdplot_", con, ".pdf") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
882 linkData <- rbind(linkData, c(linkName, linkAddr)) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
883 invisible(dev.off()) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
884 |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
885 # Generate Glimma interactive Volcano, MD plot and tables, requires annotation file (assumes gene labels/symbols in 2nd column) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
886 if ("i" %in% plots & haveAnno) { |
10
e26047c4562d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c31767d02eeeda7346bb33ba71ebde9189d7e4a3
iuc
parents:
9
diff
changeset
|
887 # make gene labels unique to handle NAs |
e26047c4562d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c31767d02eeeda7346bb33ba71ebde9189d7e4a3
iuc
parents:
9
diff
changeset
|
888 geneanno <- y$genes |
e26047c4562d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c31767d02eeeda7346bb33ba71ebde9189d7e4a3
iuc
parents:
9
diff
changeset
|
889 geneanno[, 2] <- make.unique(geneanno[, 2]) |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
890 |
18
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
891 # use the logCPMS for the counts |
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
892 if (wantTrend) { |
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
893 cnts <- logCPM |
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
894 } else{ |
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
895 cnts <- vData$E |
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
896 } |
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
897 |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
898 # MD plot |
18
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
899 Glimma::glMDPlot(fit, coef=i, counts=cnts, anno=geneanno, groups=factors[, 1], |
9
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
900 status=status[, i], sample.cols=col.group, |
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
901 main=paste("MD Plot:", unmake.names(con)), side.main=colnames(y$genes)[2], |
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
902 folder=paste0("glimma_", unmake.names(con)), launch=FALSE) |
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
903 linkName <- paste0("Glimma_MDPlot_", con, ".html") |
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
904 linkAddr <- paste0("glimma_", con, "/MD-Plot.html") |
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
905 linkData <- rbind(linkData, c(linkName, linkAddr)) |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
906 |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
907 # Volcano plot |
18
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
908 Glimma::glXYPlot(x=fit$coefficients[, i], y=-log10(fit$p.value[, i]), counts=cnts, anno=geneanno, groups=factors[, 1], |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
909 status=status[, i], sample.cols=col.group, |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
910 main=paste("Volcano Plot:", unmake.names(con)), side.main=colnames(y$genes)[2], |
18
97e06a4c7c75
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f5e2ad38bf004b33fc5da5d9d4e75cf1130f666
iuc
parents:
17
diff
changeset
|
911 xlab="logFC", ylab="-log10(P-value)", |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
912 folder=paste0("glimma_volcano_", unmake.names(con)), launch=FALSE) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
913 linkName <- paste0("Glimma_VolcanoPlot_", con, ".html") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
914 linkAddr <- paste0("glimma_volcano_", con, "/XY-Plot.html") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
915 linkData <- rbind(linkData, c(linkName, linkAddr)) |
9
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
916 } |
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
917 |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
918 # Plot Volcano |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
919 pdf(volOutPdf[i]) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
920 if (haveAnno) { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
921 # labels must be in second column currently |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
922 labels <- fit$genes[, 2] |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
923 } else { |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
924 labels <- fit$genes$GeneID |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
925 } |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
926 limma::volcanoplot(fit, coef=i, |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
927 main=paste("Volcano Plot:", unmake.names(con)), |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
928 highlight=opt$topgenes, |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
929 names=labels) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
930 linkName <- paste0("VolcanoPlot_", con, ".pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
931 linkAddr <- paste0("volplot_", con, ".pdf") |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
932 linkData <- rbind(linkData, c(linkName, linkAddr)) |
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
933 invisible(dev.off()) |
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
934 |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
935 # PNG of MD and Volcano |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
936 png(mdvolOutPng[i], width=1000, height=500) |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
937 par(mfrow=c(1, 2), mar=c(5,4,2,2)+0.1, oma=c(0,0,3,0)) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
938 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
939 # MD plot |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
940 limma::plotMD(fit, status=status[, i], coef=i, main="MD Plot", |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
941 hl.col=alpha(c("firebrick", "blue"), 0.4), values=c(1, -1), |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
942 xlab="Average Expression", ylab="logFC") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
943 abline(h=0, col="grey", lty=2) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
944 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
945 # Volcano |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
946 if (haveAnno) { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
947 # labels must be in second column currently |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
948 limma::volcanoplot(fit, coef=i, main="Volcano Plot", |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
949 highlight=opt$topgenes, |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
950 names=fit$genes[, 2]) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
951 } else { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
952 limma::volcanoplot(fit, coef=i, main="Volcano Plot", |
7
e6a4ff41af6b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit cf399638ebca4250bcc15f468238a9964de97b33
iuc
parents:
6
diff
changeset
|
953 highlight=opt$topgenes, |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
954 names=fit$genes$GeneID) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
955 } |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
956 |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
957 imgName <- paste0("MDVolPlot_", con) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
958 imgAddr <- paste0("mdvolplot_", con, ".png") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
959 imageData <- rbind(imageData, c(imgName, imgAddr)) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
960 title(paste0("Contrast: ", unmake.names(con)), outer=TRUE, cex.main=1.5) |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
961 invisible(dev.off()) |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
962 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
963 if ("h" %in% plots) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
964 # Plot Heatmap |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
965 topgenes <- rownames(top[1:opt$topgenes, ]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
966 if (wantTrend) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
967 topexp <- plotData[topgenes, ] |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
968 } else { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
969 topexp <- plotData$E[topgenes, ] |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
970 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
971 pdf(heatOutPdf[i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
972 mycol <- colorpanel(1000,"blue","white","red") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
973 if (haveAnno) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
974 # labels must be in second column currently |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
975 labels <- top[topgenes, 2] |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
976 } else { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
977 labels <- rownames(topexp) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
978 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
979 heatmap.2(topexp, scale="row", Colv=FALSE, Rowv=FALSE, dendrogram="none", |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
980 main=paste("Contrast:", unmake.names(con), "\nTop", opt$topgenes, "genes by adj.P.Val"), |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
981 trace="none", density.info="none", lhei=c(2,10), margin=c(8, 6), labRow=labels, cexRow=0.7, srtCol=45, |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
982 col=mycol, ColSideColors=col.group) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
983 linkName <- paste0("Heatmap_", con, ".pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
984 linkAddr <- paste0("heatmap_", con, ".pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
985 linkData <- rbind(linkData, c(linkName, linkAddr)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
986 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
987 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
988 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
989 if ("s" %in% plots) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
990 # Plot Stripcharts of top genes |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
991 pdf(stripOutPdf[i], title=paste("Contrast:", unmake.names(con))) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
992 par(mfrow = c(3,2), cex.main=0.8, cex.axis=0.8) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
993 cols <- unique(col.group) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
994 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
995 for (j in 1:length(topgenes)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
996 lfc <- round(top[topgenes[j], "logFC"], 2) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
997 pval <- round(top[topgenes[j], "adj.P.Val"], 5) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
998 if (wantTrend) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
999 stripchart(plotData[topgenes[j], ] ~ factors[, 1], vertical=TRUE, las=2, pch=16, cex=0.8, cex.lab=0.8, col=cols, |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1000 method="jitter", ylab="Normalised log2 expression", main=paste0(labels[j], "\nlogFC=", lfc, ", adj.P.Val=", pval)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1001 } else { |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1002 stripchart(plotData$E[topgenes[j], ] ~ factors[, 1], vertical=TRUE, las=2, pch=16, cex=0.8, cex.lab=0.8, col=cols, |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1003 method="jitter", ylab="Normalised log2 expression", main=paste0(labels[j], "\nlogFC=", lfc, ", adj.P.Val=", pval)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1004 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1005 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1006 linkName <- paste0("Stripcharts_", con, ".pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1007 linkAddr <- paste0("stripcharts_", con, ".pdf") |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1008 linkData <- rbind(linkData, c(linkName, linkAddr)) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1009 invisible(dev.off()) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1010 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1011 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1012 sigDiff <- data.frame(Up=upCount, Flat=flatCount, Down=downCount) |
17
86b3df7db58b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 42b1160a549a85c87ed5226a83b55c4e44648597
iuc
parents:
16
diff
changeset
|
1013 row.names(sigDiff) <- cons |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1014 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1015 # Save relevant items as rda object |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1016 if (wantRda) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1017 print("Saving RData") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1018 if (wantWeight) { |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1019 save(counts, data, y, status, plotData, labels, factors, wts, fit, top, contrastData, contrasts, design, |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1020 file=rdaOut, ascii=TRUE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1021 } else { |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1022 save(counts, data, y, status, plotData, labels, factors, fit, top, contrastData, contrasts, design, |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1023 file=rdaOut, ascii=TRUE) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1024 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1025 linkData <- rbind(linkData, c((paste0(deMethod, "_analysis.RData")), (paste0(deMethod, "_analysis.RData")))) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1026 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1027 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1028 # Record session info |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1029 writeLines(capture.output(sessionInfo()), sessionOut) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1030 linkData <- rbind(linkData, c("Session Info", "session_info.txt")) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1031 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1032 # Record ending time and calculate total run time |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1033 timeEnd <- as.character(Sys.time()) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1034 timeTaken <- capture.output(round(difftime(timeEnd,timeStart), digits=3)) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1035 timeTaken <- gsub("Time difference of ", "", timeTaken, fixed=TRUE) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1036 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1037 ### HTML Generation |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1038 ################################################################################ |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1039 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1040 # Clear file |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1041 cat("", file=opt$htmlPath) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1042 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1043 cata("<html>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1044 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1045 cata("<body>\n") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1046 cata("<h3>Limma Analysis Output:</h3>\n") |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1047 cata("Links to PDF copies of plots are in 'Plots' section below <br />\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1048 |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1049 for (i in 1:nrow(imageData)) { |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1050 if (grepl("density|box|mds|mdvol|wts", imageData$Link[i])) { |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1051 HtmlImage(imageData$Link[i], imageData$Label[i], width=1000) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1052 } else { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1053 HtmlImage(imageData$Link[i], imageData$Label[i]) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1054 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1055 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1056 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1057 cata("<h4>Differential Expression Counts:</h4>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1058 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1059 cata("<table border=\"1\" cellpadding=\"4\">\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1060 cata("<tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1061 TableItem() |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1062 for (i in colnames(sigDiff)) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1063 TableHeadItem(i) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1064 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1065 cata("</tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1066 for (i in 1:nrow(sigDiff)) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1067 cata("<tr>\n") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1068 TableHeadItem(unmake.names(row.names(sigDiff)[i])) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1069 for (j in 1:ncol(sigDiff)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1070 TableItem(as.character(sigDiff[i, j])) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1071 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1072 cata("</tr>\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1073 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1074 cata("</table>") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1075 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1076 cata("<h4>Plots:</h4>\n") |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1077 #PDFs |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1078 for (i in 1:nrow(linkData)) { |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1079 if (grepl("density|cpm|boxplot|mds|mdplots|voom|saplot", linkData$Link[i])) { |
8
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1080 HtmlLink(linkData$Link[i], linkData$Label[i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1081 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1082 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1083 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1084 for (i in 1:nrow(linkData)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1085 if (grepl("mdplot_", linkData$Link[i])) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1086 HtmlLink(linkData$Link[i], linkData$Label[i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1087 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1088 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1089 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1090 for (i in 1:nrow(linkData)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1091 if (grepl("volplot", linkData$Link[i])) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1092 HtmlLink(linkData$Link[i], linkData$Label[i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1093 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1094 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1095 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1096 for (i in 1:nrow(linkData)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1097 if (grepl("heatmap", linkData$Link[i])) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1098 HtmlLink(linkData$Link[i], linkData$Label[i]) |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1099 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1100 } |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1101 |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1102 for (i in 1:nrow(linkData)) { |
00a42b66e522
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 48125e8638453668f889a67791421f14d3ebe623
iuc
parents:
7
diff
changeset
|
1103 if (grepl("stripcharts", linkData$Link[i])) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1104 HtmlLink(linkData$Link[i], linkData$Label[i]) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1105 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1106 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1107 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1108 cata("<h4>Tables:</h4>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1109 for (i in 1:nrow(linkData)) { |
13
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
1110 if (grepl("counts$", linkData$Link[i])) { |
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
1111 HtmlLink(linkData$Link[i], linkData$Label[i]) |
d5a940112511
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 8560b34a261fde200bd77dc2e817d55d386ac811
iuc
parents:
12
diff
changeset
|
1112 } else if (grepl(".tsv", linkData$Link[i])) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1113 HtmlLink(linkData$Link[i], linkData$Label[i]) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1114 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1115 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1116 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1117 if (wantRda) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1118 cata("<h4>R Data Object:</h4>\n") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1119 for (i in 1:nrow(linkData)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1120 if (grepl(".RData", linkData$Link[i])) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1121 HtmlLink(linkData$Link[i], linkData$Label[i]) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1122 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1123 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1124 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1125 |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1126 if ("i" %in% plots) { |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1127 cata("<h4>Glimma Interactive Results:</h4>\n") |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1128 for (i in 1:nrow(linkData)) { |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1129 if (grepl("glimma", linkData$Link[i])) { |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1130 HtmlLink(linkData$Link[i], linkData$Label[i]) |
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1131 } |
9
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
1132 } |
14
3133e833b3ce
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit c915bd7e68cb3a2944397aaf184c2b1db97cb3a5
iuc
parents:
13
diff
changeset
|
1133 } |
9
4255881bebb1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f8052ab47b789da5ea47feb48e1b8e08b5fc1e0
iuc
parents:
8
diff
changeset
|
1134 |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1135 cata("<p>Alt-click links to download file.</p>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1136 cata("<p>Click floppy disc icon associated history item to download ") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1137 cata("all files.</p>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1138 cata("<p>.tsv files can be viewed in Excel or any spreadsheet program.</p>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1139 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1140 cata("<h4>Additional Information</h4>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1141 cata("<ul>\n") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1142 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1143 if (filtCPM || filtSmpCount || filtTotCount) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1144 if (filtCPM) { |
5
d8a55b5f0de0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f0db9544002b02d3ccffb8c983b5c8baef6bacd
iuc
parents:
4
diff
changeset
|
1145 tempStr <- paste("Genes without more than", opt$cpmReq, |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1146 "CPM in at least", opt$sampleReq, "samples are insignificant", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1147 "and filtered out.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1148 } else if (filtSmpCount) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1149 tempStr <- paste("Genes without more than", opt$cntReq, |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1150 "counts in at least", opt$sampleReq, "samples are insignificant", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1151 "and filtered out.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1152 } else if (filtTotCount) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1153 tempStr <- paste("Genes without more than", opt$cntReq, |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1154 "counts, after summing counts for all samples, are insignificant", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1155 "and filtered out.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1156 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1157 |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1158 ListItem(tempStr) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1159 filterProp <- round(filteredCount/preFilterCount*100, digits=2) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1160 tempStr <- paste0(filteredCount, " of ", preFilterCount," (", filterProp, |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1161 "%) genes were filtered out for low expression.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1162 ListItem(tempStr) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1163 } |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1164 ListItem(opt$normOpt, " was the method used to normalise library sizes.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1165 if (wantTrend) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1166 ListItem("The limma-trend method was used.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1167 } else { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1168 ListItem("The limma-voom method was used.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1169 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1170 if (wantWeight) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1171 ListItem("Weights were applied to samples.") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1172 } else { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1173 ListItem("Weights were not applied to samples.") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1174 } |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1175 if (wantTreat) { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1176 ListItem(paste("Testing significance relative to a fold-change threshold (TREAT) was performed using a threshold of log2 =", opt$lfcReq, "at FDR of", opt$pValReq, ".")) |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1177 } |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1178 if (wantRobust) { |
6
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1179 if (wantTreat) { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1180 ListItem("TREAT was used with robust settings (robust=TRUE).") |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1181 } else { |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1182 ListItem("eBayes was used with robust settings (robust=TRUE).") |
39fa12a6d885
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 60cae222b10f43f830936c19298bd723ac47e43d
iuc
parents:
5
diff
changeset
|
1183 } |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1184 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1185 if (opt$pAdjOpt!="none") { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1186 if (opt$pAdjOpt=="BH" || opt$pAdjOpt=="BY") { |
5
d8a55b5f0de0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f0db9544002b02d3ccffb8c983b5c8baef6bacd
iuc
parents:
4
diff
changeset
|
1187 tempStr <- paste0("MD Plot highlighted genes are significant at FDR ", |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1188 "of ", opt$pValReq," and exhibit log2-fold-change of at ", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1189 "least ", opt$lfcReq, ".") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1190 ListItem(tempStr) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1191 } else if (opt$pAdjOpt=="holm") { |
5
d8a55b5f0de0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f0db9544002b02d3ccffb8c983b5c8baef6bacd
iuc
parents:
4
diff
changeset
|
1192 tempStr <- paste0("MD Plot highlighted genes are significant at adjusted ", |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1193 "p-value of ", opt$pValReq," by the Holm(1979) ", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1194 "method, and exhibit log2-fold-change of at least ", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1195 opt$lfcReq, ".") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1196 ListItem(tempStr) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1197 } |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1198 } else { |
5
d8a55b5f0de0
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 5f0db9544002b02d3ccffb8c983b5c8baef6bacd
iuc
parents:
4
diff
changeset
|
1199 tempStr <- paste0("MD Plot highlighted genes are significant at p-value ", |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1200 "of ", opt$pValReq," and exhibit log2-fold-change of at ", |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1201 "least ", opt$lfcReq, ".") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1202 ListItem(tempStr) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1203 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1204 cata("</ul>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1205 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1206 cata("<h4>Summary of experimental data:</h4>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1207 |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
1208 cata("<p>*CHECK THAT SAMPLES ARE ASSOCIATED WITH CORRECT GROUP(S)*</p>\n") |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1209 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1210 cata("<table border=\"1\" cellpadding=\"3\">\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1211 cata("<tr>\n") |
1
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
1212 TableHeadItem("SampleID") |
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
1213 TableHeadItem(names(factors)[1]," (Primary Factor)") |
76d01fe0ec36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 58c05c0ce9334f8b9c800283cfd1f40573546edd
iuc
parents:
0
diff
changeset
|
1214 |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1215 if (ncol(factors) > 1) { |
2
a330ddf43861
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 346319bd01bfd51f02d656e653a93f0bd1e954aa
iuc
parents:
1
diff
changeset
|
1216 for (i in names(factors)[2:length(names(factors))]) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1217 TableHeadItem(i) |
2
a330ddf43861
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 346319bd01bfd51f02d656e653a93f0bd1e954aa
iuc
parents:
1
diff
changeset
|
1218 } |
a330ddf43861
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 346319bd01bfd51f02d656e653a93f0bd1e954aa
iuc
parents:
1
diff
changeset
|
1219 cata("</tr>\n") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1220 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1221 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1222 for (i in 1:nrow(factors)) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1223 cata("<tr>\n") |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1224 TableHeadItem(row.names(factors)[i]) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1225 for (j in 1:ncol(factors)) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1226 TableItem(as.character(unmake.names(factors[i, j]))) |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1227 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1228 cata("</tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1229 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1230 cata("</table>") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1231 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1232 cit <- character() |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1233 link <- character() |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1234 link[1] <- paste0("<a href=\"", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1235 "http://www.bioconductor.org/packages/release/bioc/", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1236 "vignettes/limma/inst/doc/usersguide.pdf", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1237 "\">", "limma User's Guide", "</a>.") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1238 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1239 link[2] <- paste0("<a href=\"", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1240 "http://www.bioconductor.org/packages/release/bioc/", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1241 "vignettes/edgeR/inst/doc/edgeRUsersGuide.pdf", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1242 "\">", "edgeR User's Guide", "</a>") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1243 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1244 cit[1] <- paste("Please cite the following paper for this tool:") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1245 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1246 cit[2] <- paste("Liu R, Holik AZ, Su S, Jansz N, Chen K, Leong HS, Blewitt ME,", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1247 "Asselin-Labat ML, Smyth GK, Ritchie ME (2015). Why weight? ", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1248 "Modelling sample and observational level variability improves power ", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1249 "in RNA-seq analyses. Nucleic Acids Research, 43(15), e97.") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1250 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1251 cit[3] <- paste("Please cite the paper below for the limma software itself.", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1252 "Please also try to cite the appropriate methodology articles", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1253 "that describe the statistical methods implemented in limma,", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1254 "depending on which limma functions you are using. The", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1255 "methodology articles are listed in Section 2.1 of the", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1256 link[1], |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1257 "Cite no. 3 only if sample weights were used.") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1258 cit[4] <- paste("Smyth GK (2005). Limma: linear models for microarray data.", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1259 "In: 'Bioinformatics and Computational Biology Solutions using", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1260 "R and Bioconductor'. R. Gentleman, V. Carey, S. doit,.", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1261 "Irizarry, W. Huber (eds), Springer, New York, pages 397-420.") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1262 cit[5] <- paste("Please cite the first paper for the software itself and the", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1263 "other papers for the various original statistical methods", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1264 "implemented in edgeR. See Section 1.2 in the", link[2], |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1265 "for more detail.") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1266 cit[6] <- paste("Robinson MD, McCarthy DJ and Smyth GK (2010). edgeR: a", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1267 "Bioconductor package for differential expression analysis", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1268 "of digital gene expression data. Bioinformatics 26, 139-140") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1269 cit[7] <- paste("Robinson MD and Smyth GK (2007). Moderated statistical tests", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1270 "for assessing differences in tag abundance. Bioinformatics", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1271 "23, 2881-2887") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1272 cit[8] <- paste("Robinson MD and Smyth GK (2008). Small-sample estimation of", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1273 "negative binomial dispersion, with applications to SAGE data.", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1274 "Biostatistics, 9, 321-332") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1275 cit[9] <- paste("McCarthy DJ, Chen Y and Smyth GK (2012). Differential", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1276 "expression analysis of multifactor RNA-Seq experiments with", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1277 "respect to biological variation. Nucleic Acids Research 40,", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1278 "4288-4297") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1279 cit[10] <- paste("Law CW, Chen Y, Shi W, and Smyth GK (2014). Voom:", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1280 "precision weights unlock linear model analysis tools for", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1281 "RNA-seq read counts. Genome Biology 15, R29.") |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1282 cit[11] <- paste("Ritchie ME, Diyagama D, Neilson J, van Laar R,", |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1283 "Dobrovic A, Holloway A and Smyth GK (2006).", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1284 "Empirical array quality weights for microarray data.", |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1285 "BMC Bioinformatics 7, Article 261.") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1286 cata("<h3>Citations</h3>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1287 cata(cit[1], "\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1288 cata("<br>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1289 cata(cit[2], "\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1290 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1291 cata("<h4>limma</h4>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1292 cata(cit[3], "\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1293 cata("<ol>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1294 ListItem(cit[4]) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1295 ListItem(cit[10]) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1296 ListItem(cit[11]) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1297 cata("</ol>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1298 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1299 cata("<h4>edgeR</h4>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1300 cata(cit[5], "\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1301 cata("<ol>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1302 ListItem(cit[6]) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1303 ListItem(cit[7]) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1304 ListItem(cit[8]) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1305 ListItem(cit[9]) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1306 cata("</ol>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1307 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1308 cata("<p>Please report problems or suggestions to: su.s@wehi.edu.au</p>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1309 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1310 for (i in 1:nrow(linkData)) { |
3
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1311 if (grepl("session_info", linkData$Link[i])) { |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1312 HtmlLink(linkData$Link[i], linkData$Label[i]) |
38aab66ae5cb
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 1640914b9812b0482a3cf684f05465f8d9cfdc65
iuc
parents:
2
diff
changeset
|
1313 } |
0
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1314 } |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1315 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1316 cata("<table border=\"0\">\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1317 cata("<tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1318 TableItem("Task started at:"); TableItem(timeStart) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1319 cata("</tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1320 cata("<tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1321 TableItem("Task ended at:"); TableItem(timeEnd) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1322 cata("</tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1323 cata("<tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1324 TableItem("Task run time:"); TableItem(timeTaken) |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1325 cata("<tr>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1326 cata("</table>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1327 |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1328 cata("</body>\n") |
bdebdea5f6a7
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom commit 2f34a215c35f08c3666f314a87d235437baa1d21
iuc
parents:
diff
changeset
|
1329 cata("</html>") |