Skip to content

unistbig/GScluster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
jinhwan kim
Nov 28, 2020
7e4146f · Nov 28, 2020
Nov 27, 2019
Nov 28, 2020
Feb 14, 2019
Nov 28, 2020
Jan 2, 2019
May 20, 2019
Nov 28, 2020
Jan 2, 2019
Feb 28, 2019
Jan 2, 2019
Mar 15, 2019
Mar 15, 2019
Mar 15, 2019
Mar 15, 2019
Mar 15, 2019
Mar 15, 2019
Mar 15, 2019

Repository files navigation

GScluster is a standalone Shiny/R package for network-weighted gene-set clustering and network visualization.

Installation

Open R program and type following commands in R console.

install.packages('devtools')
library(devtools)
install_github('unistbig/GScluster')
library(GScluster)

Example Run

To run demo file, please type following R code.

GScluster()

To run user's own data, please modify following example R codes.

  1. Read gene-set analysis result table.

GSAresult=read.delim('https://github.com/unistbig/GScluster/raw/master/sample_geneset.txt', stringsAsFactors=FALSE)

  1. Read gene score table.

GeneScores=read.delim('https://github.com/unistbig/GScluster/raw/master/sample_genescore.txt', header=F)

  1. Run GScluster

GScluster(GSAresult = GSAresult, GeneScores = GeneScores, Species = 'H', alpha = 1, GsQCutoff = 0.25, GQCutoff = 0.05)

User's Manual

User's manual is available here.

Example data download


Running time of GScluster is shown below for different numbers of input gene-sets.


Contact: Dougu Nam ([email protected])
Any feedback or comments are greatly appreciated!!