Skip to content

Commit

Permalink
fix example data
Browse files Browse the repository at this point in the history
  • Loading branch information
lpantano committed Nov 14, 2024
1 parent 9181c65 commit 146217b
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 146217b

Please sign in to comment.