Browse code

Updated LICENSE. Updated plotSeuratElbow docs, updated plotSeuratElbow unit test. Updated

Josh Campbell authored on 13/02/2025 00:42:09
Showing 4 changed files

... ...
@@ -1,21 +1,2 @@
1 1
 YEAR: 2016
2
-COPYRIGHT HOLDER: David Jenkins and W. Evan Johnson
3
-
4
-The MIT License (MIT) (http://opensource.org/licenses/MIT)
5
-
6
-Permission is hereby granted, free of charge, to any person obtaining a copy of
7
-this software and associated documentation files (the "Software"), to deal in
8
-the Software without restriction, including without limitation the rights to
9
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
10
-the Software, and to permit persons to whom the Software is furnished to do so,
11
-subject to the following conditions:
12
-
13
-The above copyright notice and this permission notice shall be included in all
14
-copies or substantial portions of the Software.
15
-
16
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2
+COPYRIGHT HOLDER: David Jenkins, W. Evan Johnson, and Joshua D. Campbell
... ...
@@ -1,7 +1,17 @@
1
+Changes in Version 2.16.1 (2024-02-12)
2
+================================================================================
3
+* Fixed decontX/soupX webapp error
4
+* Fixed error in reportCellQC 
5
+* Fixed additional bugs with Seurat V5 integration
6
+
7
+Changes in Version 2.16.0 (2024-10-29)
8
+================================================================================
9
+* Updated version to match Bioconductor 3.20
10
+
1 11
 Changes in Version 2.14.0 (2024-05-03)
2 12
 ================================================================================
3 13
 * Updated version to match Bioconductor 3.19
4
-* Update runGSVA fucntion to work with newer GSVA package
14
+* Update runGSVA function to work with newer GSVA package
5 15
 
6 16
 Changes in Version 2.12.2 (2024-01-28)
7 17
 ================================================================================
... ...
@@ -12,7 +12,7 @@ plotSeuratElbow(
12 12
   reduction = "pca",
13 13
   ndims = 20,
14 14
   externalReduction = NULL,
15
-  interactive = TRUE
15
+  interactive = FALSE
16 16
 )
17 17
 }
18 18
 \arguments{
... ...
@@ -33,7 +33,7 @@ other libraries. Default \code{NULL}.}
33 33
 
34 34
 \item{interactive}{Logical value indicating if the returned object should
35 35
 be an interactive plotly object if \code{TRUE} or a ggplot object if
36
-set to \code{FALSE}. Default is \code{TRUE}.}
36
+set to \code{FALSE}. Default is \code{FALSE}.}
37 37
 }
38 38
 \value{
39 39
 plot object
... ...
@@ -58,7 +58,7 @@ test_that(desc = "Testing standard seurat workflow", {
58 58
   
59 59
   # Test ElbowPlot on PCA
60 60
   elbowPlot <- plotSeuratElbow(sce)
61
-  testthat::expect_true(inherits(elbowPlot, "plotly"))
61
+  testthat::expect_true(is.ggplot(elbowPlot))
62 62
   
63 63
   # Test Heatmap on PCA
64 64
   heatmapPlot <- runSeuratHeatmap(sce, useAssay = "seuratScaledData", dims = 4, fast = FALSE)