pybedtools.filenames.list_example_files

pybedtools.filenames.list_example_files()[source]

Returns a list of files in the examples dir. Choose one and pass it to example_filename() to get the full path to an example file.

Example usage:

>>> from pybedtools import BedTool
>>> choices = list_example_files()
>>> assert 'a.bed' in choices
>>> bedfn = example_filename('a.bed')
>>> mybedtool = BedTool(bedfn)