-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21893e1
commit 9ffd0f3
Showing
28 changed files
with
2,232 additions
and
1 deletion.
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,2 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ |
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,13 @@ | ||
# Configuration for probot-no-response - https://github.com/probot/no-response | ||
|
||
# Number of days of inactivity before an Issue is closed for lack of response | ||
daysUntilClose: 14 | ||
# Label requiring a response | ||
responseRequiredLabel: more-information-needed | ||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information from the original author. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have or find the answers we need so | ||
that we can investigate further. |
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,4 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata |
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,31 @@ | ||
Package: SeuratData | ||
Type: Package | ||
Title: Install and Manage Seurat Datasets | ||
Version: 0.2.2 | ||
Date: 2019-12-09 | ||
Authors@R: c( | ||
person(given = 'Rahul', family = 'Satija', email = 'rsatija@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0001-9448-8833')), | ||
person(given = 'Paul', family = 'Hoffman', email = 'phoffman@nygenome.org', role = c('aut', 'cre'), comment = c(ORCID = '0000-0002-7693-8957')), | ||
person(given = 'Andrew', family = 'Butler', email = 'abutler@nygenome.org', role = 'aut', comment = c(ORCID = '0000-0003-3608-0463')) | ||
) | ||
Description: Single cell RNA sequencing datasets can be large, consisting of matrices | ||
that contain expression data for several thousand features across several thousand | ||
cells. This package is designed to easily install, manage, and learn about various single-cell | ||
datasets, provided Seurat objects and distributed as independent packages. | ||
URL: http://www.satijalab.org/seurat, https://github.com/satijalab/seurat-data | ||
BugReports: https://github.com/satijalab/seurat-data/issues | ||
License: GPL-3 | file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.1.2 | ||
Depends: | ||
R (>= 3.5.0) | ||
Imports: | ||
cli, | ||
crayon, | ||
rappdirs, | ||
stats, | ||
utils | ||
Collate: | ||
'zzz.R' | ||
'seurat_data.R' |
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,34 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(AvailableData) | ||
export(InstallData) | ||
export(InstalledData) | ||
export(LoadData) | ||
export(RemoveData) | ||
export(UpdateData) | ||
importFrom(Matrix,sparseMatrix) | ||
importFrom(Seurat,LoadAnnoyIndex) | ||
importFrom(SeuratObject,"Idents<-") | ||
importFrom(SeuratObject,AddMetaData) | ||
importFrom(SeuratObject,Cells) | ||
importFrom(SeuratObject,CreateSeuratObject) | ||
importFrom(SeuratObject,Misc) | ||
importFrom(SeuratObject,Tool) | ||
importFrom(cli,rule) | ||
importFrom(cli,symbol) | ||
importFrom(crayon,blue) | ||
importFrom(crayon,bold) | ||
importFrom(crayon,col_align) | ||
importFrom(crayon,col_nchar) | ||
importFrom(crayon,green) | ||
importFrom(crayon,red) | ||
importFrom(crayon,yellow) | ||
importFrom(rappdirs,user_data_dir) | ||
importFrom(stats,na.omit) | ||
importFrom(utils,available.packages) | ||
importFrom(utils,data) | ||
importFrom(utils,download.file) | ||
importFrom(utils,install.packages) | ||
importFrom(utils,packageVersion) | ||
importFrom(utils,remove.packages) | ||
importFrom(utils,update.packages) |
Oops, something went wrong.