I'm trying to use bwa for the first time, and for some reason, even though it runs it's not actually producing any alignments.
This is what I'm doing:
The input files are paired 76 nucleotide reads. The output consists of all the reads, unmapped:
Does anyone have any idea of what I'm missing here?
Thanks
** EDIT **
I forgot to mention that I'm running bwa-0.6.1 on Mac OS 10.6.8
This is what I'm doing:
Code:
bwa index -p hg19 -a bwtsw hg19.fasta INPUT1=reads.1.fastq INPUT2=reads.2.fastq OUTPUT1=bwa_out.1.sai OUTPUT2=bwa_out.2.sai OUTPUT3=bwa_out.sam bwa aln hg19 $INPUT1 > $OUTPUT1 bwa aln hg19 $INPUT2 > $OUTPUT2 bwa sampe hg19 $OUTPUT1 $OUTPUT2 $INPUT1 $INPUT2 > $OUTPUT3 ln -s bwa.sam A.sam
Code:
READ_A 77 * 0 0 * * 0 0 <sequence not shown> <quality not shown> READ_A 141 * 0 0 * * 0 0 <sequence not shown> <quality not shown> ...
Thanks
** EDIT **
I forgot to mention that I'm running bwa-0.6.1 on Mac OS 10.6.8
Comment