Input data requirements

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

The input data required for greatR is a data frame that contains gene expression time-course data with all replicates. The illustrated diagram below shows the required structure of the input.


knitr::include_graphics("figures/all_data_illustration_new.png")


This data frame must contain reference and query expression data which users wish to compare, and the following five columns:

Below we can see a real example of how the input data should look like:

# Load a data frame from the sample data
b_rapa_data <- system.file("extdata/brapa_arabidopsis_all_replicates.csv", package = "greatR") |>
  data.table::fread()

b_rapa_data[, .SD[1:2], by = accession][, .(gene_id, accession, timepoint, expression_value, replicate)] |>
  knitr::kable()


Try the greatR package in your browser

Any scripts or data that you put into this service are public.

greatR documentation built on July 26, 2023, 5:43 p.m.