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

https://github.com/eonurk/seamless

A single cell transcriptomics based deconvolution pipeline for Leukemia
https://github.com/eonurk/seamless

aml deconvolution venetoclax

Last synced: 5 months ago
JSON representation

A single cell transcriptomics based deconvolution pipeline for Leukemia

Awesome Lists containing this project

README

          

---
title: "seAMLess"
output: github_document
---

## Overview
`seAMLess` is a wrapper function which deconvolutes bulk Acute Myeloid Leukemia (AML) RNA-seq samples with a healthy single cell reference atlas.

![https://eonurk.github.io/cinaR/articles/cinaR.html](man/figures/Figure1-A.png)

## Installation

[![CRAN version](https://www.r-pkg.org/badges/version/seAMLess)](https://cran.r-project.org/package=seAMLess)
[![CRAN download](https://cranlogs.r-pkg.org/badges/seAMLess?color=orange)](https://cran.r-project.org/package=seAMLess?color=orange)

```{r, eval=FALSE}
# CRAN mirror
install.packages("seAMLess")
```

### Development version
To get bug fix and use a feature from the development version:
```{r, eval=FALSE}
# install.packages("devtools")
devtools::install_github("eonurk/seAMLess")
```

### Bioconda

![Bioconda version](https://anaconda.org/bioconda/r-seamless/badges/version.svg)
![Bioconda download](https://anaconda.org/bioconda/r-seamless/badges/downloads.svg)

`seAMLess` is also available in Bioconda and can be installed via:
```{r, eval=FALSE}
conda install -c bioconda r-seamless
```

## Usage
```{r warning=FALSE, message=FALSE}
library(seAMLess)
library(xbioc) # required

data(exampleTCGA)
head(exampleTCGA)[, 1:4]
```

```{r warning=FALSE}
# Now run the function
res <- seAMLess(exampleTCGA)

# AML deconvolution
head(res$Deconvolution)[, 1:4]
```

```{r message=FALSE}
# Create ternary plot
ternaryPlot(res)
```

```{r}
# Venetoclax resistance
res$Venetoclax.resistance[1:4]
```

## Contribution
You can send pull requests to make your contributions.

## Author

- [E Onur Karakaslar](https://eonurk.com)

## License

- GNU General Public License v3.0