Name Mode Size
R 040000
data 040000
docs 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
.travis.yml 100644 0 kb
DESCRIPTION 100644 1 kb
LICENSE 100644 0 kb
LICENSE.md 100644 1 kb
NAMESPACE 100644 1 kb
NEWS 100644 0 kb
README.md 100644 2 kb
_pkgdown.yml 100644 1 kb
codecov.yml 100644 0 kb
README.md
# Dune <!-- badges: start --> [![Build Status](https://travis-ci.com/HectorRDB/Dune.svg?token=zVqScmB6wvrS9ZJSK57p&branch=before_bioc_release)](https://travis-ci.com/HectorRDB/Dune) [![codecov](https://codecov.io/gh/HectorRDB/Dune/branch/master/graph/badge.svg?token=snxfXtj87B)](https://codecov.io/gh/HectorRDB/Dune) <!-- badges: end --> <p align="center"> <img src="vignettes/logo.png" width="30%"/> </p> ## Contents - [Overview](#overview) - [Installation](#installation) - [Demo](#demo) - [Issues](#Issues-and-bug-reports) - [License](./LICENSE.md) - [Citation](./inst/CITATION) ## Overview Dune is an R Package that provides a parameter-free method for optimizing the trade-off between the resolutionof the clusters and their replicability across datasets. Dune method takes as input a set of clustering results on a dataset, and iteratively merges clusters within those clusterings in order to maximize their concordance. ## Installation To install the current version of *Dune* , you will need Bioconductor 3.11 (i.e devel version): ``` if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") # The following initializes usage of Bioc devel BiocManager::install(version='devel') BiocManager::install("Dune") ``` A version compatible with R 3.6 is also available with the following commands: ``` if(!requireNamespace("devtools", quietly = TRUE)) { install.packages("devtools") } devtools::install_github("HectorRDB/Dune", ref = "before_bioc_release") ``` The installation should only take a few seconds. The dependencies of the package are listed in the DESCRIPTION file of the package. To install R and Bioconductor, please refer to the [Bioconductor install page](https://www.bioconductor.org/install/). ## Issues and bug reports Please use the [github issues](https://github.com/HectorRDB/Dune/issues) to submit issues, bug reports, and comments. ## Demo Start with the vignette [online](https://hectorRDB.github.io/Dune/articles/Dune.html). If you to look at the vignette source code, you can either run `browseVignettes(package = "Dune")` if you install the package from Bioconductor find the code for the vignette [here](./vignettes/Dune.Rmd)