Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
lgeistlinger committed Jun 22, 2023
1 parent 21893e1 commit 9ffd0f3
Show file tree
Hide file tree
Showing 28 changed files with 2,232 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
^.*\.Rproj$
^\.Rproj\.user$
13 changes: 13 additions & 0 deletions .github/no-response.yml
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.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
31 changes: 31 additions & 0 deletions DESCRIPTION
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'
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions NAMESPACE
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)
Loading

0 comments on commit 9ffd0f3

Please sign in to comment.