-
Notifications
You must be signed in to change notification settings - Fork 924
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3479 from satijalab/develop
Seurat v3.2.1
- Loading branch information
Showing
51 changed files
with
1,852 additions
and
387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
|
||
jobs: | ||
r-cmd-check: | ||
|
||
if: "!contains(github.event.head_commit.message, 'ci-skip')" | ||
|
||
name: R CMD check | ||
container: | ||
image: satijalab/seurat:develop | ||
runs-on: self-hosted | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Check | ||
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check") | ||
shell: Rscript {0} | ||
|
||
- name: Upload check results | ||
if: failure() | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: results | ||
path: check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: Seurat | ||
Version: 3.2.0 | ||
Date: 2020-07-15 | ||
Version: 3.2.1 | ||
Date: 2020-09-04 | ||
Title: Tools for Single Cell Genomics | ||
Description: A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data. 'Seurat' aims to enable users to identify and interpret sources of heterogeneity from single cell transcriptomic measurements, and to integrate diverse types of single cell data. See Satija R, Farrell J, Gennert D, et al (2015) <doi:10.1038/nbt.3192>, Macosko E, Basu A, Satija R, et al (2015) <doi:10.1016/j.cell.2015.05.002>, and Stuart T, Butler A, et al (2019) <doi:10.1016/j.cell.2019.05.031> for more details. | ||
Authors@R: c( | ||
|
@@ -14,20 +14,19 @@ Authors@R: c( | |
person(given = 'Patrick', family = 'Roelli', email = '[email protected]', role = 'ctb'), | ||
person(given = "Yuhan", family = "Hao", email = '[email protected]', role = 'ctb', comment = c(ORCID = '0000-0002-1810-0822')) | ||
) | ||
URL: http://www.satijalab.org/seurat, https://github.com/satijalab/seurat | ||
URL: https://satijalab.org/seurat, https://github.com/satijalab/seurat | ||
BugReports: https://github.com/satijalab/seurat/issues | ||
Additional_repositories: https://mojaveazure.github.io/loomR | ||
Depends: | ||
R (>= 3.4.0), | ||
R (>= 3.6.0), | ||
methods, | ||
Imports: | ||
ape, | ||
cluster, | ||
cowplot, | ||
fitdistrplus, | ||
future, | ||
future.apply, | ||
ggplot2 (>= 3.0.0), | ||
ggplot2 (>= 3.3.0), | ||
ggrepel, | ||
ggridges, | ||
graphics, | ||
|
@@ -43,6 +42,7 @@ Imports: | |
lmtest, | ||
MASS, | ||
Matrix (>= 1.2-14), | ||
matrixStats, | ||
miniUI, | ||
patchwork, | ||
pbapply, | ||
|
@@ -88,6 +88,7 @@ RoxygenNote: 7.1.1 | |
Encoding: UTF-8 | ||
Suggests: | ||
loomR, | ||
ape, | ||
testthat, | ||
hdf5r, | ||
S4Vectors, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.