View source: R/read_fluorstar_data.R
read_fluorstar_data | R Documentation |
This function receive one output file from fluorStar microplate reader and generate a tibble dataframe.
read_fluorstar_data(file)
file |
The path to a proper .txt file formatted by the fluorStar machine. |
Returns a tibble data frame with four columns. The first column is "Wells" this containe the names for each well (A01, A02..). The second column represent "Sample" which identified the wells, this part of the standard output of fluorStar machines. The third column is "Time", that represents the timestep at which the machine measures. The fourth column contained the measured values. Depending on the experiment, this can be fluorescence, absorbance between others.
file_path <- system.file("extdata", "test_fluorstar_fluorescence_data.txt", package = "mpxtractor" ) # Data is store as a tibble data <- read_fluorstar_data( file = file_path ) # Now data is tidy head(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.