All Projects → Swarchal → platetools

Swarchal / platetools

Licence: other
An R package for plotting microtitre plates

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to platetools

cytoscape-sbgn-stylesheet
View biological networks via Cytoscape.js and sbgn-ml
Stars: ✭ 47 (+4.44%)
Mutual labels:  biology, lab
aquarium
The Aquarium Lab Operating System
Stars: ✭ 44 (-2.22%)
Mutual labels:  biology, lab
lasagne4bio
No description or website provided.
Stars: ✭ 103 (+128.89%)
Mutual labels:  biology
Stata-schemes
Here you will find various ready-to-use Stata schemes.
Stars: ✭ 85 (+88.89%)
Mutual labels:  ggplot2
Home-Lab
This is the network diagrams, configuration guides, and hardware used for my home lab.
Stars: ✭ 62 (+37.78%)
Mutual labels:  lab
mapr
Map species occurrence data
Stars: ✭ 34 (-24.44%)
Mutual labels:  ggplot2
ADLab
Custom PowerShell module to setup an Active Directory lab environment to practice penetration testing.
Stars: ✭ 143 (+217.78%)
Mutual labels:  lab
Repo-Bio
Binomica Public Repository for Biological Parts
Stars: ✭ 21 (-53.33%)
Mutual labels:  biology
ICS LAB CMU 2016
CMU-CSAPP-LAB 原始文件+完成代码+文字攻略(过程记录手稿第一版)
Stars: ✭ 51 (+13.33%)
Mutual labels:  lab
BuddySuite
Bioinformatics toolkits for manipulating sequence, alignment, and phylogenetic tree files
Stars: ✭ 106 (+135.56%)
Mutual labels:  biology
basemapR
Contains functions to add base maps to ggplot2 maps
Stars: ✭ 14 (-68.89%)
Mutual labels:  ggplot2
R4Econ
R Code Examples Multi-dimensional/Panel Data
Stars: ✭ 16 (-64.44%)
Mutual labels:  ggplot2
shopify-foundation-theme
Modern Shopify theme using Shopify Theme Lab, Liquid, Vue and Tailwind CSS 🎨
Stars: ✭ 195 (+333.33%)
Mutual labels:  lab
cath-tools
Protein structure comparison tools such as SSAP and SNAP
Stars: ✭ 40 (-11.11%)
Mutual labels:  biology
TDAstats
R pipeline for computing persistent homology in topological data analysis. See https://doi.org/10.21105/joss.00860 for more details.
Stars: ✭ 26 (-42.22%)
Mutual labels:  ggplot2
bioicons
A library of free open source icons for science illustrations in biology and chemistry
Stars: ✭ 665 (+1377.78%)
Mutual labels:  biology
bioclipse.core
Bioclipse2 Core.
Stars: ✭ 21 (-53.33%)
Mutual labels:  biology
ColorMinePortable
ColorMinePortable
Stars: ✭ 37 (-17.78%)
Mutual labels:  lab
rockthemes
R colour palettes based on classic rock album covers.
Stars: ✭ 30 (-33.33%)
Mutual labels:  ggplot2
ggquiver
R package for quiver plots in 'ggplot2'
Stars: ✭ 38 (-15.56%)
Mutual labels:  ggplot2

platetools

Build Status cran-version conda-download Codecov branch Downloads

An R package for working with multi-well plates

Installation

CRAN:

install.packages("platetools")

conda:

conda install -c conda-forge r-platetools

GitHub (dev version):

remotes::install_github("swarchal/platetools")

Use

# example dataframe
df <- data.frame(vals = rnorm(384),
                 well = num_to_well(1:384, plate = 384))

raw_map(data = df$vals,
        well = df$well,
        plate = 384) +
    ggtitle("Example 384-well plate") +
    theme_dark() +
    scale_fill_viridis()

See the vignette for more examples.

Grammar
Prefix:
  • raw: raw values
  • hit: hit detection based on standard deviations
  • z: z-scored values
  • b: b-scored values
  • bhit: b-score values before hit detection
Suffix:
  • map: single plate map
  • grid: multple plate maps

e.g:
z_map: z-scored plate map
raw_grid: raw values, multiple plate maps
bhit_grid: b-scored values, coloured by hits, multiple plates

Maintainer

Scott Warchal - <scott.warchal (at) crick.ac.uk>

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].