clean up directory by having separate folders for:
data (mostly stuff that is downloaded from other places)
outputs (probably generated by CLI or API)
figs (generated by CLI)
e.g.
cool_file = cooltools.download_data("HFF_MicroC", cache=True, data_dir='./')
can be changed to
cool_file = cooltools.download_data("HFF_MicroC", cache=True, data_dir='./data')
clean up directory by having separate folders for:
e.g.
cool_file = cooltools.download_data("HFF_MicroC", cache=True, data_dir='./')
can be changed tocool_file = cooltools.download_data("HFF_MicroC", cache=True, data_dir='./data')