updated maual page

This commit is contained in:
Heng Li 2014-05-12 12:52:16 -04:00
parent 39a6cd5bb0
commit a35a6c2580
3 changed files with 6 additions and 2 deletions

View File

@ -91,6 +91,10 @@ settings:
bwa aln ref.fa read1.fq > read1.sai; bwa aln ref.fa read2.fq > read2.sai
bwa samse ref.fa reads.sai reads.fq > aln-pe.sam
####Why does a read appear multiple times in the output SAM?
BWA-SW and BWA-MEM perform local alignments.
####How to map sequences to GRCh38 with ALT contigs?
BWA-backtrack and BWA-MEM partially support mapping to a reference containing

2
bwa.1
View File

@ -191,7 +191,7 @@ yields fewer seeds, which leads to faster alignment speed but lower accuracy. [1
.BI -c \ INT
Discard a MEM if it has more than
.I INT
occurence in the genome. This is an insensitive parameter. [10000]
occurence in the genome. This is an insensitive parameter. [500]
.TP
.B -P
In the paired-end mode, perform SW to rescue missing hits only but do not try to find

View File

@ -156,7 +156,7 @@ int main_mem(int argc, char *argv[])
fprintf(stderr, "\n");
fprintf(stderr, " -v INT verbose level: 1=error, 2=warning, 3=message, 4+=debugging [%d]\n", bwa_verbose);
fprintf(stderr, " -T INT minimum score to output [%d]\n", opt->T);
fprintf(stderr, " -h INT if #hits < INT, output all in the XA tag [%d]\n", opt->max_hits);
fprintf(stderr, " -h INT if there are <INT hits with score >80%% of the max score, output all in XA [%d]\n", opt->max_hits);
fprintf(stderr, " -a output all alignments for SE or unpaired PE\n");
fprintf(stderr, " -C append FASTA/FASTQ comment to SAM output\n");
fprintf(stderr, " -Y use soft clipping for supplementary alignments\n");