Skip to content

Commit

Permalink
Update gexp_prep_back.R
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdb authored May 20, 2022
1 parent 08fc014 commit d76aef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/gexp_prep/gexp_prep_back.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ suppressPackageStartupMessages(library(data.table))

mcounts=fread(file)

cat(paste0("Preprocessing file", file, "\n"))
cat(paste0("Preprocessing gene expression file:", file, "\n"))

geneinfo=mcounts[,1]
#fwrite(mcounts[,1],"gene_id")
Expand All @@ -23,7 +23,7 @@ mcounts <- mcounts[, -lowcount.id]
}

cat(paste0("Removed ", length(lowcount.id), " samples with total counts < 2.5 M\n"))
cat("Applying variance stabalizing transformation\n")
cat("Applying variance stabalizing transformation...\n")

sampleinfo <- matrix(factor(1),nrow=ncol(mcounts))
rownames(sampleinfo) <- colnames(mcounts)
Expand Down

0 comments on commit d76aef4

Please sign in to comment.