User Tools

Site Tools


lecture_notes:04-07-2011

This is an old revision of the document!


A PCRE internal error occured. This might be caused by a faulty plugin

====== Jellyfish ====== We talked about the [[bioinformatic_tools:jellyfish|Jellyfish]] tool. Details of the space-efficient algorithm were explained, and we looked at how to schedule a run on the Campusrocks cluster. ===== Scheduling a run on Campusrocks ===== qsub -hard -l num_proc=# jellyfish_script ===== Hash Algorithm ===== The initial kmers (4^k possible) are first changed to keys with an invertible binary matrix. The keys are then reduced by a modulus M=2^l, so that they range from [0, M-1], condensing the hash table. The remainder 2k-l keys are stored in front of the values. Because the keys are condensed, collisions are to be expected for dissimilar keys, so the algorithm uses a reprobe function: i(i+1)/2, where i is the number of reprobes; to resolve them. The first key that hashes to a position will store a reprobe value of 1 and following dissimilar keys will go to the next reprobe position and store i+1. There is a maximum limit to the number of reprobes, after which the algorithm will write the hash to disk(?) instead of reprobing. The other issue is that the value field for the counts has a limited size. When it has filled, it will reprobe and store the higher order bits in the extension. ===== Multithreading Tricks =====

You could leave a comment if you were logged in.
lecture_notes/04-07-2011.1302251813.txt.gz · Last modified: 2011/04/08 08:36 by eyliaw