mergePM {dvir}R Documentation

Identity and merge matching PM samples

Description

Computes the direct matching LR of each pair of samples, and merges the matching samples.

Usage

mergePM(
  pm,
  threshold = 10000,
  method = c("mostcomplete", "first", "combine"),
  verbose = TRUE
)

Arguments

pm

A list of typed singletons.

threshold

LR threshold for positive identification.

method

A keyword indicating how to merging matching samples. See Details.

verbose

A logical.

Details

The available methods for merging matched samples are:

Value

A list with the following entries:

See Also

directMatch().

Examples


pm = singletons(c("V1", "V2", "V3")) |> 
  addMarker(V1 = "1/1", V2 = "2/2", V3 = "1/1", 
            afreq = c("1" = 0.01, "2" = 0.99), name = "L1")

mergePM(pm)


[Package dvir version 3.2.1 Index]