Skip to content

Commit

Permalink
extension of earlier cpm fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkuipers1402 committed Feb 26, 2021
1 parent 91bd8d3 commit 85a3bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/src/tabs/upload/svr_upload.R
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ get_raw_dge <- reactive({
samples = colData(se),
genes = rowData(se))
dge <- dge[rowSums(abs(dge$counts)) > 1,]
dge$counts <- cpm(dge, log = TRUE)
dge$counts <- cpm(dge, log = TRUE, prior.count = 1)
dge
})

Expand Down

0 comments on commit 85a3bfb

Please sign in to comment.