Difference between revisions of "BWA"

From XenopusBioinfo
Jump to: navigation, search
(Created page with " == See also == * Project website - http://bio-bwa.sourceforge.net/ ---- Category:HowTo")
 
 
Line 1: Line 1:
 +
== Building a database ==
 +
$ /path/to/bwa index <my fasta file>
 +
 +
== Mapping ==
 +
$ /path/to/bwa mem <db name> <fastq file> > <sam file>
  
 
== See also ==
 
== See also ==
 
* Project website - http://bio-bwa.sourceforge.net/
 
* Project website - http://bio-bwa.sourceforge.net/
 
+
* Manual - http://bio-bwa.sourceforge.net/bwa.shtml
 +
* References
 +
** bwa-backtrack http://bioinformatics.oxfordjournals.org/content/25/14/1754
 +
** bwa-sw http://bioinformatics.oxfordjournals.org/content/26/5/589
 +
** fastmap (SNP calling) http://bioinformatics.oxfordjournals.org/content/28/14/1838
 
----
 
----
 
[[Category:HowTo]]
 
[[Category:HowTo]]

Latest revision as of 16:17, 22 October 2014

Building a database

$ /path/to/bwa index <my fasta file>

Mapping

$ /path/to/bwa mem <db name> <fastq file> > <sam file>

See also