Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def drop(self, drop=None, like=None):
"""Drop column(s) from the PyRanges object.
If no arguments are given, all the columns except Chromosome, Start, End and Strand are
dropped. To drop Strand, the drop_strand argument needs to be given.
"""
from pyranges.methods.drop import _drop
return _drop(self, drop, like)