quickly combining many gpr files into one table 01-10-2014d2210

2014-08-29

quickly combining many gpr files into one table 01-10-2014d2210
combine data from many gpr files into one table
output folder of gpr files into one table
output folder of gprs into one table
output folder of gprs to tab delimited text file
output folder of gprs to tdt



process for quickly combining all gpr files into one table

paste out2_1.txt out2_2.txt | column -s $'\t' -t>final_output.txt
paste final_output.txt out2_3.txt | column -s $'\t' -t>final_output2.txt
paste final_output2.txt out2_4.txt | column -s $'\t' -t>final_output3.txt

^actually all of the files can be combined in one single paste command like
paste out2_1.txt out2_2.txt out2_3.txt | column -s $'\t' -t>final_output.txt


I've also made some Java code to automatically generate the necessary Linux code to combine all of the gpr files.