...
If you do not have an alignment file in the SAM format you may want to start with Introduction to mapping. To get import an alignment into IGV we first need to convert the file into BAM format, sort and then also index the file.
Convert to BAM format.
| Code Block |
|---|
samtools sort -bS input.sam output.bam |
...