in reply to Re^2: read the whole folder files
in thread read the whole folder files

Hello, Thank you for your time..I added the block after split but it keeps warning me.. I checked the output of the tab-delim file aswell..Doesn't seem to be a problem there.. it just outputs something like the following
split missed, myresultfile.txt: 61283067 61283865 798 0.57412

Replies are listed 'Best First'.
Re^4: read the whole folder files
by kennethk (Abbot) on Apr 10, 2012 at 20:40 UTC
    The block was not intended to fix the warning; it was intended to point out how to find your issue. You have a line that contains "61283067  61283865  798  0.57412" that your split fails on. There are clearly only 4 entries on that line, not the 8 required to populate the variable in question. You need to modify your split (or perhaps swap to a regular expression) to reflect the actual input.

    #11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.