Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For this command you provide the same reference index prefix as for bwa aln, along with the two .sai files and the two original FASTQ files. Again Also, bwa writes its output to standard output, so redirect that to a .sam file. (Note that bwa sampe is "single threaded" – it does not have an option to use more than one processor for its work.) We'll just execute this at the command line – not in a batch job

Here is the command line statement you need. Just execute it on the command line.

Code Block
languagebash
titleBWA global alignment of R1 reads
bwa sampe sacCer3/sacCer3.fa yeast_R1.sai yeast_R2.sai fastq/Sample_Yeast_L005_R1.cat.fastq.gz fastq/Sample_Yeast_L005_R2.cat.fastq.gz > yeast_pairedend.sam

...