I have objects like this:
values=[['MLH'], ['MLH', 'PC1_cov']]
That I'd like to turn into objects like this:
values=['MLH','MLH','PC1_cov']
I want to be able to accommodate lists of lists of lists, etc., etc., so I'm looking for a recursive function. Any suggestions?