-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshow_uc_data.Rd
46 lines (43 loc) · 1.41 KB
/
show_uc_data.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
42
43
44
45
46
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/show_kinetic_data.R
\name{show_uc_data}
\alias{show_uc_data}
\title{Deuterium uptake curve data}
\usage{
show_uc_data(uc_dat, theoretical = FALSE, fractional = FALSE)
}
\arguments{
\item{uc_dat}{calculated kinetic data by \code{\link{calculate_kinetics}}
or \code{\link{calculate_peptide_kinetics}} or
\code{\link{create_kinetic_dataset}} function}
\item{theoretical}{\code{logical}, indicator if values are
calculated using theoretical controls}
\item{fractional}{\code{logical}, indicator if values are shown
in fractional form}
}
\value{
a \code{\link{data.frame}} object
}
\description{
Present deuterium uptake curve data
}
\details{
The function \code{\link{show_uptake_data}} generates a subsets
of the uc_dat based on selected parameters.
The numerical values are rounded to 4 places. The names of columns
are changed to user-friendly ones.
}
\examples{
dat <- read_hdx(system.file(package = "HaDeX", "HaDeX/data/KD_180110_CD160_HVEM.csv"))
uc_dat <- calculate_kinetics(dat, protein = "db_CD160",
sequence = "INITSSASQEGTRLN",
state = "CD160",
start = 1, end = 15,
time_0 = 0.001, time_100 = 1440)
show_uc_data(uc_dat)
}
\seealso{
\code{\link{read_hdx}}
\code{\link{calculate_kinetics}}
\code{\link{calculate_peptide_kinetics}}
}