All Projects β†’ iSEE β†’ Isee

iSEE / Isee

Licence: mit
R/shiny interface for interactive visualization of data in SummarizedExperiment objects

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Isee

Vue Nodegui
Build performant, native and cross-platform desktop applications with native Vue + powerful CSS like styling.πŸš€
Stars: ✭ 575 (+270.97%)
Mutual labels:  hacktoberfest, gui
Lipi
A simple static blog generator.
Stars: ✭ 100 (-35.48%)
Mutual labels:  hacktoberfest, gui
Meyda
Audio feature extraction for JavaScript.
Stars: ✭ 792 (+410.97%)
Mutual labels:  hacktoberfest, feature-extraction
Imgui Go
Go wrapper library for "Dear ImGui" (https://github.com/ocornut/imgui)
Stars: ✭ 499 (+221.94%)
Mutual labels:  hacktoberfest, gui
Cicerone
πŸ›οΈ Give tours of your Shiny apps
Stars: ✭ 131 (-15.48%)
Mutual labels:  hacktoberfest, shiny
Golem
A Framework for Building Robust Shiny Apps
Stars: ✭ 530 (+241.94%)
Mutual labels:  hacktoberfest, shiny
Fuzzy C Means
A simple python implementation of Fuzzy C-means algorithm.
Stars: ✭ 40 (-74.19%)
Mutual labels:  hacktoberfest, clustering
Waiter
πŸ•°οΈ Loading screens for Shiny
Stars: ✭ 325 (+109.68%)
Mutual labels:  hacktoberfest, shiny
Msmbuilder
πŸ— Statistical models for biomolecular dynamics πŸ—
Stars: ✭ 118 (-23.87%)
Mutual labels:  feature-extraction, clustering
Gong Wpf Dragdrop
The GongSolutions.WPF.DragDrop library is a drag'n'drop framework for WPF
Stars: ✭ 1,669 (+976.77%)
Mutual labels:  hacktoberfest, gui
Hazelcast
Open-source distributed computation and storage platform
Stars: ✭ 4,662 (+2907.74%)
Mutual labels:  hacktoberfest, clustering
Alienfx
AlienFX is a CLI and GUI utility to control the lighting effects of your Alienware computer.
Stars: ✭ 140 (-9.68%)
Mutual labels:  hacktoberfest, gui
Mongo Express
Web-based MongoDB admin interface, written with Node.js and express
Stars: ✭ 4,403 (+2740.65%)
Mutual labels:  hacktoberfest, gui
Persepolis
Persepolis Download Manager is a GUI for aria2.
Stars: ✭ 5,218 (+3266.45%)
Mutual labels:  hacktoberfest, gui
Gazebo
Open source robotics simulator.
Stars: ✭ 404 (+160.65%)
Mutual labels:  hacktoberfest, gui
Monero Gui Guide
Guide for the Monero GUI wallet
Stars: ✭ 36 (-76.77%)
Mutual labels:  hacktoberfest, gui
Fynedesk
A full desktop environment for Linux/Unix using Fyne
Stars: ✭ 286 (+84.52%)
Mutual labels:  hacktoberfest, gui
Graphicaltools
Modules that mix PowerShell and GUIs/CUIs! - built on Avalonia and gui.cs
Stars: ✭ 318 (+105.16%)
Mutual labels:  hacktoberfest, gui
Excelr
An Interface to 'jExcel.js' Library
Stars: ✭ 106 (-31.61%)
Mutual labels:  hacktoberfest, shiny
Borealis
Hardware accelerated, controller and TV oriented UI library for PC and Nintendo Switch (libnx).
Stars: ✭ 135 (-12.9%)
Mutual labels:  hacktoberfest, gui

iSEE - The interactive SummarizedExperiment Explorer

R build status Codecov.io coverage status Docker Cloud Automated build

Bioconductor release status

Branch R CMD check Last updated
devel Bioconductor-devel Build Status
release Bioconductor-release Build Status

Overview

The iSEE package provides an interactive user interface for exploring data in objects derived from the SummarizedExperiment class. Particular focus is given to single-cell data stored in the SingleCellExperiment derived class. The user interface is implemented with RStudio's Shiny, with a multi-panel setup for ease of navigation.

This initiative was proposed at the European Bioconductor Meeting in Cambridge, 2017. Current contributors include:

Figure 1. iSEE uses a customisable multi-panel layout.

Installation

iSEE can be easily installed from Bioconductor using BiocManager::install():

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("iSEE")
# or also...
BiocManager::install("iSEE", dependencies = TRUE)

Setting dependencies = TRUE should ensure that all packages, including the ones in the Suggests: field of the DESCRIPTION, are installed - this can be essential if you want to reproduce the code in the vignette, for example.

Functionalities

Click to expand the list of features available in iSEE applications.

General

  • Multiple interactive plot types with selectable points.

  • Interactive tables with selectable rows.

  • Coloring of samples and features by metadata or expression data.

  • Zooming to a plot subregion.

  • Transmission of point selections between panels to highlight, color, or restrict data points in the receiving panel(s).

  • Lasso point selection to define complex shapes.

Sample-level visualization

The iSEE user interface currently contains the following components where each data point represents a single biological sample:

  • Reduced dimension plot: Scatter plot of reduced dimensionality data.

  • Column data plot: Adaptive plot of any one or two sample metadata. A scatter, violin, or square design is dynamically applied according to the continuous or discrete nature of the metadata.

  • Feature assay plot: Adaptive plot of expression data across samples for any two features or one feature against one sample metadata.

  • Column data table: Table of sample metadata.

Feature-level visualization

The iSEE user interface currently contains the following components where each data point represents a genomic feature:

  • Row data plot: Adaptive plot of any two feature metadata. A scatter, violin, or square design is dynamically applied according to the continuous or discrete nature of the metadata.

  • Sample assay plot: Adaptive plot of expression data across features for any two samples or one sample against one feature metadata.

  • Row data table: Table of feature metadata.

Integrated visualization

The iSEE user interface contains the following components that integrate sample and feature information:

  • Complex heatmap plot: Visualize multiple features across multiple samples annotated with sample metadata.

Custom panels

The iSEE API allows users to programmatically define their own plotting and table panels. See the section Extending iSEE further below.

Miscellaneous

  • The iSEE user interface continually tracks the code corresponding to all visible plotting panels. This code is rendered in a shinyAce text editor and can be copy-pasted into R scripts for customization and further use.

  • Speech recognition can be enabled to control the user interface using voice commands.

Want to try iSEE?

We set up instances of iSEE applications running on diverse types of datasets at those addresses:

Please keep in mind that those public instances are for trial purposes only; yet they demonstrate how you or your system administrator can setup iSEE for analyzing or sharing your precomputed SummarizedExperiment/SingleCellExperiment object.

Extending iSEE

If you want to extend the functionality of iSEE, you can create custom panels which add new possibilities to interact with your data. Custom panels can be defined in independent R packages that include iSEE in the Imports: sections of their DESCRIPTION file. You can find a collection of working examples of how to do it in iSEEu. Feel free to contact the developing team, should you need some clarifications on how iSEE works internally.

Code of Conduct

Please note that the iSEE project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].