Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

Quick Start

Generate only sequence alignments for input.fasta:

Code Block
cyrus engine submit blast input.fasta --mode nopssm 

Generate sequence alignments and PSSM for input.fasta:

Code Block
cyrus engine submit blast input.fasta --mode pssm

Generate sequence alignments and patent information for input.fasta:

Code Block
cyrus engine submit blast input.fasta --mode patent

Generate sequence alignments and return up to 1000 hits for input.fasta:

Code Block
cyrus engine submit blast input.fasta --mode nopssm --max-target-sequences 1000

...

FASTA file containing query sequence of interest.

Options

  • --fasta-file

    • Input FASTA file with query sequence

  • --mode

    • nopssm - run BLAST+ (blastp) for sequence alignments using NR database

    • pssm - run BLAST+ (psiblast) for sequence alignments and PSSM generation using NR database

    • patent - run BLAST+ (blastp) for sequence alignments and patent hits using PATAA database

  • --max-target-sequences : sets the maximum number of sequences that can be returned for a query, default = 500

...