Skip to content

Commit

Permalink
Merge pull request #20 from osagiei/patch-1
Browse files Browse the repository at this point in the history
Add check.names=FALSE in CIRI_DE.R
  • Loading branch information
Kevinzjy authored Feb 25, 2021
2 parents 2e61909 + 6df8234 commit b39ac61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/CIRI_DE.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ if (is.na(opt$lib) || is.na(opt$bsj) || is.na(opt$gene) || is.na(opt$out)) {

# Load data
lib_mtx <- read.csv(opt$lib, row.names = 1)
gene_mtx <- read.csv(opt$gene, row.names = 1)
gene_mtx <- read.csv(opt$gene, row.names = 1, check.names=FALSE)
gene_mtx <- gene_mtx[,rownames(lib_mtx)]
bsj_mtx <- read.csv(opt$bsj, row.names = 1)
bsj_mtx <- read.csv(opt$bsj, row.names = 1, check.names=FALSE)

gene_DGE <- DGEList(counts = gene_mtx, group = lib_mtx$Group)
gene_idx <- filterByExpr(gene_DGE)
Expand Down

0 comments on commit b39ac61

Please sign in to comment.