Skip to content

Commit

Permalink
Re-word samtools
Browse files Browse the repository at this point in the history
  • Loading branch information
Gammerdinger authored Sep 20, 2024
1 parent 10b0ebd commit cdc8896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lessons/04_alignment_file_processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The alignment files that come from `bwa` are raw alignment and need some process
[Picard](https://broadinstitute.github.io/picard/) is a set of command line tools for **processing high-throughput sequencing (HTS) data and formats such as SAM/BAM/CRAM and VCF**. It is maintained by the Broad Institute, and is open-source under the MIT license and free for all uses. Picard is written in Java and does not have functionality for multi-threading.

> ### Why not use `samtools`?
> The processing of the alignment files (SAM/BAM files) can also be done with [`samtools`](https://github.com/samtools/samtools). While there are some advantages to using samtools (i.e. more user-friendly, multi-threading capability), there are slight formatting differences which can cause errors downstream. Since we will be using GATK later in this workshop (also from the Broad Institute), Picard seemed like a more suitable fit.
> The processing of the alignment files (SAM/BAM files) can also be done with [`samtools`](https://github.com/samtools/samtools). While there are some advantages to using samtools (i.e. more user-friendly, multi-threading capability), there are slight formatting differences which we may want to take advantage of downstream. Since we will be using GATK later in this workshop (also from the Broad Institute), Picard seemed like a more suitable fit.
>
> **Near the end of the lesson, there will be a dropdown, if you would like to know how to do the processing steps in `samtools`.**
Expand Down

0 comments on commit cdc8896

Please sign in to comment.