Skip to contents

Create a 24-column key with 6 values repeated over 24 plate columns. Each of the 6 values is repeated over 3x +RT Techreps and 1x -RT.

Usage

create_colkey_6_in_24(...)

Arguments

...

Vectors of length 6 describing well contents, e.g. sample_id or target_id

Value

tibble (data frame) with 24 rows, and columns well_col, prep_type, tech_rep, and supplied values.

Details

This helps to create plate layouts with standard designs.

Examples

create_colkey_6_in_24(sample_id=LETTERS[1:6])
#> # A tibble: 24 × 4
#>    well_col prep_type tech_rep sample_id
#>    <fct>    <fct>     <fct>    <chr>    
#>  1 1        +RT       1        A        
#>  2 2        +RT       1        B        
#>  3 3        +RT       1        C        
#>  4 4        +RT       1        D        
#>  5 5        +RT       1        E        
#>  6 6        +RT       1        F        
#>  7 7        +RT       2        A        
#>  8 8        +RT       2        B        
#>  9 9        +RT       2        C        
#> 10 10       +RT       2        D        
#> # ℹ 14 more rows