When trying to open the file it gives me ParserError: Error tokenizing data. C error: Expected 1 fields in line 8, saw 22152
What I tried:
mat = pd.read_csv('/Users/csb/Desktop/Zebrafish_scRNA/sample_Control_WTA_1_RSEC_MolsPerCell.csv', sep = '\t')
Output:
Instead of data points in each separate columns it got all combined
Output I want is:
The first 7 rows of Output dataframe dropped. Want to automate this since there will be several files which comes in that Output format. How can I resolve this issue and automate it to get the output that I want to achieve?

