Skip to content

Commit

Permalink
Merge branch 'release-1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
wleoncio committed Nov 13, 2020
2 parents 0c90899 + 24a3bf1 commit 5b2b23a
Show file tree
Hide file tree
Showing 45 changed files with 9,815 additions and 1,331 deletions.
9 changes: 3 additions & 6 deletions DESCRIPTION
@@ -1,7 +1,7 @@
Package: DIscBIO
Date: 2020-10-06
Date: 2020-11-13
Title: A User-Friendly Pipeline for Biomarker Discovery in Single-Cell Transcriptomics
Version: 1.0.1
Version: 1.1.0
Authors@R:
c(
person(
Expand Down Expand Up @@ -87,8 +87,5 @@ Collate:
'VolcanoPlot.R'
'customConverters.R'
'datasets.R'
'internal-functions-samr-adapted.R'
'internal-functions.R'
'prepExampleDataset.R'
'reformatSiggenes.R'
'replaceDecimals.R'
'samr-adapted.R'
2 changes: 2 additions & 0 deletions NAMESPACE
Expand Up @@ -141,4 +141,6 @@ importFrom(stats,var)
importFrom(tsne,tsne)
importFrom(utils,capture.output)
importFrom(utils,download.file)
importFrom(utils,read.table)
importFrom(utils,write.csv)
importFrom(utils,write.table)
4 changes: 2 additions & 2 deletions R/DIscBIO-classes.R
Expand Up @@ -154,9 +154,9 @@ setMethod(
tmpFeats <- rownames(.Object@expdataAll)
tmpExpdataAll <- .Object@expdataAll

shortNames <- substr(rownames(tmpExpdataAll), 1, 4)
shortNames <- substr(rownames(tmpExpdataAll), 1, 3)
geneTypes <- factor(
c(ENSG = "ENSG", ERCC = "ERCM", ENSG = "ENSM")[shortNames]
c(ENS = "ENS", ERC = "ERC")[shortNames]
)
expdata <- tmpExpdataAll[which(grepl("^ENS", geneTypes)), ]
.Object@expdata <- expdata
Expand Down

0 comments on commit 5b2b23a

Please sign in to comment.