Description Objects from the Class Slots Methods Notes Author(s) See Also Examples
This is a class to represent a set of samples.
Objects can be created by the function ImportSamples or by calling
the object generator function.
new("tsSample", Names = [sample names], CDFfiles = [list of CDF file names],
RIfiles = [list of RI file names], CDFpath = [CDF files path],
RIpath = [RI files path], days = [measurement days],
data = [additional sample information], ftype = [RI file format])
Names:"character", the sample names.
CDFfiles:"character", the list of CDF file names.
RIfiles:"character", the list of RI file names.
CDFpath:"character", CDF files path. Deprecated. See Notes.
RIpath:"character", RI file path. Deprecated. See Notes.
days:"character", measurement days.
data:"data.frame", additional sample information.
[signature(x = "tsSample"): Selects a subset of samples.
$namesignature(x = "tsSample"): Access column name of sampleData slot.
CDFfilessignature(obj = "tsSample"): list of CDF files.
RIfilessignature(obj = "tsSample"): list of RI files.
RIpathsignature(obj = "tsSample"): The RI file path.
CDFpathsignature(obj = "tsSample"): The CDF file path.
lengthsignature(x = "tsSample"): number of samples.
sampleDatasignature(obj = "tsSample"): additional sample information.
sampleDayssignature(obj = "tsSample"): measurement days.
sampleNamessignature(obj = "tsSample"): sample names. The names must be unique
showsignature(object = "tsSample"): the show funtion.
fileFormatsignatureobj = "tsSample": Sets or gets the RI file format.
Options are either "binary" or "text". See note below.
The method fileFormat only changes the internal information
of the file type and not the files themselves. To actually
change the files, use the functions bin2text
and text2bin.
Note that the slot Names (i.e., the sample names/identifiers) must
be unique. This allows sample selection by using sample identifiers as well
as indices. Also, if columns are selected, the output will be either a vector or
a data.frame depending on whether one or more columns were selected.
More over, it is required that the rownames of the data slot are
equal to the sample names slots. This is handled internally. If the Names
are not provided, then the CDF files are used instead (directories and
extension are removed). In this case the file names must be unique.
The slots CDFpath and RIpath are deprecated and not used.
However, the methods to set or get the paths will still work. The file
paths is stored on the CDFfiles and RIfiles slots.
Alvaro Cuadros-Inostroza, Matthew Hannah, Henning Redestig
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | showClass("tsSample")
# get a list of CDF files from a directory
require(TargetSearchData)
CDFpath <- system.file("gc-ms-data", package = "TargetSearchData")
cdffiles <- dir(CDFpath, "cdf", full=TRUE)
# define the RI file path
RIpath <- "."
# create a tsSample object with minimal info
sampleDescription <- new("tsSample", CDFfiles = cdffiles, RIpath = RIpath)
## ## ## ## ##
# Alternatively, the CDF path and CDF file names can be given separatedly
# (this was the old TargetSearch behavior)
cdffiles <- basename(cdffiles)
# create the sample object
sampleDescription <- new("tsSample", CDFfiles = cdffiles, CDFpath = CDFpath, RIpath = RIpath)
## ## ## ## ##
# More parameters could be defined:
# define the RI files and the RI path
RIfiles <- sub("cdf$", "txt", paste("RI_", cdffiles, sep = ""))
RIpath <- "."
# get the measurement days (the four first numbers of the cdf files, in this
# example)
days <- substring(cdffiles, 1, 4)
# sample names (must be unique)
smp_names <- paste("Sample", 1:length(sampleDescription), sep = "_")
# add some sample info
smp_data <- data.frame(CDF_FILE =cdffiles, GROUP = gl(5,3))
# create the sample object
sampleDescription <- new("tsSample", Names = smp_names, CDFfiles = cdffiles, CDFpath = CDFpath,
RIpath = RIpath, days = days, RIfiles = RIfiles, data = smp_data)
# chang the file paths (relative to the working path)
CDFpath(sampleDescription) <- "my_cdfs"
RIpath(sampleDescription) <- "my_RIs"
# change sample Names
sampleNames(sampleDescription) <- sprintf("S%03d", 1:length(sampleDescription))
## sample subsetting.
# select samples 1, 3 and 5
(sampleset <- sampleDescription[c(1, 3, 5)])
# or use sample IDs
(sampleset <- sampleDescription[c("S001", "S003", "S005")])
## extract columns
# select column 'GROUP'
(group <- sampleDescription$GROUP)
# or
(group <- sampleDescription[, 'GROUP'])
## change the measurement days (sets the same day for all samples)
sampleDays(sampleDescription) <- "1"
## Note: the length of `measurement days` variable must be 1 or equal
## to the number of samples, otherwise an error will be thrown
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.