How to delete rows with the same number in the bed file in usegalaxy

 How to delete rows with the same number in the bed file in usegalaxy
 (If the number of the second column is equal to the number of the third column, delete that row)
 which tool could be useful?
input:
chr1 10 20 
chr1 10 10 
chr1 15 20 
chr1 15 30 
chr1 30 30

output:
chr1 10 20 
chr1 15 20 
chr1 15 30

HI @agrieng3,
you can use the Filter data on any column using simple expression tool, with the condition c2 != c3.

Thank you, very Good :+1: