// Initialize BlastQueue to empty jobs /// <summary> /// Instatiates a BlastJob for each position in the BlastQueue /// </summary> public BlastQueue() { blastQueue = new BlastJob[Length]; for (int i = 0; i < Length; i++) { blastQueue[i] = new BlastJob(); } }