grep -v "*" dcout > temp 
cut -c,1-10 temp > data.atg 
cut -c,11-20 temp > data.sd 
cut -c,67-77 temp > data.values 
 
paste data.atg data.values > temp 
mv temp data.atg 
 
paste data.sd data.values > temp 
mv temp data.sd 
 
grep -v "-" data.atg > temp 
mv temp data.atg 
 
grep -v "-" data.sd > temp 
mv temp data.sd 
 
