in reply to Extract and read different columns from the file

You can try
 cut -d"\t" -f1,4,7 file_name > subset_columns
for e.g. if you need first, fourth and seventh columns in a tab delimited file in a Linux | Cygwin command line.