Description Usage Arguments Value Examples
Read input training data.
1 |
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.
1 2 3 4 5 6 7 8 9 10 11 | 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")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.