Skip to content

Commit 6a3c002

Browse files
committed
DESeq2 doesn't like the / chararacter, replaced it with _.
1 parent 739c668 commit 6a3c002

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)