Skip to content

Commit

Permalink
add orcid and vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
zktuong committed Nov 22, 2024
1 parent c028e3a commit 82c8763
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: dandelionR
Title: Single-cell Immune Repertoire Trajectory Analysis in R
Version: 0.99.0
Authors@R:
c(person(given="Jiawei", family="Yu", email = "[email protected]", role = c("aut", "cre")),
c(person(given="Jiawei", family="Yu", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0009-0005-9170-7881")),
person(given="Kelvin", family="Tuong", email = "[email protected]", role = c("aut"), comment = c(ORCID = "0000-0002-6735-6808")))
Description: dandelionR is an R package for performing single-cell immune repertoire trajectory analysis, based on the original python implementation. It provides all the necessary tools to interface with scRepertoire and a custom implementation of absorbing markov chain for pseudotime inference, inspired based on the palantir python package.
License: MIT + file LICENSE
Expand Down
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
# dandelionR
# dandelionR

Welcome to `dandelionR`! `dandelionR` is an R package for performing single-cell immune repertoire trajectory analysis, based on the original python implementation in [`dandelion`](https://www.github.com/zktuong/dandelion). It provides all the necessary tools to interface with [`scRepertoire`](https://github.com/ncborcherding/scRepertoire) and a custom implementation of absorbing markov chain for pseudotime inference, inspired based on the [palantir](https://github.com/dpeerlab/Palantir) python package.

## Installation

You can install `dandelionR` from GitHub with:
```{r, eval = FALSE}
if (!requireNamespace("devtools", quietly = TRUE))
install.packages("devtools")
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
devtools::install_github('tuonglab/dandelionR', dependencies = TRUE)
```

## Usage

```{r, message = FALSE, warning = FALSE}
library(dandelionR)
```

This is a work in progress, so please feel free to open an issue if you encounter any problems or have any suggestions for improvement.
38 changes: 38 additions & 0 deletions vignettes/vignettes.rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
title: "dandelionR"
output: rmarkdown::html_vignette
date: "`r Sys.Date()`"
vignette: >
%\VignetteIndexEntry{dandelionR}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
# dandelionR

Welcome to `dandelionR`! `dandelionR` is an R package for performing single-cell immune repertoire trajectory analysis, based on the original python implementation in [`dandelion`](https://www.github.com/zktuong/dandelion). It provides all the necessary tools to interface with [`scRepertoire`](https://github.com/ncborcherding/scRepertoire) and a custom implementation of absorbing markov chain for pseudotime inference, inspired based on the [palantir](https://github.com/dpeerlab/Palantir) python package.

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```

## Installation

You can install `dandelionR` from GitHub with:
```{r, eval = FALSE}
if (!requireNamespace("devtools", quietly = TRUE))
install.packages("devtools")
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
devtools::install_github('tuonglab/dandelionR', dependencies = TRUE)
```

## Usage

```{r, message = FALSE, warning = FALSE}
library(dandelionR)
```

This is a work in progress, so please feel free to open an issue if you encounter any problems or have any suggestions for improvement.

0 comments on commit 82c8763

Please sign in to comment.