-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
18 changed files
with
420 additions
and
740 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: scMEGA | ||
Type: Package | ||
Title: Single-cell Multiomic Enhancer-based Gene Regulatory Network Inference | ||
Version: 1.0.2 | ||
Version: 1.1.0 | ||
Author: Zhijian Li | ||
Maintainer: Zhijian Li <[email protected]> | ||
Description: Infering gene regulatory network from single-cell multi-omics data. | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+472 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-11-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+633 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-13-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+259 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-17-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+635 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-19-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+185 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-20-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.18 MB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-21-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+312 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-23-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.11 MB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-25-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+105 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-26-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+107 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-4-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+336 KB
docs/articles/pbmc_10x_multiome_files/figure-html/unnamed-chunk-8-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
|
@@ -233,18 +233,18 @@ meta.data <- [email protected] %>% | |
# create a Seurat object containing the RNA adata | ||
pbmc <- CreateSeuratObject( | ||
counts = obj.rna@assays$RNA@counts, | ||
counts = GetAssayData(obj.rna, layer = "counts"), | ||
assay = "RNA", | ||
meta.data = meta.data | ||
meta.data = meta.data | ||
) | ||
# create ATAC assay and add it to the object | ||
pbmc[["ATAC"]] <- CreateChromatinAssay( | ||
counts = obj.atac@assays$ATAC@counts, | ||
counts = GetAssayData(obj.atac, layer = "counts",), | ||
sep = c(":", "-"), | ||
min.cells = 1, | ||
genome = 'hg38', | ||
fragments = './10x_pbmc/pbmc_granulocyte_sorted_10k_atac_fragments.tsv.gz' | ||
min.cells = 1, | ||
genome = 'hg38', | ||
fragments = './10x_pbmc/pbmc_granulocyte_sorted_10k_atac_fragments.tsv.gz' | ||
) | ||
``` | ||
|
||
|
@@ -300,9 +300,9 @@ pbmc <- AddTrajectory(object = pbmc, | |
trajectory = c("naive CD4 T cells", | ||
"memory CD4 T cells"), | ||
group.by = "predicted.id", | ||
reduction = "MOJITOO_UMAP", | ||
dims = 1:2, | ||
use.all = FALSE) | ||
reduction = "MOJITOO_UMAP", | ||
dims = 1:2, | ||
use.all = FALSE) | ||
# we only plot the cells that are in this trajectory | ||
pbmc.t.cells <- pbmc[, !is.na(pbmc$Trajectory)] | ||
|