-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
41 lines (29 loc) · 1.37 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: "polyClustR"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## Introduction
The polyClustR package provides an R implementation of the pipeline described in ***polyCluster: Defining Communities of Reconciled Cancer Subtypes with Biological and Prognostic Significance***; K. Eason, G. Nyamundanda and A. Sadandandam.
## Installation & Usage
```{r cars, eval=FALSE}
devtools::install_github('syspremed/polyClustR')
library(polyClustR)
# Example breast dataset is provided with installation
exampleGE <- system.file('extdata', 'chin_breast_example_GE.txt', package = 'polyClustR')
exampleKnownSubtypes <- system.file('extdata', 'chin_breast_example_known_subtypes.txt', package = 'polyClustR')
polyCluster(exampleGE, clusterAlg = c('hc', 'km'), phenoFile = exampleKnownSubtypes, ref = 'test_run')
# Output is written to the current working directory.
```
For full details of the arguments required to run `polyCluster`, see `?polyCluster`.
If you have any issues running polyClustR, please report them using the "Issues" tab above.
Default clustering parameters are:
Parameter | Value
------------- | -------------
Consensus resamplings | 100
Proportion of items sampled per subsample | 0.8
Clustering distance | Euclidean
Heirarchical linkage method for subsampling | Average
Heirarchical linkage method for consensus matrix | Average