I'm not sure if the problem is running up against my computation time limit - the job I specify to the scheduler is listed as completed in much less than the time allotted, and I am only running alignment on one individual to my reference at a time.
I'm currently submitting jobs with different thread values, and in my output I receive a message indicating the number of reads processed in the initial iteration of bwa-mem, but there aren't any additional iterations of this output before I receive a list of all of the nodes in my reference assembly, and then what appears to be the sam formatted bwa mem alignment output.
One thing I am curious about is how the output for bwa mem is presented and stored. Is there normally separate output in the terminal for bwa mem's run details (# of reads processed, iteration, etc), and only the sam formatted alignment data is written into the .sam file, or is all of this information included in the .sam file specified using ">"?
In the scheduling system I'm working on, all of this information is written into a user-specified output file using "-o", and when I use the ">" command, bwa mem writes an additional blank file. All of the bwa mem run details and the sam format data appear to be written into the output file.
I'm wondering if additional reads are being processed after the first sam formatted alignment output, but I can't see it because it's buried ~400,000 lines in my output file.
Hopefully this isn't the case, but I'm wondering if there is any easy way to check?
I'm currently submitting jobs with different thread values, and in my output I receive a message indicating the number of reads processed in the initial iteration of bwa-mem, but there aren't any additional iterations of this output before I receive a list of all of the nodes in my reference assembly, and then what appears to be the sam formatted bwa mem alignment output.
One thing I am curious about is how the output for bwa mem is presented and stored. Is there normally separate output in the terminal for bwa mem's run details (# of reads processed, iteration, etc), and only the sam formatted alignment data is written into the .sam file, or is all of this information included in the .sam file specified using ">"?
In the scheduling system I'm working on, all of this information is written into a user-specified output file using "-o", and when I use the ">" command, bwa mem writes an additional blank file. All of the bwa mem run details and the sam format data appear to be written into the output file.
I'm wondering if additional reads are being processed after the first sam formatted alignment output, but I can't see it because it's buried ~400,000 lines in my output file.
Hopefully this isn't the case, but I'm wondering if there is any easy way to check?
Comment