-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparse_magellan_spectrum.Rd
41 lines (38 loc) · 1.12 KB
/
parse_magellan_spectrum.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/parse_magellan_spectrum.R
\name{parse_magellan_spectrum}
\alias{parse_magellan_spectrum}
\title{Parse Tecan Spark/Magellan data from absorbance spectrum data}
\usage{
parse_magellan_spectrum(
data_csv,
metadata_csv,
wellstart = "A1",
wellend = "H12"
)
}
\arguments{
\item{data_csv}{path to CSV file from Tecan Spark plate reader}
\item{metadata_csv}{path to CSV file containing metadata}
\item{wellstart}{character string representing first well recorded in data
file. Defaults to "A1".}
\item{wellend}{character string representing last well recorded in data file.
Defaults to "H12".}
}
\value{
a data.frame containing the parsed plate reader data
}
\description{
Parses absorbance spectrum data exported from a Tecan Spark plate reader
using Magellan software. Parsing consists of data extraction, data tidying,
and data joining to relevant metadata.
}
\examples{
\dontrun{
parsed_data <- parse_magellan_spectrum(
data_csv = "data/20210104_data.csv",
metadata_csv = "data/20210104_metadata.csv",
wellstart = "A1", wellend = "H12"
)
}
}