createQFeatures | R Documentation |
QFeatures
from text file.Creates an object of class QFeatures
from a
single tabulated-like file for quantitative and meta-data and a dataframe
for the samples description.
createQFeatures( data = NULL, file = NULL, sample, indQData, keyId = "AutoID", indQMetadata = NULL, force.na = TRUE, typeDataset, parentProtId = NULL, analysis = "foo", processes = NULL, typePipeline = NULL, software = NULL, name = "original" )
data |
The name of a tab-separated file that contains the data. |
file |
|
sample |
A dataframe describing the samples (in lines). |
indQData |
A vector of string where each element is the name
of a column in designTable that have to be integrated in
the |
keyId |
A |
indQMetadata |
xxxxxxxxxxx |
force.na |
A |
typeDataset |
A string that indicates whether the dataset is about |
parentProtId |
A |
analysis |
A |
processes |
A vector of A |
typePipeline |
A |
software |
A |
name |
A |
An instance of class QFeatures
.
Samuel Wieczorek
{ data.file <- system.file("extdata", "Exp1_R25_pept.txt", package="DaparToolshedData") data <- read.table(data.file, header=TRUE, sep="\t", as.is=TRUE, stringsAsFactors = FALSE) sample.file <- system.file("extdata", "samples_Exp1_R25.txt", package="DaparToolshedData") sample <- read.table(sample.file, header=TRUE, sep="\t", as.is=TRUE, stringsAsFactors = FALSE) ft <- createQFeatures(data = data, sample = sample, indQData = 56:61, keyId = 'Sequence', analysis = 'test', indQMetadata = 43:48, typeDataset = 'peptide', parentProtId = 'Protein_group_IDs', forceNA = TRUE, software = 'maxquant') }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.