Skip to content

Commit

Permalink
minor bwa fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Sakin committed May 26, 2021
1 parent 070eebe commit c3604cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/fastq_to_bam.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Now that you have a genome file, index file and a reference fasta file you are a
:widths: 25 75
:class: tight-table

Bwa mem will output a sam file that you can either pipe or save to a path using -o option, as in the example below:
Bwa mem will output a sam file that you can either pipe or save to a path using -o option, as in the example below (please note that version 0.7.17 or higher should be used, older versions do not support the `-5` flag)

**Command:**

Expand All @@ -71,7 +71,7 @@ Bwa mem will output a sam file that you can either pipe or save to a path using

.. code-block:: console
bwa mem -5SP -T0 -t16 hg38.fasta <(cat file1.R1.fastq.gz file2.R1.fastq.gz file3.R1.fastq.gz) <(file1.R2.fastq.gz file2.R2.fastq.gz file3.R2.fastq.gz) -o aligned.sam
bwa mem -5SP -T0 -t16 hg38.fasta <(zcat file1.R1.fastq.gz file2.R1.fastq.gz file3.R1.fastq.gz) <(zcat file1.R2.fastq.gz file2.R2.fastq.gz file3.R2.fastq.gz) -o aligned.sam
Expand Down

0 comments on commit c3604cc

Please sign in to comment.