Skip to content

Commit

Permalink
fixed bug with reference column
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanheld committed Aug 18, 2018
1 parent ceaa64a commit 9727937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/RSnakeChunks/misc/deseq2.R
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ if ("test" %in% (tolower(colnames(design)))) {
i <- 1
for (i in 1:nrow(design.table)) {
## Define reference and test conditions from the design file
ref.condition <- as.vector(unlist(design.table[i, ref.column]))
ref.condition <- as.vector(unlist(design.table[i, reference.column]))
test.condition <- as.vector(unlist(design.table[i, test.column]))

## Select reference and test samples
Expand Down

0 comments on commit 9727937

Please sign in to comment.