Changes between Version 68 and Version 69 of SOPs/mapping


Ignore:
Timestamp:
08/25/20 15:27:52 (5 years ago)
Author:
gbell
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SOPs/mapping

    v68 v69  
    1919The [[http://bio-bwa.sourceforge.net/ | Burrows-Wheeler Alignment (BWA) tool]] is a software package containing several related algorithms using the Burrows-Wheeler Transform.  It works well even with indels, but not with spliced (RNA) reads.
    2020
    21 ''Sample commands for short (up to 100 bp) reads:''
     21''Sample commands for short (up to 100 nt) reads:''
    2222{{{
    2323# Align single-end reads
     
    3232Use "-n" option to change the maximum number of mismatches in the alignment.
    3333
    34 ''Sample commands for long (70bp or longer) reads:''
     34''Sample commands for long (70 nt or longer) reads:''
    3535{{{
    3636# Align single-end reads
     
    3838# Align paired-end reads
    3939bsub "bwa mem /nfs/genomes/sgd_2010/bwa/sacCer3.fa Reads.1.fq Reads.2.fq > Mapped_reads.bwa.sam"
     40}}}
     41
     42And then convert the SAM to BAM, sort, and index.  This BaRC script can to all three with one command.  (Then the original SAM can be deleted.)
     43
     44{{{
     45/nfs/BaRC_Public/BaRC_code/Perl/SAM_to_BAM_sort_index/SAM_to_BAM_sort_index.pl input.sam
    4046}}}
    4147