Hi,

I am trying to remove "duplicate permutations". For instance:

ID source target
1 A B
2 A C
3 B C
4 B A
5 C B

Here, I would like to remove lines 4 and 5, because they are duplicates of lines 1 and 3. Any suggestion on how to do that?