Description Usage Arguments Value Input file specification Note See Also Examples
View source: R/read-sample-submision-input-files.R
Read SomaLogic Sample Submission Slides File
1 | readSlides(file = "slides.csv")
|
file |
A string denoting the path to an input CSV file. See Input file specification section. |
A data.table
with 96 rows and 5 columns.
The integers 1 to 96.
The slide IDs from the input file.
Integers from 1 to 8 denoting the sample position for the slide.
A letter followed by a number, constructed from the Subarray ("A" for 1, "B" for 2, etc.) and the slide number from 1 to 12.
Always 40.
A CSV file without a header line containing up to twelve rows and one column as follows.
Slide IDs, each 12 digits long.
For partially filled plates (where there are less than 96 samples), there isn't enough information in the file to programmatically determine which slide IDs correspond to which sample IDs. In this case please manually create the slides dataset.
readControls
, readComments
, and
readSamples
for reading other submission forms and
writeSampleSubmissionForm
for usage examples.
1 2 3 4 5 6 7 | # See ?writeSampleSubmissionForm for a more complete example
withr::with_dir(
system.file("extdata", package = "readat"),
{
(slides <- readSlides())
}
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.