Read input training data.
readTrn(list, field, count, copyrange, posOrNeg)
list | Vector of training samples. |
---|---|
field | String containing the column or columns (space-delimited) of interest. |
count | String containing the column name for colontype counts. |
copyrange | Integer of the minimum copy of a sequence, within a sample, to be considered. |
posOrNeg | String indicating whether the data is negative or positive. |
Dataframe containing unique sequences and their frequencies in the samples.
FIELD <- "vGeneName aminoAcid jGeneName" COUNT <- "copy" P_CUTOFF <- 0.1 MIN_PUBLIC <- 2 COPY_RANGE <- "1 99" listPos <- tsvDir(system.file("extdata", "Post", package="iCAT")) listNeg <- tsvDir(system.file("extdata", "Pre", package="iCAT")) naive <- readTrn(listNeg, FIELD, COUNT, COPY_RANGE, "naive") vaccs <- readTrn(listPos, FIELD, COUNT, COPY_RANGE, "vacc")