An R package to be used for updating and exploring NGS data generated with the AVENIO pipeline at AUH.
This package is only relevant for people working in the Boe Sandahl Sørensen group at Aarhus University Hospital. The package requires the ability to access data only members of the BSS group have the privileges to.
Use devtools to install the most recent version of AvenioUpdate from the GitHub repository.
if (!require(devtools)) install.packages('devtools')
library(devtools)
devtools::install_github("CTrierMaansson/AvenioUpdate")
To check if the package has been installed correctly run the following command:
library(AvenioUpdate)
result_stats_Info()Which will output a data.frame containing information about some of the
information available using the result_stats() function.
As of early 2025 the package contains two main functions
(add_run_to_list() & create_simple_output()) which are used to update the
Avenio results and get an overview of the results for a single patient.
In addition, the package contains five smaller functions which are
used to get some statistics on the data we have collected and to make sure the
results file is updated correctly.
Example of how to use the package:
# Reading the results file
results <- readRDS("/PATH/TO/AVENIO_results_patients.rds")
# Example path to the specific run
test_path <- "/PATH/TO/AVENIO_results/"
# Updating the results file
results <- add_run_to_list(master_list = results,
Directory = test_path)A html manual has been created to describe how to use the package and explain how the individual functions work.
The manual is rendered using AvenioUpdate_manual.Rmd
If you experience any issues when using the package I refer to the issues page or write Christoffer an e-mail at ctm@clin.au.dk
-
Christoffer Trier Maansson, Department of Clinical Biochemistry, Aarhus University Hospital, Denmark
-
Lærke Rosenlund Nielsen, Department of Clinical Biochemistry, Aarhus University Hospital, Denmark
