- nrows, ncols
Number of rows and columns in the plate data
- block_row_names, block_col_names
Names of the rows, columns
of the plate blockmeasures data
- block_name_header
The name of the field containing the
block_names
- output_format
One of c("blocks", "blocks_pasted", "wide", "tidy")
denoting the format of the resulting data.frame
For easy merging with tidymeasures, leave as default
of 'tidy'.
For human-readability to confirm design
is correct, choose 'blocks' or 'blocks_pasted'.
For writing to block-shaped file(s), choose 'blocks' or
'blocks_pasted'.
- wellnames_numeric
If block_row_names
or block_col_names
are not specified, then names will be generated
automatically according to wellnames_numeric
.
If wellnames_numeric
is TRUE, rows and columns
will be numbered with "R" and "C" prefixes, respectively.
If wellnames_numeric
is FALSE, rows will be
lettered A through Z, while columns will be numbered
- wellnames_sep
A string used when concatenating rownames and column
names to create well names, when
output_format = "wide"
or
output_format = "tidy"
- wellnames_colname
Header for newly-created column containing the
well names, when output_format = "tidy"
- colnames_first
When wellnames are created for
output_format = "wide"
or
output_format = "tidy"
by paste-ing the
rownames and column names, should the column names
come first.
- lookup_tbl_start
Value in the lookup table for the split pattern values
that corresponds to the first value in the vector.
Lookup table by default is
c(1,2,...,8,9,A,B,...Y,Z,a,b,...,y,z). If,
for example, lookup_tbl_start = "A", then the lookup
table will now be c(A,B,...Y,Z,a,b,...,y,z)
- pattern_split
character to split pattern elements provided in
...
by, if they're not already a vector
- ...
Each ...
argument must be named, and must be a list with
five elements:
1. a vector of the values
2. a vector of the rows the pattern should be applied to
3. a vector of the columns the pattern should be applied to
4. a string or vector denoting the pattern in which the
values should be filled into the rows and columns specified.
If it's a string, will be split by pattern_split
.
Pattern will be used as the indices of the values vector.
0's refer to NA. The pattern will be recycled as necessary
to fill all the wells of the rows and columns specified.
5. a logical for whether this pattern should be filled byrow