Perform set operations on two MAFs.

intersect_maf(maf1, maf2, set_returned = "maf1_only")

Arguments

maf1

First list of MAFs.

maf2

Second list of MAFs.

set_returned

List of MAFs that doesn't share the same start positions as the other list of MAFs. Accepted commands are; "maf1_only" and "maf2_only", default is "maf1_only".

Value

Set of MAFs with start positions that don't match the start positions in the other supplied MAF file.

Details

Perform set operations on two MAFs.

Examples

if (FALSE) {
intersected_mafs_l1 = intersect_maf(maf_list1, maf_list2, "maf1_only")
intersected_mafs_l2 = intersect_maf(maf_list1, maf_list2, "maf2_only")
}