Metadata-Version: 2.4
Name: rnadtu
Version: 0.1.5
Summary: Package for running the CIDR algorithm implemented in R, in python
Author-email: Anton <s235256@dtu.dk>, Sigurd <s235215@dtu.dk>, Alex <s235237@dtu.dk>, Aryan <s224208@dtu.dk>
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy<3.0,>=2.0.2
Requires-Dist: pandas<3.0,>=2.2.3
Requires-Dist: anndata<1.0,>=0.11
Requires-Dist: scanpy<2.0,>=1.9.8
Requires-Dist: rpy2<4.0,>=3.6.0
Dynamic: license-file

# rnadtu

A Python package for running the CIDR algorithm (originally in R) for clustering single-cell RNA-seq data.

## Features
- Can run the CIDR-Algorithm in Python with the "cidr" function on an AnnData-object with either subprocesses or rpy2.
- cidr function has optional parameters tagType and nClusters, where tagType can be "raw" or "cpm" (counts per million) defaults to "raw". nClusters parameters defaults to algorithms calculation of best amount of clusters, but can be any positive integer. Also added the ability to choose which layer of AnnData is to be clustered.

- cidr_rpy2 function does the same as cidr function but using rpy2 package instead of subprocesses

## Installation
```bash
pip install rnadtu
