# HG changeset patch
# User iuc
# Date 1533331410 14400
# Node ID 5707d3c668d689dfd4c2352a6c9c137e83a720ea
# Parent dc6bc19f05ab1569bcd36cd9f740e23c8036c15d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 commit 81fa5b04b9ba9d4b1b59192af0adb1e1e18ca22b
diff -r dc6bc19f05ab -r 5707d3c668d6 deseq2.R
--- a/deseq2.R Sat May 19 03:55:30 2018 -0400
+++ b/deseq2.R Fri Aug 03 17:23:30 2018 -0400
@@ -203,7 +203,7 @@
if (!useTXI & hasHeader) {
countfiles <- lapply(as.character(sampleTable$filename), function(x){read.delim(x, row.names=1)})
tbl <- do.call("cbind", countfiles)
- rownames(sampleTable) <- colnames(tbl) # take sample ids from header
+ colnames(tbl) <- rownames(sampleTable) # take sample ids from header
# check for htseq report lines (from DESeqDataSetFromHTSeqCount function)
oldSpecialNames <- c("no_feature", "ambiguous", "too_low_aQual",
diff -r dc6bc19f05ab -r 5707d3c668d6 deseq2.xml
--- a/deseq2.xml Sat May 19 03:55:30 2018 -0400
+++ b/deseq2.xml Fri Aug 03 17:23:30 2018 -0400
@@ -196,7 +196,7 @@