searchDB | R Documentation |
Search for published T cell receptor beta CDR3 amino acid sequences with known antigen specificity in a list of data frames.
searchDB(study_table, dbname = "all", chain = "trb")
study_table |
A tibble generated by the LymphoSeq2 functions
|
dbname |
A vector of database source to search for the antigenic
specificity of a T-cell or B-cell in the dataset: |
chain |
The receptor chain type to search in the public databases:
|
Returns the input table annotated with the any recorded antigenic specificity from the public databases.
file_path <- system.file("extdata", "TCRB_sequencing",
package = "LymphoSeq2")
study_table <- LymphoSeq2::readImmunoSeq(path = file_path, threads = 1)
study_table <- LymphoSeq2::topSeqs(study_table, top = 100)
amino_table <- LymphoSeq2::productiveSeq(study_table = study_table,
aggregate = "junction_aa")
top_seqs <- LymphoSeq2::topSeqs(productive_table = amino_table, top = 1)
LymphoSeq2::searchDB(study_table = top_seqs, dbname = "all", chain = "trb")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.