Closed avilella closed 7 years ago
The binary file myProject.SeQC is an SQLite database. At the moment the GUI for SeQC is under re-re-development, but the statistics you want are very easy to get manually.
Run the following in a terminal:
sqlite3 ./myProject.SeQC
.mode columns
.headers on
.schema
make sure to type the dots at the beginning! The final command will print something near the bottom like:
CREATE TABLE "633a3b0d8ab37f7cac048fa31d8ca554_TYPE"(TYPE INT, counts INTEGER);
except the middle bit, the unique checksum of the file you ran the test on, will be different. So copy this next commmand, but change the 32 characters before the "_TYPE" to whatever you have:
SELECT * FROM "633a3b0d8ab37f7cac048fa31d8ca554_TYPE";
TYPE counts
---------- ----------
3 16739116
4 15311736
Thus for my sample data, i have 16739116 alignments of type 3, and 15311736 of type 4.
All the best, John
From biostars:
I ran the following:
And got a cigar.out, inline.f and myProject.SeQC binary file.
How do I transform these into a table of counts for each of the types in http://i.imgur.com/DCMrtwe.jpg?
Thx