--- title: How to use Well Plate Maker author: - name: Helene Borges affiliation: Universite Grenoble Alpes email: borges.helene.sophie@gmail.com abstract: > The **W**ell-**P**late **M**aker (WPM) is a shiny application deployed as an R package. Functions for a command-line/script use are also available. The WPM allows users to generate well plate maps to carry out their experiments while improving the handling of batch effects. In particular, it helps controlling the "plate effect" thanks to its ability to randomize samples over multiple well plates. The algorithm for placing the samples is inspired by the backtracking algorithm: the samples are placed at random while respecting specific spatial constraints. The use of WPM as well as the definition of configurable spatial constraints are described in the following sections. vignette: > %\VignetteIndexEntry{How to use Well Plate Maker} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} output: BiocStyle::html_document: toc: yes toc_float: true --- # Introduction This tutorial explains how to use the **Well Plate Maker** package. ## General principle To generate plate maps, the WPM uses an algorithm inspired from the backtracking algorithm. More precisely, WPM loops on the following actions until all of the samples are given a correct location: 1. Randomly choose a well on the plate 2. Randomly selects a sample 3. Check whether all the specified location constraints are met. If yes, place the sample accordingly This process allows for an experimental design by block randomization. ## Uses and associated input formats There are two ways to use the `WPM`: * [Command line](#R_commands) with appropriate R functions: for users who want to work with scripts or want to integrate the WPM into a pre-existing pipeline. * Through a [graphical interface (GUI)](#shiny_app): for users who do not necessarily have advanced R programming skills. __Important:__ Even in case of command line use, we strongly recommend to read the section about the [shiny app section](#shiny_app), as this is where all terms and concepts are detailed. | Input Format | Command line | WPM app | | --------------------- |:------------:| :------:| | CSV | yes | yes | | ExpressionSet | yes | no | | SummarizedExperiment | yes | no | | MSnSet | yes | no | # Getting started ## Prerequisites Make sure you are using a recent version of R ($\geq 4.0.0$). For Windows users who do not have the Edge browser, we recommend using the Chrome browser rather than Internet Explorer. ## How to install From GitHub (consider it a devel version): ```R devtools::install_github("HelBor/wpm", build_vignettes=TRUE) ``` From Bioconductor (release, stable version): ```R if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("wpm") ``` Instructions can also be found on the [Bioconductor page](http://bioconductor.org/packages/release/bioc/html/wpm.html) # How to use the WPM shiny application {#shiny_app} ## Load the WPM package ```R library(wpm) ``` ## Launch the shiny application Whether you use RStudio or simply work in an R console, the procedure remains the same to launch the shiny app: ```{r launch wpm, eval = FALSE} library(wpm) wpm() ``` If everything is in order, a new window will open in your default browser. If not, find the line written in the R console that looks like `Listening on http://127.0.0.1:8000`, and paste the URL in your web browser. WPM has 4 main tabs: __Home__, __Parameters__, __Results__ and __Help__. ## The __Home__ tab This tab briefly presents the aim of the app, shows the last package version, explains how to support our work by citing the associated article and gives contact information. ![The Home page when wpm is started](images/home.PNG) ## The __Parameters__ tab Overall the page is organized in two sections. The one on the left hand side contains all the configuration steps. It is divided into 7 main steps, detailed below. It is of the utmost importance to correctly specify all the constraints for generating the desired plate maps. The one on the right hand side summarizes the input parameters (tuned along the 7 steps of the left panel) as well as the chosen (empty) plate layout. The right section is automatically updated each time a parameter is changed in the left section. ![Parameters Panel](images/parametersPanel.PNG) ### Step 1: Upload the dataset First, you need to upload a *__Comma-separated values__* (.CSV) or a text (.txt) file. This file contains at least one piece of information: the list of the sample names. ```{r, echo=FALSE} knitr::kable(data.frame("Sample" = c("s1","s2","s3","s4"))) ``` It is also possible to provide a file containing several other variables describing the data, as in the example below: ```{r, echo=FALSE} knitr::kable( data.frame("Sample" = c("s1","s2","s3","s4"), "Type" = c("A","A","B","C"), "Treatment" = c("trt1","tr1","Ctrl","Ctrl")) ) ``` __IMPORTANT__ Please make sure the data in the CSV file respect the following SPECIFIC ORDER of columns: Sample names in the __first__ column, and other variables in the other columns, like the example below (if there are rownames, then the *Samples* Column must be the second in the file.): Sample;Type;Treatment s1;A;trt1 s2;A;trt1 s3;B;Ctrl s4;C;Ctrl > If this is your first time using the WPM, we recommend that you test the capabilities of the WPM using the **demo dataset** ("Load the demo dataset" tab). Second, you have to specify if there are quotes in your file or not *(If you are using the demo dataset, this is not a requested parameter.)*: The default is *none*, meaning that there is no __*"*__ or __*'*__ characters in your file. If you select the appropriate quote, then you will be able to: * check if your file does have a __header__ and __row names__. * select the appropriate __separator__ field. Default is semicolon (__*";"*__) Then, you can select one of the variables that you want to use as the grouping factor for WPM. This column will be renamed "Group" in the final dataset. ![Choose the grouping factor](images/groupVariable.PNG) The names you give to columns in your CSV file do not matter, because the WPM will create a new dataset having 3 fields: _"Sample"_ , _"Group"_ and _"ID"_. You will see your dataset on the right hand side of the window, as well as another dataset which will be used by WPM to generate the map(s). Each sample is assigned a unique ID, which will be used to name it onto the plate maps (for more details on the ID see the [Results section](#results_panel) ). ![Dataset vizualisation](images/toy2rightpanel.PNG) __IMPORTANT__ Please ensure that the dataset is correctly displayed in the right window and that the number of samples / groups is correct. If you see that the total number of samples is wrong, this means that you have not chosen the appropriate options among those described above, so that corrections are needed. ### Step 2: Choose a Project name This step is mandatory. It will be used in the plot titles as well as in the output file names. Moreover, it be concatenated with sample IDs to limit confusions. ### Step 3: Plate(s) dimensions {#plate-dims} Here you have to specify the plate dimensions and their number. Currently, WPM supports plate dimensions of 6, 24, 48, 96, 386, 1534 wells; as well as custom dimensions (where you manually specify the number of rows and columns). To the right of step 2 you can see an information box, warning you that WPM will distribute the samples in a balanced manner within the plates (if there are several of them). ![balanced way message](images/balanceInfobox.PNG) If you select a plate size compatible with the total number of samples, you will see two blue boxes and a plate plan appear on the right hand side. They summarize all the elements of your configuration. In the example below, we selected the pre-defined dimension of 96 wells and only one plate: ![plate dimensions example](images/platedimensions.PNG) The right side of the panel will summarize all these parameters: ![parameters summary](images/parametersCheck.PNG) This plot updates with each modification of the parameters, thus making it possible to see if one has made an error. __IMPORTANT__: If the WPM detects a problem or incompatibility between parameters, you will see an error message instead of the plate map, providing hints on the possible origin of the problem. ![Example of error message](images/exErrorMsg.PNG) ### Step 4: Forbidden wells {#forbidden_wells} In this step are listed the __Forbidden wells__, if any (optional): > A __Forbidden well__ will not be filled with any kind of sample, either because the user does not want to (*e.g.* plate corners in case of non-uniform heat distribution), or because of material constraints (*e.g.* dirty wells, broken pipettes). You fill the text input with the coordinates of the wells (a combination of letters and numbers, as in the example below): ![Example of forbidden wells listed in the text input](images/forbiddenEx1.PNG) You will see the plot updated in the right section: ![Updated plot with forbidden wells](images/forbiddenEx2.PNG) The wells filled with forbidden wells will have the *"forbidden"* ID in the final dataset. On the resulting map, these wells will be colored in red. ### Step 5: Buffers {#buffers} At this stage you can specify the wells which correspond to buffers, if there are any. > A __buffer well__ corresponds to a well filled filled with solution but without biological material (*e.g.* to avoid/check for cross-contamination). Five patterns are available for placing the buffers: **1)** *no buffers*: there will be no buffer on the plate(s). **2)** *Per line*: Automatically places buffers every other row. You can choose to start placing in even or odd row. ![Per line mode example with even option](images/bufferLine.PNG) **3)** *Per column*: Automatically places buffers every other column. You can choose to start placing in even or odd column. ![Per Column mode example with even option](images/bufferColumn.PNG) **4)** *Checkerboard*: Automatically places buffers like a checkerboard. ![Checkerboard mode](images/bufferCheckerboard.PNG) **5)** *Choose by hand*: It is the same procedure as for specifying forbidden wells. #### Specify the neighborhood constraints {#neighborhood} These are the spatial constraints that the WPM needs to respect when designing the plates. Currently, 4 types of them are proposed. Note that the patterns are available only if they are compatible with the chosen buffer pattern. The question here is: Should samples from the same group be found side by side? Schematically, the spatial constraints can be summarized as follows (the blue well is the current well evaluated by WPM; The wells in green are those assessed for compliance with the chosen constraint. The blue well therefore has the possibility (but not the obligation since the filling of the plate is done randomly) to be filled with a sample belonging to the same group as the samples in the wells evaluated. NS (North South): samples from the same group will not be placed side by side column-wise. ![North-South constraint](images/NCns.PNG) WE (West East): samples from the same group will not be placed side by side row-wise. ![East-West constraint](images/NCew.PNG) NSEW (North South East West): samples from the same group will not be placed side by side either row-wise or column-wise. ![North-South-East-West constraint](images/NCnsew.PNG) None: samples from the same group can be placed anywhere, including side by side. ![No constraint](images/NCnone.PNG) The wells filled with buffer solution will have the *"buffer"* ID in the final dataset. On the resulting map, these wells will be colored in grey. ### Step 6: Fixed samples {#fixed_wells} At this stage you can specify the wells which correspond to fixed samples, if there are any. > A __fixed sample__ corresponds to a quality control sample or standard. The precise location of these samples must be controlled by the researcher. This step works in exactly the same way as the [forbidden well](#forbidden_wells) step. The only difference is that the fixed samples will appear in **black** on the plot. The fixed samples will have the *"fixed"* ID in the final dataset. ### Number of iterations {#iterations_number} Choose a **maximum number of iterations** to find a solution, then start the WPM by clicking the **"start WPM"** button. If the samples do not have a group, then the samples will be placed completely randomly on the plates. If there are groups, the WPM will use an algorithm inspired by the backtracking algorithm (to place the samples in the wells while respecting the specified constraints). The default value is 20, but if your configuration is somewhat complex, then it is advised to increase the number. An *iteration* corresponds to an attempt by the WPM to find a solution. The algorithm used is not fully backtracked: the WPM stops as soon as there are no more possibilities to finalize the current solution; then, it starts back from scratch the plate map, until a solution that fits all the constraints is found. With this approach, not all possible combinations are explored, but it does reduce execution time. When you start the computations, a progress bar appears. If the WPM finds a solution, you will see this pop in the browser, inviting you to go to the [Result Panel](#results_panel): ![WPM succeeded](images/wpmSuccess.PNG) If the WPM fails, an error message will appear, prompting you to try again: ![WPM failed](images/wpmFailed.PNG) __IMPORTANT__ If after launching WPM and generating the results, you realize that one or more parameters do not work, you can always return to the "Parameters" tab and modify them. The data displayed in the "Results" tab will not be automatically changed, you will have to click again on the "start WPM" button to take into account the new changes. __NOTE__ If you want to create a new plate plan for another project, press `ctrl + f5`, this will reset the application. --- ## The __Results__ tab {#results_panel} The Result panel allows you to look at the final dataset containing the well chosen for each sample, as well as a plot of your final well-plate map. Dataframe and plots are downloadable separately. ![Final dataframe](images/final_dataset.PNG) The dataset contains 7 columns giving all the information needed to implement the experiment: The sample name with its corresponding group; its ID for the plot; the well chosen; the row and the column to which the well corresponds to; and the number of the plate on which the sample must be placed. This tab also shows the generated plot(s) of the final well-plate map(s). One color corresponds to one group label. The numbers are the IDs used in place of the sample names which could be too long to keep the plot readable. Below is an example of 80 samples distributed in 10 groups (of unequal sizes) and placed on a 96 well-plate, with the North-South-East-West neighborhood constraint: ![Plate map](images/plot1.png) # Using the WPM in command lines {#R_commands} As explained before, the WPM can also be used through R command lines by following these steps: 1. Cast the dataset into the correct format 2. Run the WPM 3. Visualize the final plate plan(s) ## Prepare the dataset The user can work with CSV files, `ExpressionSet`, `MSnSet` or `SummarizedExperiment`objects. The first step is to create a dataframe containing all the necessary information for the WPM to work correctly. Notably, it is needed to specify which column in the file corresponds to the grouping factor, if any. ### Starting from a CSV file: ```{r convert CSV file, eval = FALSE} imported_csv <- wpm::convertCSV("path-to-CSV-file") ``` ### Starting from an `ExpressionSet` or `MSnSet` object ```{r create an MSnSet object} sample_names <- c("s1","s2","s3","s4", "s5") M <- matrix(NA, nrow = 4, ncol = 5) colnames(M) <- sample_names rownames(M) <- paste0("id", LETTERS[1:4]) pd <- data.frame(Environment = rep_len(LETTERS[1:3], 5), Category = rep_len(1:2, 5), row.names = sample_names) rownames(pd) <- colnames(M) my_MSnSet_object <- MSnbase::MSnSet(exprs = M,pData = pd) ``` Then, run `convertESet` by specifying the object and the variable to use as grouping factor for samples: ```{r convert ESet/MSnSet object} df <- wpm::convertESet(my_MSnSet_object, "Environment") ``` ### Starting from a `SummarizedExperiment` ```{r convert SummarizedExperiment object} nrows <- 200 ncols <- 6 counts <- matrix(runif(nrows * ncols, 1, 1e4), nrows) colData <- data.frame(Treatment=rep(c("ChIP", "Input"), 3), row.names=LETTERS[1:6]) se <- SummarizedExperiment::SummarizedExperiment(assays=list(counts=counts), colData=colData) df <- wpm::convertSE(se, "Treatment") ``` For more details about the functions, please use `?wpm::` R command. ## Run the WPM The next step is to run the `wrapperWPM` function by giving it all the parameters needed: * The dataframe generated with `convertXXX` functions * The [plate dimensions](#plate-dims) * The number of plates to fill * The [forbidden wells](#forbidden_wells) (wells that must not be filled at all for the experiment) * The [buffer wells](#buffers) (wells where there will be solution without biological material) * The position of [fixed samples](#fixed_wells) * The [spatial constraint](#neighborhood) to be respected when randomizing the samples * The [maximal number of attempts](#iterations_number) for the WPM to find a valid solution ### When using a CSV file In the running toy example (see code shunks around), we do not specify any buffer well. ```{r run wpm with a CSV file, eval=FALSE} wpm_result <- wpm::wrapperWPM(user_df = imported_csv$df_wpm, plate_dims = list(8,12), nb_plates = 1, forbidden_wells = "A1,A2,A3", fixed_wells = "B1,B2", spatial_constraint = "NS") ``` ### When using an R-structured dataset (`ExpressionSet`, `MSnSet` or `SummarizedExperiment`) ```{r run wpm} wpm_result <- wpm::wrapperWPM(user_df = df, plate_dims = list(8,12), nb_plates = 1, forbidden_wells = "A1,A2,A3", fixed_wells = "B1,B2", spatial_constraint = "NS") ``` For more details, see `?wpm::wrapperWPM` ## Plate map visualization The final step is to create a visual output of the generated plate plan(s) using the `drawMap()` function: ```{r visualize plate map} drawned_map <- wpm::drawMap(df = wpm_result, sample_gps = length(levels(as.factor(colData$Treatment))), gp_levels = gp_lvl <- levels(as.factor(colData$Treatment)), plate_lines = 8, plate_cols = 12, project_title = "my Project Title") ``` ```{r see the map} drawned_map ``` For more details, see `?wpm::drawMap` Plots can be saved with: ```{r save map plot, eval=FALSE} ggplot2::ggsave( filename = "my file name", plot = drawned_map, width = 10, height = 7, units = "in" ) ``` __IMPORTANT__ If multiple plates where specified, then `wpm_result` will be a list containing a dataset **for each generated plate**. Then, each of them can be accessed with `wpm_result[[numberOfThePlate]]`: ```{r, eval = FALSE} numberOfThePlate <- 1 drawned_map <- wpm::drawMap(df = wpm_result[[numberOfThePlate]], sample_gps = length(levels(as.factor(pd$Environment))), gp_levels = gp_lvl <- levels(as.factor(pd$Environment)), plate_lines = 8, plate_cols = 12, project_title = "my Project Title") ``` # Citing Our work > Borges, H., Hesse, A. M., Kraut, A., Couté, Y., Brun, V., & Burger, T. (2021). Well Plate Maker: A user-friendly randomized block design application to limit batch effects in largescale biomedical studies. Bioinformatics ([link to the publication](https://academic.oup.com/bioinformatics/advance-article-abstract/doi/10.1093/bioinformatics/btab065/6128508)). # SessionInfo ```{r SessionInfo} sessionInfo() ```