Matlab habits die hard. The following line is the source of the problem I
think.
eval(parse("columns = (" * columnsStr[1:end-2] * ")")) # Convert to a
string array
The files I'm working with have headers which I'm trying to load and parse.
The parenthesis created a tuple (I think) where I was trying to create an
ASCIIString array. For some reason it works as a script and returns an
Array{Any,1} but it ends up being Array{None,1} in a function. I'll switch
over to another method and see if that works out.