-
Notifications
You must be signed in to change notification settings - Fork 120
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 #230 from saeyslab/issue-198-idents
Issue 198 fix
- Loading branch information
Showing
32 changed files
with
2,319 additions
and
2,072 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: nichenetr | ||
Type: Package | ||
Title: NicheNet: Modeling Intercellular Communication by Linking Ligands to Target Genes | ||
Version: 2.0.3 | ||
Version: 2.0.4 | ||
Authors@R: c(person("Robin", "Browaeys", role = c("aut")), | ||
person("Chananchida", "Sang-aram", role = c("aut", "cre"), email = "[email protected]")) | ||
Description: This package allows you the investigate intercellular communication from a computational perspective. More specifically, it allows to investigate how interacting cells influence each other's gene expression. Functionalities of this package (e.g. including predicting extracellular upstream regulators and their affected target genes) build upon a probabilistic model of ligand-target links that was inferred by data-integration. | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -70,7 +70,7 @@ [email protected]$celltype_aggregate %>% table() %>% sort(decreasing = TRUE) | |
|
||
```{r} | ||
celltype_id = "celltype_aggregate" # metadata column name of the cell type of interest | ||
seurat_obj = SetIdent(seurat_obj, value = seurat_obj[[celltype_id]]) | ||
seurat_obj = SetIdent(seurat_obj, value = seurat_obj[[celltype_id, drop=TRUE]]) | ||
``` | ||
|
||
## Read in the NicheNet ligand-receptor network and ligand-target matrix | ||
|
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 |
---|---|---|
|
@@ -103,7 +103,7 @@ [email protected]$celltype_aggregate %>% table() %>% sort(decreasing = TRUE) | |
|
||
``` r | ||
celltype_id = "celltype_aggregate" # metadata column name of the cell type of interest | ||
seurat_obj = SetIdent(seurat_obj, value = seurat_obj[[celltype_id]]) | ||
seurat_obj = SetIdent(seurat_obj, value = seurat_obj[[celltype_id, drop=TRUE]]) | ||
``` | ||
|
||
## Read in the NicheNet ligand-receptor network and ligand-target matrix | ||
|
Oops, something went wrong.