SMA Finder

1.4.4 · active · verified Fri Apr 17

SMA Finder is a Python-based command-line tool designed for diagnosing spinal muscular atrophy (SMA) using exome or genome sequencing data. It automates the analysis of sequencing files to identify genetic markers associated with SMA. The current version is 1.4.4, with releases occurring as significant new features or improvements are added, rather than on a strict cadence.

Common errors

Warnings

Install

Imports

Quickstart

Run SMA Finder from the command line, providing input BAM/CRAM files, a reference genome FASTA, and an output directory. The `--reference_name` flag helps label outputs and, for v1.2+, informs the tool if it needs to try multiple reference fastas.

sma_finder --input_bam_files /path/to/your_sample.bam \
             --reference_fasta /path/to/your_reference.fa \
             --output_dir ./results \
             --reference_name hg38

view raw JSON →