R/QFeaturesImport.R
QFeaturesImport.Rd
QFeaturesImport is a simple graphical interface to import bulk and single-cell proteomic data.
The app use the readQFeatures
function from the QFeatures package to convert simple table (single or multiple, csv or tsv) to a QFeatures object.
The app is divided into mutliple sections:
The first section (Import) of the app allow to convert tables to a QFeatures object.
The second section (Pre-processing) of the app allow to perform some optional pre-processing steps.
QFeaturesImport(sample_table = NULL, input_table = NULL)
A dataframe that contains the sample table.
A dataframe that contains the input table.
Return the "QFeaturesImport" shiny app object.
library(QFeaturesGUI)
data("sampleTable")
data("inputTable")
app <- QFeaturesImport(sample_table = sampleTable, input_table = inputTable)
if (interactive()) {
shiny::runApp(app)
}