Process string in Pandas Dataframe rows to comma-delimitered chars
Advertisements I have a dataframe, with data in each row as such. MKEYGEDLK How can I process the sequence strings in each row, such that the format will be as such? [M, K, E, Y, G, E, D, L, K] I tried get_seq_str = ‘,’.join(test_df.loc[0][‘seq_1’]) arr.append(get_seq_str) However, when I append it to the dataframe, there… Read More Process string in Pandas Dataframe rows to comma-delimitered chars