Skip to content

Commit 97f220f

Browse files
committed
addressing minor issues
1 parent 822fab7 commit 97f220f

15 files changed

+568
-25
lines changed

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@
66
^Meta$
77
(^|/)\.misty\.temp$
88
(^|/)results$
9+
^vignettes/mistySeurat.Rmd$
10+
^LICENSE$

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ Meta
4747
.misty.temp
4848
results
4949
vignettes/breast_A_1
50+
vignettes/breast_A_1.tgz
5051
/doc/
5152
/Meta/
52-
vignettes/mistySeurat.Rmd

DESCRIPTION

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: mistyR
22
Type: Package
33
Title: Multiview Intercellular SpaTial modeling framework
4-
Version: 0.99.5
4+
Version: 0.99.6
55
Authors@R: c(
66
person(given = "Jovan",
77
family = "Tanevski",
@@ -33,9 +33,8 @@ BugReports: https://github.com/saezlab/mistyR/issues
3333
biocViews: Software, BiomedicalInformatics, CellBiology, SystemsBiology,
3434
Regression, DecisionTree, SingleCell
3535
Depends: R (>= 4.0)
36-
License: GPL-3 + file LICENSE
36+
License: GPL-3
3737
Encoding: UTF-8
38-
LazyData: true
3938
VignetteBuilder: knitr
4039
Imports: assertthat, caret, deldir, digest, distances, dplyr, filelock,
4140
furrr (>= 0.2.0), ggplot2, magrittr, MASS, purrr, ranger, readr, rlang,

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# mistyR 0.99.6
2+
3+
- Minor revisions for bioc release.
4+
15
# mistyR 0.99.5
26

37
- Remove Seurat vignette from package due to missing hdf5r binary for R 4.1 on CRAN for MacOS.

R/misty.R

+4-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,10 @@ run_misty <- function(views, results.folder = "results", seed = 42,
161161

162162
# performance
163163
if (sum(target.model[["performance.estimate"]] < 0) > 0) {
164-
warning(paste("Negative performance detected and replaced with 0 for target", target))
164+
warning.message <-
165+
paste("Negative performance detected and replaced with 0 for target",
166+
target)
167+
warning(warning.message)
165168
}
166169

167170
performance.estimate <- target.model[["performance.estimate"]] %>%

README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -29,31 +29,45 @@ The package requires installed R version 4.0 or higher. This package has been te
2929

3030
## Installation
3131

32-
Install from GitHub using remotes:
32+
Install from Bioconductor:
33+
34+
```r
35+
if(!requireNamespace("BiocManager", quietly = TRUE))
36+
install.packages("BiocManager")
37+
BiocManager::install("mistyR")
38+
39+
```
40+
41+
or install the latest version from GitHub with `remotes`:
3342

3443
```r
3544
# install.packages("remotes")
3645
remotes::install_github("saezlab/mistyR")
3746

3847
```
3948

49+
4050
mistyR is dependent on the following packages that are available from CRAN:
4151

4252
assertthat, caret, deldir, digest, distances, dplyr, filelock, furrr, ggplot2,
4353
magrittr, MASS, purrr, ranger, readr, rlang, rlist, stats, stringr, tibble,
4454
tidyr, withr
4555

46-
and mainly for the purpose of building the vignettes suggests BiocStyle, future, igraph, knitr, Matrix, progeny, rmarkdown, sctransform, SingleCellExperiment, SpatialExperiment and SummarizedExperiment from CRAN or Bioconductor.
56+
and mainly for the purpose of building the vignettes suggests
57+
58+
BiocStyle, future, igraph, knitr, Matrix, progeny, rmarkdown, sctransform, SingleCellExperiment, SpatialExperiment and SummarizedExperiment
59+
60+
from CRAN or Bioconductor.
4761

48-
The installation of MISTy without any additional dependencies and building vignettes should take only seconds.
62+
The installation of mistyR without any additional dependencies and building vignettes should take only seconds.
4963

5064
## Usage
5165

5266
Start by reading `vignette("mistyR")` to learn how to run mistyR. To use mistyR with commonly used objects for spatial omics data see the [articles](https://saezlab.github.io/mistyR/articles/).
5367

54-
Example pipelines and synthetic data for running mistyR are also available from [this repository](/articles/). To run mistyR on the provided synthetic data run the script synthetic_pipeline.R.
68+
Example pipelines and synthetic data for running mistyR are also available from [this repository](https://github.com/saezlab/misty_pipelines). To run mistyR on the provided synthetic data run the script synthetic_pipeline.R.
5569

5670
## Citation
5771
If you use mistyR for your research please cite the [following publication](https://doi.org/10.1101/2020.05.08.084145):
5872

59-
> Jovan Tanevski, Attila Gabor, Ricardo Omar Ramirez Flores, Denis Schapiro, Julio Saez-Rodriguez (2020). Explainable multi-view framework for dissecting inter-cellular signaling from highly multiplexed spatial data. *bioRxiv*. doi: [10.1101/2020.05.08.084145](https://doi.org/10.1101/2020.05.08.084145)
73+
> Jovan Tanevski, Attila Gabor, Ricardo Omar Ramirez Flores, Denis Schapiro, Julio Saez-Rodriguez (2020). Explainable multi-view framework for dissecting inter-cellular signaling from highly multiplexed spatial data. *bioRxiv*. doi: [10.1101/2020.05.08.084145](https://doi.org/10.1101/2020.05.08.084145)

docs/404.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/index.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/authors.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

+13-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/pkgdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ articles:
55
mistyR: mistyR.html
66
mistySeurat: mistySeurat.html
77
mistySpatialExperiment: mistySpatialExperiment.html
8-
last_built: 2021-05-05T07:45Z
8+
last_built: 2021-05-05T09:04Z
99
urls:
1010
reference: https://saezlab.github.io/mistyR/reference
1111
article: https://saezlab.github.io/mistyR/articles

docs/reference/index.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/mistyR.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ When interpreting the results and the plots it is important to note that the rel
267267

268268
[Online articles](https://saezlab.github.io/mistyR/articles/)
269269

270-
## Publication {.unnumbered}
270+
## Publication {-}
271271

272272
*`r format(citation("mistyR"), "textVersion")`*
273273

0 commit comments

Comments
 (0)