BWA- SAM tools alignment default parameters
1
0
Entering edit mode
15 months ago
bestone ▴ 30

hello, I will do whole genome sequencing in apricot. I should do an alignment with my data. I think that I need default parameters to do an alignment. How can I find the default parameters? Can you help with this issue?

SAMtools BWA • 831 views
ADD COMMENT
2
Entering edit mode

If you do not change a parameter value then the program uses the defaults built in automatically. So simply run bwa with the minimum information needed. This should be fine in most instances.

bwa index ref.fa
bwa mem ref.fa reads.fq > aln-se.sam
bwa mem ref.fa read1.fq read2.fq > aln-pe.sam

Normally you do not need to make sam files as shown above. You can directly pipe the output into samtools to create the final sorted BAM file. With that said, if you are starting to learn then you could go step by step. Create SAM files and then convert to BAM using samtools.

ADD REPLY
0
Entering edit mode

Thank you for all your help.

ADD REPLY
2
Entering edit mode
15 months ago
ATpoint 82k

Default parametery are those that are set when running a tool without modifications. Please read the manuals, both bwa and samtools are well-documented.

ADD COMMENT

Login before adding your answer.

Traffic: 1924 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6