GSgalgoR

An evolutionary Algorithm for the Identification and Study of Prognostic Gene Expression Signatures in Cancer (Bioconductor)

https://github.com/harpomaxx/gsgalgor

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 6 DOI reference(s) in README
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.3%) to scientific vocabulary
Last synced: 11 months ago · JSON representation

Repository

An evolutionary Algorithm for the Identification and Study of Prognostic Gene Expression Signatures in Cancer (Bioconductor)

Basic Info
  • Host: GitHub
  • Owner: harpomaxx
  • License: other
  • Language: R
  • Default Branch: master
  • Homepage:
  • Size: 45.3 MB
Statistics
  • Stars: 15
  • Watchers: 2
  • Forks: 3
  • Open Issues: 4
  • Releases: 0
Created about 6 years ago · Last pushed almost 6 years ago
Metadata Files
Readme License

README.md

GSgalgoR

GSgalgoR is a R package implementing a multi-objective optimization algorithm for disease subtype discovery based on a non-dominated sorting genetic algorithm (galgo). The galgo framework combines the advantages of clustering algorithms for grouping heterogeneous omics data and the searching properties of genetic algorithms for feature selection and optimal number of clusters determination to find features that maximize the survival difference between subtypes while keeping cluster consistency high.

Citation

GSgalgoR is covered in Galgo: A bi-objective evolutionary meta-heuristic identifies robust transcriptomic classifiers associated with patient outcome across multiple cancer types.

Please cite:

M E Guerrero-Gimenez, J M Fernandez-Muñoz, B J Lang, K M Holton, D R Ciocca, C A Catania, F C M Zoppino, Galgo: A bi-objective evolutionary meta-heuristic identifies robust transcriptomic classifiers associated with patient outcome across multiple cancer types, Bioinformatics, , btaa619, https://doi.org/10.1093/bioinformatics/btaa619

Documentation

The full documentation of the package is available at https://harpomaxx.github.io/GSgalgoR/

Package Overview

The GSgalgoR package implements the Galgo algorithm as well as several helper functions for analyzing the results.

In order to standardize the structure of genomic data, the package uses the ExpressionSet structure from the Biobase package. The ExpressionSet objects can hold different types of data in a single structure, but in this case, we opted for using a simplified format to facilitate the example to those not familiar with the Biobase package. The ExpressionSet objects are formed mainly by a matrix of genetic expression, usually derived from microarray or RNAseq experiments and the Phenotypic data containing information on the samples (condition, status, treatment, survival, and other covariates). Additionally, some annotations and feature Meta-data can also be included in the objects.

A complete and detailed explanation about galgo's workflow is provided in the example Vignette

The package provides a simple but robust callback mechanism to adapt the algorithm to different needs (check the Vignette). Additionally, GSgalgoR provides the Wilkerson's centroids to perform lung adenocarcinoma sample classification.

Installation

You can install the released version of GSgalgoR using devtools with:

devtools::install_github("https://github.com/harpomaxx/GSgalgoR") library(GSgalgoR)

Executing Galgo

The main function in the package is galgo(). The function accepts an expression matrix in the previous detailed section and a survival object survival package) to find robust gene expression signatures related to a given outcome. Besides, galgo() accepts several other parameters such as the number of solutions in the population, the number of generations the algorithm must evolve, and the distance function used for the clustering algorithm, among others. The parameters facilitate the setup according to the characteristics of the analysis to be performed. All the Galgo evolutionary process is executed using a multicore architecture. Alternatively, to speed up the process, it is possible to execute Galgo on Graphics processor units (GPU).

For a rapid testing of GSgalgoR two reduced lung adenocarcinoma gene expression datasets ([TCGA] and [GSE68465]) can be downloaded from https://bit.ly/luaddatagalgo (md5sum 900a74e7c4fdd0dcb7a3f2ddb44bb680) .

An example of a typical GSgalgoR workflow is shown below:

``` download.file("https://bit.ly/luaddatagalgo",destfile="/tmp/luad.rds") rna_luad <- readRDS("/tmp/luad.rds")

prm <- rnaluad$TCGA$expressionmatrix clinical <-rnaluad$TCGA$phenodata OS <- survival::Surv(time=clinical$time,event=clinical$status)

output<-GSgalgoR::galgo(generations = 5, population = 30, prob_matrix = prm, OS=OS, ,verbose = 2,usegpu = F) ```

An example of the results obtained by Galgo in the TCGA dataset. The first plot shows the Pareto front obtained by GSgalgoR in terms of the Survival (Surv.Fit) and the cohesiveness (SC.Fit) fitness functions. On the second plots shows the different survival subtypes found by the algorithm.

References

  • Guerrero-Gimenez ME, Fernandez-Muñoz JM, Lang BJ, Holton KM, Ciocca DR, Catania CA, Zoppino FCM. Galgo: A bi-objective evolutionary meta-heuristic identifies robust transcriptomic classifiers associated with patient outcome across multiple cancer types, Bioinformatics, 2020, btaa619, https://doi.org/10.1093/bioinformatics/btaa619
  • Guerrero-Gimenez ME, Catania CA, Fernandez-Muñoz JM et al. Genetic algorithm for the searching cancer subtypes with clinical significance according to their gene expression patterns , 9(ISCB Comm J 2018):664 (poster) (doi: 10.7490/f1000research.1118020.1)

Owner

  • Name: Harpo MAxx AKA C.C.
  • Login: harpomaxx
  • Kind: user
  • Location: Mendoza, Argentina
  • Company: LABSIN - Ingenieria - UNCuyo

A former geek who has forgotten how to code in a real programming language :-(

GitHub Events

Total
Last Year

Committers

Last synced: almost 3 years ago

All Time
  • Total Commits: 209
  • Total Committers: 3
  • Avg Commits per committer: 69.667
  • Development Distribution Score (DDS): 0.445
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Harpo MAxx h****x@g****m 116
martinguerrero89 m****9 87
martinguerrero89 m****9@h****m 6

Issues and Pull Requests

Last synced: 12 months ago

All Time
  • Total issues: 13
  • Total pull requests: 0
  • Average time to close issues: about 1 month
  • Average time to close pull requests: N/A
  • Total issue authors: 1
  • Total pull request authors: 0
  • Average comments per issue: 1.0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • harpomaxx (13)
Pull Request Authors
Top Labels
Issue Labels
BiocCheck (6) enhancement (2) invalid (1)
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • bioconductor 8,111 total
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 5
  • Total maintainers: 1
bioconductor.org: GSgalgoR

An Evolutionary Framework for the Identification and Study of Prognostic Gene Expression Signatures in Cancer

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 8,111 Total
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 27.2%
Downloads: 81.6%
Maintainers (1)
Last synced: 12 months ago

Dependencies

DESCRIPTION cran
  • cluster * imports
  • doParallel * imports
  • foreach * imports
  • matchingR * imports
  • methods * imports
  • nsga2R * imports
  • proxy * imports
  • stats * imports
  • survival * imports
  • Biobase * suggests
  • BiocStyle * suggests
  • breastCancerTRANSBIG * suggests
  • breastCancerUPP * suggests
  • genefu * suggests
  • ggplot2 * suggests
  • iC10TrainingData * suggests
  • knitr * suggests
  • pamr * suggests
  • rmarkdown * suggests
  • survcomp * suggests
  • survminer * suggests
  • testthat * suggests