Skip to content

Commit 3a77c7a

Browse files
committed
install
1 parent 36a68b1 commit 3a77c7a

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

DESCRIPTION

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ Encoding: UTF-8
1111
Roxygen: list(markdown = TRUE)
1212
RoxygenNote: 7.2.2
1313
Depends: R (>= 4.0.0)
14-
Imports: Tempora,
15-
Seurat,
14+
Imports: Seurat,
1615
ggplot2,
1716
cowplot,
1817
stringr,
@@ -24,7 +23,6 @@ Imports: Tempora,
2423
data.table,
2524
writexl,
2625
EnhancedVolcano,
27-
ggsunburst,
2826
ggrepel,
2927
RColorBrewer,
3028
svglite,
@@ -36,7 +34,6 @@ Imports: Tempora,
3634
circlize,
3735
pbapply,
3836
future,
39-
magritt,
4037
org.Mm.eg.db,
4138
org.Hs.eg.db,
4239
ReactomePA

LICENSE

100644100755
File mode changed.

R/plots.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ comparativeVioBoxPlot = function( obj.sc, feature, group.by, adj.pval.threshold=
433433

434434
if (!is.null(split.by))
435435
{
436-
stat.test = rstatix::pairwise_t_test(stat.test,
436+
stat.test = rstatix::pairwise_t_test(as.data.frame(stat.test),
437437
as.formula(paste(feature, " ~ ", split.by, sep="")), paired = FALSE,
438438
p.adjust.method = "BH"
439439
)
@@ -442,7 +442,7 @@ comparativeVioBoxPlot = function( obj.sc, feature, group.by, adj.pval.threshold=
442442
print(head(as.data.frame(stat.test)))
443443

444444

445-
stat.test = rstatix::pairwise_t_test(stat.test,
445+
stat.test = rstatix::pairwise_t_test(as.data.frame(stat.test),
446446
as.formula(paste(feature, " ~ ", group.by, sep="")), paired = FALSE,
447447
p.adjust.method = "BH"
448448
)

scripts/demultiplex_dual_index_reads.py

100644100755
File mode changed.

testdata/TestScript.Rmd

-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ finalList = prepareIntegration(objlist, cc.use.genes = cc.genes, nfeatures.varia
5858
5959
integratedList_sample = performIntegration(finalList$data, "libintegration", features.integration = finalList$features, gex.method.normalization="LogNormalize", gex.method.integration="rpca", add.do=FALSE, run.parallel=FALSE)
6060
61-
6261
```
6362

6463
```{r}
@@ -118,7 +117,6 @@ annotateList.sample_condition = list(
118117
list(name="TP 2", selector="^20094_0008"),
119118
list(name="TP 3", selector="^20094_0009"),
120119
list(name="Ctrl", selector="^20094_0012")
121-
122120
)
123121
124122
obj.integrated = annotateByCellnamePattern( obj.integrated, "tp", annotateList.sample_condition, order=c("Ctrl", "TP 1", "TP 2", "TP 3"))

0 commit comments

Comments
 (0)