ClusTCR | R Documentation |
Creates ClusTCR matrix This function identifies similar CDR3 amino acid sequences based on the same length and V_gene
ClusTCR(my_file, allele = NULL, v_gene = "v_call")
my_file |
uploaded file with junction_aa (CD3 sequences), variable gene. |
allele |
The allele, if present as *00 will be removed if the user requires it. |
v_gene |
Variable gene column name |
X by Y matrix of structurally related CDR3 sequences.
# Example usage of ClusTCR function with a stored file
example_file <- read.csv(system.file("extdata", "my_data.csv", package = "ClusTCR2"))
# Perform clustering using ClusTCR function
step1 <- ClusTCR(example_file, allele = FALSE)
# Print the result
print(step1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.