This tool is for paired end fastq files (for example, xxx_R1_001.fastq.gz and xxx_R2_001.fastq.gz).
Please run the 3 steps below to get the indexed bams from a list of fastq files.
Please make sure you have at least 1.5 Gb of free memory.
Recommend using private browser windows to avoid troubles caused by cookies and caches (open from the menu at the topright corner)
No spaces are allowed in input file names!
Provide the suffix of your fastq files:
Requirement: each line should be <1000 bp, othewise please format your fasta here.
After loading the template fasta file and all the fastq files, now we will use subread to create indexed bam files for viewing in the software IGV and call indels and structure variations.
Running Summary [you can also check the debug information with the brower developer tool (Ctrl+Shift+I for Chrome and Firefox)]:
This tool is a WebAssembly implementation of subread. It runs commands like this:
## index the references
subread-buildindex -M 1000 -o my_index <your-references.fa>
## make sorted bam files and vcf files for indels (<=16 bp)
# and structure variaitons (indels > 16 bp and inversions etc)
subread-align -i my_index -r xxxx_R1_001.fastq.gz -R xxxx_R2_001.fastq.gz
-o xxxx.bam -I 16 -sv --sortReadsByCoordinates
Now it can detect any size of deletions but only < 17 bp of insertions.
Visit the GitHub page for more details: https://github.com/pinbo/bwa-samtools-web.