.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3. .TH SSW-ALIGN "1" "July 2023" "ssw-align " "User Commands" .SH NAME ssw-align \- fast Smith-Waterman aligner .SH SYNOPSIS .B ssw-align [\fI\,options\/\fR] ... \fI\, (or )\/\fR .SH DESCRIPTION This command line tool uses SSW, a fast SIMD optimized alignment library, to perform alignments on input files. The input files can be in FASTA or FASTQ format. Both target and query files can contain multiple sequences. Each sequence in the query file will be aligned with all sequences in the target file. If the target file has N sequences and the query file has M sequences, the results will have M*N alignments. .SH OPTIONS .TP \fB\-m\fR N N is a positive integer for weight match in genome sequence alignment. [default: 2] .TP \fB\-x\fR N N is a positive integer. \fB\-N\fR will be used as weight mismatch in genome sequence alignment. [default: 2] .TP \fB\-o\fR N N is a positive integer. \fB\-N\fR will be used as the weight for the gap opening. [default: 3] .TP \fB\-e\fR N N is a positive integer. \fB\-N\fR will be used as the weight for the gap extension. [default: 1] .TP \fB\-p\fR Do protein sequence alignment. Without this option, the ssw_test will do genome sequence alignment. .HP \fB\-a\fR FILE FILE is either the Blosum or Pam weight matrix. [default: Blosum50] .TP \fB\-c\fR Return the alignment path. .TP \fB\-f\fR N N is a positive integer. Only output the alignments with the Smith\-Waterman score >= N. .TP \fB\-r\fR The best alignment will be picked between the original read alignment and the reverse complement read alignment. .TP \fB\-s\fR Output in SAM format. [default: no header] .TP \fB\-h\fR If \fB\-s\fR is used, include header in SAM output. .SH "OUTPUT FORMATS" The software can output SAM format or BLAST like format results. For a specification of the SAM format, please see http://samtools.sourceforge.net/SAM1.pdf. The additional optional field "ZS" indicates the suboptimal alignment score.