how to get just the file name from a file path python code example
Example: python extract thefile name from relative path
import os
infile = "./../../../../_data/matrix_data/5mer_normalized.tsv"
print(os.path.basename(infile))
>>> "5mer_normalized.tsv"