Skip to content

Commit

Permalink
Merge pull request #57 from bcbio/devel
Browse files Browse the repository at this point in the history
fix example data
  • Loading branch information
lpantano authored Nov 14, 2024
2 parents d4a969e + 59502c7 commit 8c7a25d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/templates/rnaseq/DE/DEG.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ names(contrasts)=names_to_use
de_list=lapply(contrasts, function(contrast){
resLFC = results(de, contrast=contrast)
coef = paste0(contrast[1], "_", contrast[2], "_vs_", contrast[3])
resLFCS <- lfcShrink(de, coef=coef, type="apeglm")
# resLFCS <- lfcShrink(de, contrast=contrast, type="ash")
# resLFCS <- lfcShrink(de, coef=coef, type="apeglm")
resLFCS <- lfcShrink(de, contrast=contrast, type="ash")
res <- as.data.frame(resLFCS) %>%
rownames_to_column('gene_id') %>% left_join(rdata, by = 'gene_id') %>%
Expand Down

0 comments on commit 8c7a25d

Please sign in to comment.