Skip to content
Snippets Groups Projects
Commit 522e9e6f authored by Jeffrey Pullin's avatar Jeffrey Pullin
Browse files

workflowr::wflow_remove("analysis/zhao-data.Rmd")

parent d6a58f2c
Branches
Tags
No related merge requests found
---
title: "Zhao dataset"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r libraries}
library(tibble)
library(dplyr)
library(ggplot2)
library(scran)
library(scater)
```
```{r load-data}
zhao <- readRDS(here::here("data", "real_data", "zhao.rds"))
```
```{r}
seurat_res <- readRDS(here::here("results", "real_data", "zhao-seurat_wilcox.rds"))
scanpy_res <- readRDS(here::here("results", "real_data", "zhao-scanpy_t_rankby_raw.rds"))
```
# Naive B
```{r}
scanpy_res$result %>%
filter(cluster == "Naive B")
```
# MZB
```{r}
scanpy_res$result %>%
filter(cluster == "MZB")
```
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment