inst_filter | R Documentation |
Function to filter Level 3 data from LINCS by specific conditions, such as compound concentrations and treatment times.
inst_filter(
meta,
pert_type = "trt_cp",
dose = 10,
dose_unit = "um",
time = 24,
time_unit = "h"
)
meta |
tibble containing experimental conditions of LINCS data |
pert_type |
perturbation type, 'trt_cp' refers to treatment ('trt') with compound ('cp'). Description of other perturbation types ('pert_type') can be found in the GEO CMap LINCS User Guide v2.1 URL: https://docs.google.com/document/d/1rbHBy3DKekFm9lZouRG-ZcfLmCsfkUKzGPxxjqxPlYw/edit# |
dose |
concentration of compound used for treatment, needs to match elements in 'pert_dose' column of 'meta' |
dose_unit |
unit of dose of compound treatment, needs to match elements in 'pert_dose_unit' column of 'meta' |
time |
compound treatment time, needs to match elements in 'pert_time' column of 'meta' |
time_unit |
unit of time, needs to match elements in 'pert_time_unit' column of 'meta' |
tibble
meta <- data.frame(pert_dose=c(2,4,10), pert_dose_unit="um",
pert_time=24, pert_time_unit="h",
pert_type="trt_cp", pert_iname=c("p1","p2","p3"),
cell_id="MCF7")
inst_filter(meta)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.