I have huge (approximately 4GB) text file that needed to be sorted. It is so huge that it has 6 thousand coumns and thousands of rows. It is very easy to sort with bash script. However, i am in need of cross platform java program to sort the file. I used this, but i got the same result file as sorted output file.
Part of input file to be sorted
SNP_ID Sub_0001 Sub_0002 Sub_0003 Sub_0004 ...
cnv3p502 0 0 0 0
rs3115860 1 0 1 1
rs3131967 1 0 1 1
rs3115850 1 0 1 1
rs12124819 0 0 0 0
rs2519031 1 0 1 1
.
.
.
I need to sort this tab delimited file with respect to first column in java without using system commands that executes unix commands. I will be appreciating your help.