Skip to content

Commit 78cd7b5

Browse files
authored
Merge pull request #1 from roryk/master
DESeq2 doesn't like the / chararacter, replaced it with _.
2 parents 739c668 + 6a3c002 commit 78cd7b5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/vst_stability_plots.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ if (T) {
126126
counts <- exprs(bottomly.eset)
127127
counts <- counts[rowSums(counts) >= 1, ]
128128
strain <- phenoData(bottomly.eset)$strain
129+
strain <- gsub("/", "_", strain)
129130
experiment.number <- factor( phenoData(bottomly.eset)$experiment.number )
130131
design <- model.matrix(~ strain + experiment.number)
131132

0 commit comments

Comments
 (0)