Skip to content

Commit

Permalink
flip comparison for DESeq2
Browse files Browse the repository at this point in the history
  • Loading branch information
obigriffith committed Apr 24, 2024
1 parent f4dfe8e commit 4a3a342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _posts/0003-03-03-Differential_Expression-DESeq2.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ htseqCounts <- htseqCounts[which(rowSums(htseqCounts >= 10) >=1),]

# construct mapping of meta data
metaData <- data.frame('Condition'=c('UHR', 'UHR', 'UHR', 'HBR', 'HBR', 'HBR'))
metaData$Condition <- factor(metaData$Condition, levels=c('UHR', 'HBR'))
metaData$Condition <- factor(metaData$Condition, levels=c('HBR', 'UHR'))
rownames(metaData) <- colnames(htseqCounts)

# check that htseq count cols match meta data rows
Expand Down

0 comments on commit 4a3a342

Please sign in to comment.