Entering edit mode
22 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?
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.Normally you do not need to make
sam
files as shown above. You can directly pipe the output intosamtools
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 usingsamtools
.Thank you for all your help.