Learn R Programming

LymphoSeq (version 1.0.2)

similarityScore: Similarity score

Description

Calculates the similarity score of two samples.

Usage

similarityScore(sample1, sample2)

Arguments

sample1
A data frame consisting of frequencies of antigen receptor sequences. "aminoAcid" and "count" are a required columns.
sample2
A data frame consisting of frequencies of antigen receptor sequences. "aminoAcid" and "count" are a required columns.

Value

Returns the similarity score, a measure of the amount of overlap between two samples. The value ranges from 0 to 1 where 1 indicates the sequence frequencies are identical in the two samples and 0 indicates no shared frequencies.

See Also

similarityMatrix

Examples

Run this code
file.path <- system.file("extdata", "TCRB_sequencing", package = "LymphoSeq")

file.list <- readImmunoSeq(path = file.path)

productive.aa <- productiveSeq(file.list, aggregate = "aminoAcid")

similarityScore(productive.aa[["TCRB_Day32_Unsorted"]], productive.aa[["TCRB_Day83_Unsorted"]])

Run the code above in your browser using DataLab