An open API service indexing awesome lists of open source software.

https://github.com/rainoffallingstar/sell


https://github.com/rainoffallingstar/sell

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# sell


The goal of sell is to build a R6-based package for singlecell analysis. Now warped with Seurat V4/V5.

## Installation

You can install the development version of sell:

``` r
# FILL THIS IN! HOW CAN PEOPLE INSTALL YOUR DEV PACKAGE?
pak::pak("rainoffallingstar/sell")
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example,eval=FALSE}
library(sell)
## basic example code
## check seurat api
seurat_api_detect()

## encode your array and pdata into seurat object and take computation
seurat_object <- seurat_encoder(newdata[["arraydata"]],newdata[["pdata"]],min.cells = 0,
min.features = 0,reduction_dims = 1:5)
## extract datas from seurat container

sell_list <- seurat_decoder(seurat_object)

## creat a R6 object for single cell: BagEnd
## In a hole in the ground there lived a lot of cells,lol

sellobject <- BagEndClass$new(arraydata = arraydata,pdata = pdata)

## select interested samples and gene and transform into a long table for further works
sell_melt_df <- intersect_array_pdata(arraydata,pdata) %>%
sell_melt()

```