Description Usage Arguments Details Value See Also Examples
Checks whether targets file contains the required columns.
1 | validateTargets(targets)
|
targets |
A data.frame containing the target information. See
|
validateTargets
checks that the targets dataframe contains
the three columns below:
name of the file containing the count data for the sample
experimental treatment or condition that was applied
replicate identifier - can be numeric or character
If the target dataframe contains the necessary columns,
validateTargets
returns TRUE
.
If valid, returns TRUE
.
Other target functions: importTargets
Other import functions: annotateDataset
,
importAnnotation
,
importConfig
, importTargets
,
readCountData
, validateConfig
1 2 3 4 5 | targets <- data.frame( 'filename'=c('file1','file2','file3','file4'),
'condition' = rep(c('A','B'), times=2),
'replicate' = c(1,2,1,2))
validateTargets(targets)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.