CSV file reading Arrays as String in CSVFiles.jl and CSV.jl

I think I found the solution.
Used the following code:

map(x->parse.(Int64,x),[split(chop(elements, head=1), ",") for elements in q_meta[:SubjectId] ])

where SubjectId is the column name and q_meta is the csv file loaded as a data frame.