-
Notifications
You must be signed in to change notification settings - Fork 10
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
6350a50
commit 0bc839d
Showing
4 changed files
with
11 additions
and
3 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ improvements | |
READMEupdate.md | ||
RData/ | ||
.DS_Store | ||
.DS_Store |
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,13 +1,14 @@ | ||
Package: SCENT | ||
Type: Package | ||
Title: Single-Cell ENhancer Target (SCENT) gene mapping for single cell multimodal data | ||
Version: 0.1.0 | ||
Version: 1.0.0 | ||
Author: Saori Sakaue and Shakson Isaac | ||
Maintainer: Shakson Isaac <[email protected]> | ||
Description: R package that contains functions for the SCENT algorithm. SCENT uses | ||
single-cell multimodal data (e.g., 10X Multiome RNA/ATAC) and links | ||
ATAC-seq peaks (putative enhancers) to their target genes by modeling association | ||
between chromatin accessibility and gene expression across individual single cells. | ||
Depends: R (>= 3.5.0) | ||
Imports: | ||
methods, | ||
Hmisc, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#' @import methods Hmisc data.table stringr | ||
#' @import R.utils | ||
#' @import methods Hmisc R.utils data.table stringr | ||
#' @import lme4 boot MASS parallel | ||
#' @import Matrix | ||
#' @importFrom stats as.formula coef glm vcov | ||
#' @importFrom utils write.table | ||
NULL |