Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To process the EST data set, I used the following command to strip off the first column

Panel

gunzip -c X_tropicalis_Nov_2009_all_est.gz | grep -v bin | cut -f2- > X_tropicalis_Nov_2009_all_est.psl

Next, I sorted and created an index using bgizp and  tabix:

Panel

sort -k14,14 -k16,16n X_tropicalis_Nov_2009_all_est.psl > sorted.psl

mv sorted.psl X_tropicalis_Nov_2009_all_est.psl

bgzip X_tropicalis_Nov_2009_all_est.psl

tabix -s 14 -b 16 -0 X_tropicalis_Nov_2009_all_est.psl.gz

I've created a number of data files, and so my next step will be to try opening them in IGB. I also want to test whether IGB will be able to open and display the genome sequence.

...