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)

Arguments

sample_table

A dataframe that contains the sample table.

input_table

A dataframe that contains the input table.

Value

Return the "QFeaturesImport" shiny app object.

Examples

library(QFeaturesGUI)

data("sampleTable")
data("inputTable")
app <- QFeaturesImport(sample_table = sampleTable, input_table = inputTable)

if (interactive()) {
    shiny::runApp(app)
}